/* SCH Kantine Card (Unterseite) */
.sch-kant-card,
.sch-ticket-w,
.sch-patron-w,
.sch-visit-section,
.sch-kant-w,
.sch-kant-pg__hero,
.sch-kant-pg__body {
    font-family: "General Sans", system-ui, sans-serif;
}

.sch-kant-card {
    background: #00006b;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    max-width: 560px;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.sch-kant-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.sch-kant-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sch-kant-card__body {
    padding: 26px 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sch-kant-card__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Anton", system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 1.05;
}

.sch-kant-week {
    width: 100%;
    border-collapse: collapse;
    font-size: .92rem;
}

.sch-kant-week thead th {
    text-align: left;
    font-weight: 700;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff;
    opacity: .85;
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(255,255,255,.24);
}

.sch-kant-week thead th:last-child {
    text-align: right;
}

.sch-kant-week tbody tr {
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.sch-kant-week tbody tr:last-child {
    border-bottom: none;
}

.sch-kant-week tbody tr.is-closed {
    opacity: .4;
}

.sch-kant-week__day {
    padding: 10px 0;
    font-weight: 600;
}

.sch-kant-week__time {
    padding: 10px 0;
    text-align: right;
}

.sch-kant-week__hours {
    font-weight: 600;
    color: #fff;
}

.sch-kant-week__closed {
    font-size: .8rem;
    font-style: italic;
    opacity: .7;
}

.sch-kant-card__hinweis {
    font-size: .82rem;
    opacity: .65;
    font-style: italic;
    padding-top: 8px;
    border-top: 1px dashed rgba(255,255,255,.1);
}

@media (min-width: 783px) {
    .sch-kant-card--has-img {
        width: 100vw;
        max-width: 100vw;
        min-height: clamp(280px,28vw,430px);
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-right: 0;
        margin-left: 0;
        flex-direction: row-reverse;
        border-radius: 12px;
    }

    .sch-kant-card--has-img .sch-kant-card__img {
        width: 54%;
        aspect-ratio: auto;
        min-height: clamp(280px,28vw,430px);
        flex: 1 1 54%;
    }

    .sch-kant-card--has-img .sch-kant-card__body {
        width: 46%;
        flex: 0 0 46%;
        justify-content: flex-start;
        padding: clamp(28px,3vw,54px) clamp(30px,4vw,72px);
    }

    .sch-kant-card--has-img .sch-kant-card__title {
        font-size: clamp(1.45rem,2.2vw,2rem);
        gap: 14px;
        margin-bottom: clamp(4px,1vw,12px);
    }

    .sch-kant-card--has-img .sch-kant-week {
        font-size: clamp(1.05rem,1.18vw,1.22rem);
    }

    .sch-kant-card--has-img .sch-kant-week thead th {
        font-size: clamp(.82rem,.9vw,.95rem);
    }

    .sch-kant-card--has-img .sch-kant-week__day,
    .sch-kant-card--has-img .sch-kant-week__time {
        padding: 12px 0;
    }

    .sch-kant-card--has-img .sch-kant-card__hinweis {
        color: #fff;
        opacity: 1;
        font-size: clamp(.98rem,1.1vw,1.12rem);
        line-height: 1.45;
        font-style: normal;
        margin-top: 4px;
    }
}

.sch-kant-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: .85rem;
}

.sch-kant-compact__title {
    font-weight: 700;
    color: #fff;
}

.sch-kant-compact__item {
    background: rgba(13,26,46,.08);
    padding: 3px 10px;
    border-radius: 20px;
}

/* SCH Eintritt Widget (Homepage) */
.sch-ticket-w {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 0 30px !important;
    overflow: hidden !important;
    background: #00006b;
    border-radius: 16px;
    color: #fff;
    display: flex;
    flex-direction: row-reverse;
    min-height: 140px;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.sch-ticket-w--has-img {
    min-height: clamp(280px,28vw,430px);
}

.sch-ticket-w > p:empty {
    display: none !important;
    margin: 0 !important;
}

.sch-ticket-w__img {
    width: 54%;
    min-height: clamp(280px,28vw,430px);
    flex: 1 1 54%;
    object-fit: cover;
    display: block;
}

.sch-ticket-w__panel {
    width: 46%;
    flex: 0 0 46%;
    background: #00006b;
    padding: clamp(28px,3vw,54px) clamp(30px,4vw,72px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: flex-start;
    box-sizing: border-box;
}

.sch-ticket-w--no-img .sch-ticket-w__panel {
    width: 100%;
    flex-basis: 100%;
    min-height: 140px;
    padding: 22px 6vw;
    justify-content: center;
}

.sch-ticket-w__eyebrow {
    font-size: clamp(.82rem,.9vw,.95rem);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}

.sch-ticket-w__title {
    font-family: "Anton", system-ui, sans-serif;
    font-size: clamp(1.45rem,2.2vw,2rem);
    line-height: 1.05;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0;
}

.sch-ticket-w__prices {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    font-size: clamp(1.05rem,1.18vw,1.22rem);
}

.sch-ticket-w__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.sch-ticket-w__row:last-child {
    border-bottom: none;
}

.sch-ticket-w__label {
    font-weight: 600;
    min-width: 0;
}

.sch-ticket-w__price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}

.sch-ticket-w__empty {
    color: rgba(255,255,255,.62);
    font-size: .95rem;
}

.sch-ticket-w__hinweis {
    color: #fff;
    opacity: 1;
    font-size: clamp(.98rem,1.1vw,1.12rem);
    line-height: 1.45;
    padding-top: 8px;
    border-top: 1px dashed rgba(255,255,255,.14);
}

.sch-ticket-w + .sch-patron-w,
.sch-ticket-w + .sch-kant-card,
.sch-ticket-w + .sch-kant-w {
    margin-top: 0 !important;
}

/* SCH Patronanz & Ballspende Widget */
.sch-patron-w {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 0 30px !important;
    overflow: hidden;
    background: linear-gradient(135deg, #00006b 0%, #000050 100%);
    border-radius: 16px;
    color: #fff;
    box-sizing: border-box;
}

.sch-patron-w::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(255,255,255,.06) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 48%);
    pointer-events: none;
}

.sch-patron-w__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    width: 100%;
    min-height: 104px;
    padding: 22px 6vw;
    box-sizing: border-box;
}

.sch-patron-w__copy {
    min-width: 0;
}

.sch-patron-w__title {
    font-family: "Anton", system-ui, sans-serif;
    font-size: 26px;
    line-height: 1.05;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0 0 6px;
}

.sch-patron-w__text {
    max-width: 640px;
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 15px;
    line-height: 1.45;
}

.sch-patron-w__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 8px;
    background: #fff;
    color: #00006b;
    box-shadow: 0 4px 14px rgba(0,0,0,.12);
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .18s, transform .18s;
}

.sch-patron-w__btn:hover,
.sch-patron-w__btn:focus-visible {
    color: #00006b;
    opacity: .88;
    text-decoration: none;
    transform: translateY(-1px);
}

.sch-patron-w + .sch-kant-card,
.sch-patron-w + .sch-kant-w {
    margin-top: 0 !important;
}

#kontakt + .sch-patron-w {
    margin-top: clamp(24px,3vw,42px) !important;
}

/* SCH Eintritt + Kantine Section (Homepage) */
.sch-visit-section {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 0 30px !important;
    overflow: hidden !important;
    background: #00006b;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    box-sizing: border-box;
    scroll-margin-top: clamp(96px,8vw,132px);
}

.sch-visit-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: clamp(520px,48vw,720px);
}

.sch-visit-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.sch-visit-card + .sch-visit-card {
    border-left: 1px solid rgba(255,255,255,.14);
}

.sch-visit-card__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(30px,3vw,54px) clamp(28px,4vw,64px);
    box-sizing: border-box;
}

.sch-visit-card__eyebrow {
    font-size: clamp(.8rem,.9vw,.95rem);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}

.sch-visit-card__title {
    font-family: "Anton", system-ui, sans-serif;
    font-size: clamp(1.6rem,2.4vw,2.25rem);
    line-height: 1.05;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0;
}

.sch-visit-card__prices,
.sch-visit-card__zeiten {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    font-size: clamp(1rem,1.12vw,1.18rem);
}

.sch-visit-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.sch-visit-card__row:last-child {
    border-bottom: none;
}

.sch-visit-card__label {
    min-width: 0;
    font-weight: 600;
}

.sch-visit-card__value {
    color: #fff;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

.sch-visit-card__empty {
    color: rgba(255,255,255,.62);
    font-size: .95rem;
}

.sch-visit-card__hinweis {
    color: #fff;
    opacity: 1;
    font-size: clamp(.95rem,1.05vw,1.08rem);
    line-height: 1.45;
    padding-top: 8px;
    border-top: 1px dashed rgba(255,255,255,.14);
}

.sch-visit-card__maps {
    color: rgba(255,255,255,.72);
    font-size: .95rem;
    line-height: 1.35;
    text-decoration: none;
    transition: color .15s;
}

.sch-visit-card__maps:hover,
.sch-visit-card__maps:focus-visible {
    color: #fff;
    text-decoration: none;
}

.sch-visit-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 44px;
    margin-top: 2px;
    padding: 11px 18px;
    border-radius: 8px;
    background: #fff;
    color: #00006b;
    box-shadow: 0 4px 14px rgba(0,0,0,.12);
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity .18s, transform .18s;
}

.sch-visit-card__btn:hover,
.sch-visit-card__btn:focus-visible {
    color: #00006b;
    opacity: .88;
    text-decoration: none;
    transform: translateY(-1px);
}

.sch-visit-card__img {
    width: 100%;
    height: clamp(220px,22vw,360px);
    object-fit: cover;
    display: block;
    background: #000035;
}

.sch-visit-card--no-img .sch-visit-card__body {
    justify-content: center;
}

.sch-visit-card > p {
    margin: 0 !important;
    line-height: 0;
}

.sch-visit-card > p:empty {
    display: none !important;
}

.sch-visit-section__grid > p:empty {
    display: none !important;
    margin: 0 !important;
}

.sch-visit-section + .sch-patron-w {
    margin-top: 0 !important;
}

/* SCH Kantine Widget (Homepage) */
.sch-kant-w {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden !important;
    background: #00006b;
    display: block !important;
    border-radius: 16px;
    min-height: 120px;
    box-sizing: border-box;
}

.sch-kant-w__img {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 50% !important;
    width: 50% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    z-index: 0 !important;
}

.sch-kant-w__img--placeholder {
    background: linear-gradient(135deg, #000035 0%, #00006b 60%, #0a0a8a 100%);
    left: 100% !important;
}

.sch-kant-w__panel {
    position: relative !important;
    z-index: 2 !important;
    width: 50% !important;
    background: #00006b;
    padding: 14px 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    min-height: 120px;
    box-sizing: border-box;
}

.sch-kant-w__eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}

.sch-kant-w__heading {
    font-family: "Anton",system-ui,sans-serif;
    font-size: clamp(18px,1.6vw,24px);
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .02em;
    line-height: 1.1;
}

.sch-kant-w__zeiten {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sch-kant-w__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,.85);
    padding: 3px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.sch-kant-w__row:last-child {
    border-bottom: none;
}

.sch-kant-w__day {
    font-weight: 600;
    white-space: nowrap;
}

.sch-kant-w__time {
    font-size: 11px;
    color: rgba(255,255,255,.75);
}

.sch-kant-w__empty {
    color: rgba(255,255,255,.45);
    font-size: 13px;
}

.sch-kant-w__hinweis {
    font-size: 12px;
    color: rgba(255,255,255,.85);
    line-height: 1.4;
    padding: 4px 0;
    border-top: 1px solid rgba(255,255,255,.1);
}

.sch-kant-w__maps {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .15s;
}

.sch-kant-w__maps:hover {
    color: #fff;
    text-decoration: none;
}

.sch-kant-w__btn {
    display: inline-block;
    margin-top: 3px;
    background: #fff;
    color: #00006b;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 8px;
    text-decoration: none;
    width: fit-content;
    transition: opacity .18s;
}

.sch-kant-w__btn:hover {
    opacity: .85;
    text-decoration: none;
    color: #00006b;
}

@media (max-width: 900px) and (min-width: 681px) {
    .sch-kant-w__panel {
        width: 55% !important;
        padding: 14px 28px !important;
    }

    .sch-kant-w__img {
        left: 55% !important;
        width: 45% !important;
    }
}

@media (max-width: 680px) {
    .sch-visit-section {
        border-radius: 0 !important;
        margin-bottom: 20px !important;
    }

    .sch-visit-section__grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .sch-visit-card + .sch-visit-card {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.14);
    }

    .sch-visit-card--kantine {
        margin-top: clamp(22px, 7vw, 34px);
    }

    .sch-visit-card__body {
        min-height: 0;
        padding: 20px !important;
        gap: 10px;
    }

    .sch-visit-card__title {
        font-size: 20px !important;
    }

    .sch-visit-card__prices,
    .sch-visit-card__zeiten {
        font-size: 14px;
    }

    .sch-visit-card__row {
        gap: 12px;
        padding: 8px 0;
    }

    .sch-visit-card__maps {
        font-size: 13px;
    }

    .sch-visit-card__btn {
        width: 100%;
        min-height: 46px;
    }

    .sch-visit-card__img {
        height: 120px;
    }

    .sch-ticket-w {
        flex-direction: column;
        min-height: auto !important;
        border-radius: 0 !important;
        margin-bottom: 20px !important;
    }

    .sch-ticket-w__img {
        width: 100% !important;
        min-height: 0 !important;
        height: 88px !important;
        flex: none !important;
    }

    .sch-ticket-w__panel,
    .sch-ticket-w--no-img .sch-ticket-w__panel {
        width: 100% !important;
        flex: none !important;
        min-height: 0;
        padding: 12px 20px 13px !important;
        gap: 8px;
    }

    .sch-ticket-w__title {
        font-size: 18px !important;
    }

    .sch-ticket-w__prices {
        font-size: 14px;
    }

    .sch-ticket-w__row {
        padding: 8px 0;
    }

    .sch-patron-w {
        border-radius: 0 !important;
        margin-bottom: 20px !important;
    }

    .sch-patron-w__inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 14px;
        min-height: 0;
        padding: 20px;
    }

    .sch-patron-w__title {
        font-size: 21px;
    }

    .sch-patron-w__text {
        font-size: 14px;
    }

    .sch-patron-w__btn {
        width: 100%;
        min-height: 46px;
    }

    .sch-kant-w {
        min-height: auto !important;
        border-radius: 0 !important;
    }

    .sch-kant-w__img {
        position: relative !important;
        inset: auto !important;
        left: auto !important;
        width: 100% !important;
        height: 88px !important;
        display: block !important;
    }

    .sch-kant-w__img--placeholder {
        height: 0 !important;
    }

    .sch-kant-w__panel {
        width: 100% !important;
        min-height: 0 !important;
        padding: 12px 20px 13px !important;
    }

    .sch-kant-w__heading {
        font-size: 18px !important;
    }

    .sch-kant-w__btn {
        width: 100% !important;
        text-align: center;
        padding: 10px 20px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 400px) {
    .sch-visit-card__body {
        padding: 18px 16px !important;
    }

    .sch-visit-card__title {
        font-size: 18px !important;
    }

    .sch-visit-card__prices,
    .sch-visit-card__zeiten {
        font-size: 13px;
    }

    .sch-visit-card__img {
        height: 104px;
    }

    .sch-ticket-w__img {
        height: 76px !important;
    }

    .sch-ticket-w__panel,
    .sch-ticket-w--no-img .sch-ticket-w__panel {
        padding: 14px 16px 16px !important;
    }

    .sch-ticket-w__title {
        font-size: 16px !important;
    }

    .sch-ticket-w__prices {
        font-size: 13px;
    }

    .sch-ticket-w__row {
        gap: 12px;
    }

    .sch-patron-w__inner {
        padding: 18px 16px;
    }

    .sch-patron-w__title {
        font-size: 19px;
    }

    .sch-kant-w__img {
        height: 76px !important;
    }

    .sch-kant-w__panel {
        padding: 14px 16px 16px !important;
        gap: 8px !important;
    }

    .sch-kant-w__heading {
        font-size: 16px !important;
    }

    .sch-kant-w__row {
        font-size: 12px !important;
    }
}

@media (max-width: 600px) {
    .sch-kant-card {
        max-width: 100%;
    }

    .sch-kant-card__body {
        padding: 20px;
    }

    .sch-kant-card__title {
        font-size: 1rem;
    }

    .sch-kant-week {
        font-size: .85rem;
    }

    .sch-kant-week__day,
    .sch-kant-week__time {
        padding: 8px 0;
    }

    .sch-kant-week thead th {
        font-size: .65rem;
        padding-bottom: 8px;
    }
}

@media (max-width: 380px) {
    .sch-kant-card__body {
        padding: 16px;
    }

    .sch-kant-week {
        font-size: .8rem;
    }
}

/* Kantine Unterseite */
.sch-kant-pg__hero {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0 !important;
    margin-right: 0 !important;
    aspect-ratio: 16/6;
    background-size: cover;
    background-position: center;
    background-color: #00006b;
    margin-top: 0 !important;
    overflow: hidden;
}

.sch-kant-pg__hero--no-img {
    background-image: linear-gradient(135deg, #000035 0%, #00006b 55%, #0a0a8a 100%) !important;
}

.sch-kant-pg__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 30%,rgba(0,0,30,.82) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 6vw;
}

.sch-kant-pg__hero-title {
    font-family: "Anton",system-ui,sans-serif;
    font-size: clamp(36px,6vw,80px);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin: 0;
    line-height: 1;
}

.sch-kant-pg__hero-sub {
    color: rgba(255,255,255,.65);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 8px 0 0;
}

.sch-kant-pg__body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 52px 6vw;
    max-width: 1100px;
    margin: 0 auto;
}

.sch-kant-pg__section-title {
    font-family: "Anton",system-ui,sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #00006b;
    margin: 0 0 20px;
}

.sch-kant-pg__week {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.sch-kant-pg__sr-head {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.sch-kant-pg__week tbody tr {
    border-bottom: 1px solid rgba(0,0,107,.08);
    transition: background .15s;
}

.sch-kant-pg__week tbody tr:hover {
    background: #f4f7ff;
}

.sch-kant-pg__week tr.is-closed {
    opacity: .45;
}

.sch-kant-pg__day {
    padding: 13px 14px;
    font-weight: 600;
    color: #00006b;
    width: 40%;
    text-align: left;
}

.sch-kant-pg__time {
    padding: 13px 14px;
    text-align: right;
}

.sch-kant-pg__hours {
    font-weight: 600;
    color: #111;
}

.sch-kant-pg__closed {
    font-style: italic;
    color: #aaa;
    font-size: 13px;
}

.sch-kant-pg__hinweis {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #f4f7ff;
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 20px;
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.sch-kant-pg__info-card {
    background: #f4f7ff;
    border-radius: 14px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-top: 3px solid #00006b;
}

.sch-kant-pg__info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: #333;
}

.sch-kant-pg__info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.sch-kant-pg__maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00006b;
    color: #fff;
    padding: 11px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: opacity .18s;
    letter-spacing: .03em;
}

.sch-kant-pg__maps-btn:hover {
    opacity: .85;
    text-decoration: none;
    color: #fff;
}

.page-id-1257 main,
.page-id-1257 main > .wp-block-group,
.page-id-1257 .wp-block-post-content,
.page-id-1257 .wp-block-post-content .wp-block-group {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.page-id-1257 main > .wp-block-group {
    padding-bottom: 0 !important;
}

.sch-kant-pg__hero {
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .sch-kant-pg__hero {
        aspect-ratio: 16/9;
    }

    .sch-kant-pg__hero-title {
        font-size: clamp(28px,7vw,60px);
    }

    .sch-kant-pg__body {
        grid-template-columns: 1fr;
        padding: 28px 4vw;
        gap: 28px;
    }

    .sch-kant-pg__section-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .sch-kant-pg__hero {
        aspect-ratio: 3/2;
    }

    .sch-kant-pg__hero-title {
        font-size: clamp(24px,8vw,40px);
    }

    .sch-kant-pg__body {
        padding: 22px 4vw;
        gap: 22px;
    }

    .sch-kant-pg__day,
    .sch-kant-pg__time {
        padding: 10px 10px;
        font-size: 13px;
    }
}
