.wy-termine-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.wy-termin-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.4rem 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--wy-radius-sm);
    background: rgba(255,255,255,0.06);
}
.wy-termin-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0.5rem 0.9rem;
    border-radius: 3px;
    background: var(--wy-color-teal);
    text-align: center;
}
.wy-termin-weekday {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--wy-color-white);
    line-height: 1;
}
.wy-termin-day {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--wy-color-white);
}
.wy-termin-month {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--wy-color-white);
}
.wy-termin-info { flex: 1; }
.wy-termin-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--wy-color-white);
    margin: 0 0 0.2rem;
}
.wy-termin-details {
    font-size: 0.9rem;
    color: var(--wy-color-sage-light);
    margin: 0;
}
.wy-termin-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
}
.wy-termine-empty {
    color: rgba(255,255,255,0.50);
    text-align: center;
    padding: 2rem 0;
}
.wy-termine-stock--low { color: var(--wy-color-warning); font-weight: 600; }
.wy-termin-price { color: rgba(255,255,255,0.75); }

/* Neu-Badge */
.wy-termin-date {
    position: relative;
}
.wy-badge-new {
    position: absolute;
    top: -20px;
    left: -30px;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--wy-color-white);
    /*border: 2px solid var(--wy-color-white);*/
    /*border-radius: 999px;*/
    padding: 0.05em 0.5em;
    transform: rotate(-15deg);
    line-height: 1;
    pointer-events: none;
}

/* Ausgebuchte Termine */
.wy-termin-row--out .wy-termin-date { background: var(--wy-color-error); }
.wy-termine-stock--out {
    color: #ff7a6a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .wy-termin-action {
        width: 100%;
    }
    .wy-termin-action .wy-btn {
        display: block;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    .wy-termin-action .wy-btn--primary {
        background-color: transparent !important;
        color: var(--wy-color-teal-light) !important;
        border: 3px solid var(--wy-color-teal-light) !important;
        font-weight: 700 !important;
        font-size: 1.2rem !important;
    }
    .wy-termin-action .wy-btn--primary:hover {
        background-color: var(--wy-color-teal-light) !important;
        color: var(--wy-color-white) !important;
    }
}
