.termine-seite {
    padding: 120px 0 40px 0;
}

.termine-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.termine-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.termine-header-text h1 {
    margin: 0 0 8px 0;
    font-size: 34px;
    line-height: 1.2;
    color: #1f2937;
}

.termine-header-text p {
    margin: 0;
    color: #6b7280;
    font-size: 16px;
}

.jahreswahl {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.jahreswahl a {
    display: inline-block;
    padding: 10px 14px;
    background: #f3f4f6;
    color: #1f2937;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.jahreswahl a:hover {
    background: #b30000;
    color: #fff;
}

.termin-monat {
    margin-bottom: 35px;
}

.termin-monat h2 {
    margin: 0 0 16px 0;
    padding-left: 12px;
    border-left: 5px solid #b30000;
    font-size: 24px;
    color: #1f2937;
}

.termin-liste {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.termin-zeile {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.termin-zeile-datum {
    width: 72px;
    min-width: 72px;
    height: 72px;
    border-radius: 12px;
    background: #b30000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    flex-shrink: 0;
}

.termin-zeile-datum .tag {
    font-size: 28px;
    line-height: 1;
}

.termin-zeile-datum .monat {
    font-size: 14px;
    margin-top: 4px;
    line-height: 1;
}

.termin-zeile-inhalt {
    flex: 1;
    min-width: 0;
}

.termin-zeile-kopf {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.termin-zeile-kopf h3 {
    margin: 0;
    font-size: 21px;
    color: #111827;
}

.termin-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.termin-status {
    background: #198754;
    color: #fff;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.termin-status.vergangen {
    background: #6b7280;
}

.termin-details {
    margin-top: 10px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #4b5563;
    font-size: 15px;
}

.termin-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.termin-beschreibung {
    margin-top: 12px;
    color: #374151;
    line-height: 1.5;
}

.termin-vergangen {
    opacity: 0.7;
}

.keine-termine {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    color: #6b7280;
}

@media (max-width: 768px) {
    .termine-seite {
        padding: 100px 0 30px 0;
    }

    .termine-header-text h1 {
        font-size: 28px;
    }

    .termin-zeile {
        flex-direction: column;
    }

    .termin-zeile-datum {
        width: 70px;
        height: 70px;
    }

    .termin-details {
        flex-direction: column;
        gap: 8px;
    }
}