/* style_termine.css */
.termine-section .events-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.termine-section .event-item {
    display: grid;
    grid-template-columns: 150px 1fr 160px;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.event-when .event-date { font-weight: 700; color: #003763; }
.event-when .event-time { color: #476a85; font-size: .95rem; }
.event-title { font-weight: 600; color: #002b4d; margin-bottom: 4px; }
.event-location { font-size: .95rem; color: #476a85; }

.past-events-header {
    font-family: "Henriette";
    font-weight: bold;
}

.past-events summary { cursor: pointer; user-select: none; display: flex; align-items: center; gap: 8px; }
.past-events summary::-webkit-details-marker { display: none; }

.btn {
    min-width:unset !important;
}

@media (max-width: 900px) {
    .termine-section .event-item {
        grid-template-columns: 1fr;
    }
    .termine-section .event-cta{
        text-align: center;
    }
    .termine-section .event-cta .btn{
        display: inline-block;
    }
}
