/* ===================================================
   MFK Thüringen – Stylesheet
   Moderner Fünfkampf Thüringen
   Plain CSS, no framework dependencies
   =================================================== */

/* --- Custom properties ---
 * Palette: warm paper white dominant, soft navy "ink" for text,
 *          yellow as primary accent (buttons/CTAs),
 *          light blue as secondary accent (links / highlights).
 */
:root {
    /* Ink (was --c-primary green) — primary text/heading colour */
    --c-primary:        #1c2138;   /* soft navy "ink" */
    --c-primary-dark:   #0f1424;
    --c-primary-light:  #faf7f0;   /* warm cream — used as section bg */

    /* Yellow (was gold) — primary accent / CTAs */
    --c-accent:         #FFC83D;
    --c-accent-dark:    #E5A800;
    --c-accent-soft:    #FFE08A;

    /* Blue — secondary accent (links, highlights) */
    --c-blue:           #5B9BFF;
    --c-blue-soft:      #EEF4FF;
    --c-blue-deep:      #2D6FF7;

    /* Neutrals */
    --c-dark:           #1c2138;
    --c-medium:         #6c6c78;
    --c-muted:          #6c6c78;
    --c-light:          #f3eedf;   /* slightly darker cream for sections */
    --c-paper:          #faf7f0;   /* warm cream paper */
    --c-border:         #e6e3dc;
    --c-white:          #ffffff;

    /* Fonts */
    --font:             'Inter Tight', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
    --font-display:     'Fraunces', Georgia, 'Times New Roman', serif;
    --font-mono:        'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    --font-size:        1.0625rem;  /* ~17px to match design */
    --line-height:      1.55;

    --space-xs:  0.25rem;
    --space-sm:  0.5rem;
    --space-md:  1rem;
    --space-lg:  2rem;
    --space-xl:  4rem;
    --space-2xl: 6rem;

    --container:        1140px;
    --container-narrow: 720px;
    --gutter:           1.5rem;

    --radius:    4px;
    --radius-md: 8px;
    --shadow:    0 2px 12px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.11);
    --transition: 0.18s ease;
}


/* --- Base --- */
body {
    font-family: var(--font);
    font-size: var(--font-size);
    line-height: var(--line-height);
    color: var(--c-dark);
    background: var(--c-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--c-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

a {
    color: var(--c-blue-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
a:hover {
    color: var(--c-primary-dark);
    text-decoration-thickness: 2px;
}

strong { font-weight: 700; }

ul, ol {
    padding-left: 1.4em;
    margin-bottom: var(--space-md);
}
ul { list-style: disc; }
ol { list-style: decimal; }

li { margin-bottom: var(--space-xs); }

figure { margin: var(--space-lg) 0; }
figcaption {
    font-size: 0.85rem;
    color: var(--c-medium);
    margin-top: var(--space-xs);
}

blockquote {
    border-left: 4px solid var(--c-accent);
    padding: var(--space-sm) var(--space-md);
    margin: var(--space-lg) 0;
    color: var(--c-medium);
    font-style: italic;
}

table {
    width: 100%;
    margin-bottom: var(--space-lg);
    font-size: 0.9375rem;
}
th, td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--c-border);
}
th {
    background: var(--c-light);
    font-weight: 700;
    color: var(--c-primary);
}
tr:hover td {
    background: var(--c-primary-light);
}


/* --- Layout helpers --- */
.container {
    max-width: var(--container);
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
}

.container--narrow {
    max-width: var(--container-narrow);
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
}


/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.85em 1.6em;
    border-radius: 999px;            /* pill shape, per design */
    font-family: var(--font);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), transform 0.12s ease;
    border: 1.5px solid var(--c-dark);
    line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary,
.btn--hero {
    background: var(--c-accent);
    color: var(--c-dark);
    border-color: var(--c-accent);
    box-shadow: 0 1px 0 var(--c-medium);
}
.btn--primary:hover,
.btn--hero:hover {
    background: var(--c-dark);
    border-color: var(--c-dark);
    color: var(--c-accent);
}

.btn--outline {
    background: transparent;
    color: var(--c-dark);
    border-color: var(--c-dark);
}
.btn--outline:hover {
    background: var(--c-dark);
    color: var(--c-white);
}

.btn--dark {
    background: var(--c-dark);
    color: var(--c-paper);
    border-color: var(--c-dark);
}
.btn--dark:hover {
    background: var(--c-blue);
    border-color: var(--c-blue);
}

.btn--sm {
    padding: 0.5em 1.1em;
    font-size: 0.875rem;
}


/* --- Typography utilities (per design) --- */
.display {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 0.95;
}
.display--italic { font-style: italic; font-weight: 400; }

.mono {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-muted);
}

.lead {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.4;
    color: var(--c-medium);
    font-weight: 400;
}


/* ===================================================
   Site header
   =================================================== */
.site-header {
    background: var(--c-primary);
    color: var(--c-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4rem;
    gap: var(--space-md);
}

/* Logo */
.site-logo {
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 3rem;
    width: auto;
}

.site-logo__text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--c-white);
    letter-spacing: -0.01em;
}

/* Nav toggle (hamburger) */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: var(--space-sm);
    cursor: pointer;
    margin-left: auto;
}

.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* Nav toggle active state – set via JS */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Main navigation */
.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-primary-dark);
    display: none;
    padding: var(--space-md) 0;
}

.main-nav.is-open {
    display: block;
}

.main-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav__item {
    position: relative;
}

.main-nav__link {
    display: block;
    padding: 0.6rem var(--gutter);
    color: var(--c-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background var(--transition), color var(--transition);
}

.main-nav__link:hover,
.main-nav__item.is-current .main-nav__link,
.main-nav__item.is-section .main-nav__link {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-white);
}

.main-nav__item.is-current .main-nav__link {
    color: var(--c-accent);
}

/* Sub-nav */
.main-nav__sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.15);
}

.main-nav__sub-link {
    display: block;
    padding: 0.5rem var(--gutter) 0.5rem calc(var(--gutter) + 1rem);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background var(--transition);
}

.main-nav__sub-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--c-white);
}

/* Desktop nav */
@media (min-width: 900px) {
    .nav-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        background: none;
        display: block;
        padding: 0;
    }

    .main-nav__list {
        display: flex;
        gap: 0;
    }

    .main-nav__link {
        padding: 0 1rem;
        height: 4rem;
        display: flex;
        align-items: center;
        font-size: 0.9rem;
        letter-spacing: 0.01em;
    }

    .main-nav__link:hover,
    .main-nav__item.is-current .main-nav__link,
    .main-nav__item.is-section .main-nav__link {
        background: rgba(255, 255, 255, 0.12);
    }

    .main-nav__item.is-current > .main-nav__link::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 1rem;
        right: 1rem;
        height: 3px;
        background: var(--c-accent);
        border-radius: 3px 3px 0 0;
    }

    /* Dropdown */
    .main-nav__sub {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background: var(--c-primary-dark);
        box-shadow: var(--shadow-md);
        border-radius: 0 0 var(--radius) var(--radius);
        display: none;
        z-index: 200;
    }

    .main-nav__item:hover .main-nav__sub,
    .main-nav__item:focus-within .main-nav__sub {
        display: block;
    }

    .main-nav__sub-link {
        padding: 0.6rem 1.2rem;
    }
}


/* ===================================================
   Hero section
   =================================================== */
.hero {
    position: relative;
    min-height: 720px;
    background-color: var(--c-dark);   /* dark navy ink — matches prototype */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    /* No flex — keep block layout so the inner .container's
     * margin: 0 auto centers it the same way the navbar's
     * .container is centered. Vertical positioning of content
     * is done with padding-top below. */
}

.hero--plain {
    min-height: 40vh;
    background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-primary-dark) 100%);
}

/* Heavy navy overlay so photo dims into background and text remains
 * crisp. Slightly darker at top + bottom edges, like the prototype's
 * two-stop scrim. */
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(28, 33, 56, 0.55) 0%,
            rgba(28, 33, 56, 0.78) 55%,
            rgba(28, 33, 56, 0.95) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: clamp(120px, 18vh, 200px);
    padding-bottom: clamp(60px, 8vh, 100px);
}

/* (.hero__content max-width was here; removed so the new HeroBlock
 *  content fills the full container width and aligns with .container.) */

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    color: var(--c-white);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.0;
    margin-bottom: var(--space-md);
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: var(--space-lg);
    font-weight: 400;
    line-height: 1.45;
    max-width: 38em;
}

.hero__cta,
.btn--hero {
    font-size: 1.05rem;
    padding: 0.75em 2em;
}


/* ===================================================
   Page header (inner pages)
   =================================================== */
.page-header {
    background: var(--c-light);
    border-bottom: 1px solid var(--c-border);
    padding: var(--space-xl) 0 var(--space-lg);
}

.page-header__title {
    margin-top: var(--space-sm);
}

.page-header__intro {
    margin-top: var(--space-md);
    font-size: 1.1rem;
    color: var(--c-medium);
    max-width: 700px;
}

.page-header__lead {
    font-size: 1.15rem;
    color: var(--c-medium);
    margin-top: var(--space-sm);
    max-width: 700px;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.85rem;
    color: var(--c-medium);
    margin-bottom: var(--space-sm);
}

.breadcrumbs a {
    color: var(--c-medium);
}

.breadcrumbs a:hover {
    color: var(--c-primary);
}


/* ===================================================
   Page body
   =================================================== */
.page-body {
    padding: var(--space-xl) 0;
}


/* ===================================================
   Elemental blocks
   =================================================== */

/*
 * ElementHolder.ss wraps each block in:
 *   <div class="element {SimpleClassName.LowerCase}">
 * ElementContent.ss uses: .content-element__content / .content-element__title
 */

/* Each block manages its own vertical padding — the wrapper itself
 * stays flush so we don't get stacked padding between adjacent blocks. */
.element {
    padding: 0;
}
.element .block {
    padding: 0;
}

/* ===================================================
 * Content block (ElementContent) — editorial 2-column layout:
 * narrow left column for the eyebrow, wide right column for
 * headline + body. Stacks on mobile.
 * =================================================== */
.block--content {
    padding: clamp(3.5rem, 9vw, 7.5rem) 0;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(120px, 0.25fr) minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: start;
}

.content-grid__aside {
    padding-top: 0.6rem;   /* aligns visually with the first line of the headline */
}

.content-grid__body {
    max-width: 50em;
}

.content-element__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--c-dark);
    margin: 0 0 var(--space-md);
}

/* italic accent inside a headline gets the blue color
 * (editor wraps the accent words in <em> via the HTMLEditor) */
.content-element__title em,
.content-element__title i {
    font-style: italic;
    color: var(--c-blue);
    font-weight: 400;
}

.content-element__html {
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
    line-height: 1.5;
    color: var(--c-medium);
}

@media (max-width: 720px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .content-grid__aside {
        padding-top: 0;
    }
}

/* Custom block sections restore their own padding (overrides .element .block { padding:0 }) */
.element .block--news-preview,
.element .block--downloads,
.element .block--content,
.element .block--discipline-strip,
.element .block--discipline-info {
    padding: var(--space-xl) 0;
}

.block__title {
    margin-bottom: var(--space-lg);
    text-align: center;
    position: relative;
    padding-bottom: var(--space-md);
}

.block__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--c-accent);
    margin: var(--space-sm) auto 0;
    border-radius: 2px;
}

.block__footer {
    text-align: center;
    margin-top: var(--space-lg);
}


/* ===================================================
   News preview block (on home page)
   =================================================== */
.block--news-preview {
    background: var(--c-light);
}

.news-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-preview-card {
    background: var(--c-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
}

.news-preview-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.news-preview-card__image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.news-preview-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.news-preview-card:hover .news-preview-card__image {
    transform: scale(1.03);
}

.news-preview-card__body {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-preview-card__date {
    font-size: 0.8rem;
    color: var(--c-medium);
    display: block;
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-preview-card__title {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
}

.news-preview-card__title a {
    text-decoration: none;
    color: var(--c-dark);
}

.news-preview-card__title a:hover {
    color: var(--c-primary);
}

.news-preview-card__summary {
    font-size: 0.9rem;
    color: var(--c-medium);
    line-height: 1.5;
    flex: 1;
}


/* ===================================================
   News list (NewsHolder page)
   =================================================== */
/* ===================================================
 * News page (NewsHolder) — editorial layout:
 * page header (eyebrow + huge title + sub) → featured story (two-col)
 * → compact row list of remaining articles.
 * =================================================== */

.news-page .page-section {
    padding: var(--space-xl) 0;
}

.news-page .page-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: var(--space-md) 0 var(--space-sm);
}

.news-page .page-title em,
.news-page .page-title i {
    font-style: italic;
    color: var(--c-blue);
    font-weight: 400;
}

.news-page .page-sub {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: var(--c-medium);
    max-width: 38em;
}

/* Featured story — two columns: image left, body right */
.news-featured-wrap {
    padding-bottom: var(--space-xl);
}

.news-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
    text-decoration: none;
    color: inherit;
}

@media (min-width: 720px) {
    .news-featured {
        grid-template-columns: 1.1fr 1fr;
        gap: var(--space-2xl);
    }
}

.news-featured__image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 6px;
    background: var(--c-paper);
}

.news-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-featured__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        repeating-linear-gradient(135deg,
            rgba(28, 33, 56, 0.04) 0 8px,
            transparent 8px 14px);
    color: var(--c-muted);
}

.news-featured__meta {
    color: var(--c-blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin: 0 0 var(--space-sm);
}

.news-featured__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--c-dark);
    margin: 0 0 var(--space-md);
}

.news-featured__summary {
    margin: 0 0 var(--space-lg);
    max-width: 32em;
}

.news-featured__cta {
    margin-top: 0;
}

.news-featured:hover .news-featured__title {
    color: var(--c-blue-deep);
}

/* Compact row list — rows separated by thin lines */
.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-row {
    display: grid;
    grid-template-columns: 140px 110px 1fr auto;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--c-border);
    text-decoration: none;
    color: inherit;
    transition: color 0.18s ease;
}

.news-list li:last-child .news-row {
    border-bottom: 1px solid var(--c-border);
}

.news-row__thumb {
    height: 84px;
    width: 140px;
    overflow: hidden;
    border-radius: 4px;
    background: var(--c-paper);
}

.news-row__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-row__thumb-placeholder {
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(135deg,
            rgba(28, 33, 56, 0.04) 0 8px,
            transparent 8px 14px);
}

.news-row__date {
    font-size: 0.75rem;
    color: var(--c-muted);
    letter-spacing: 0.05em;
}

.news-row__cat {
    display: block;
    font-size: 0.7rem;
    color: var(--c-blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.news-row__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.25rem, 1.7vw, 1.6rem);
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--c-dark);
}

.news-row__arrow {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--c-muted);
    line-height: 1;
}

.news-row:hover .news-row__title,
.news-row:hover .news-row__arrow {
    color: var(--c-blue-deep);
}

@media (max-width: 720px) {
    .news-row {
        grid-template-columns: 90px 1fr;
        gap: var(--space-md);
    }
    .news-row__date,
    .news-row__arrow {
        display: none;
    }
}


/* ===================================================
   Single news article
   =================================================== */
.news-article__hero {
    max-height: 480px;
    overflow: hidden;
}

.news-article__hero-img {
    width: 100%;
    object-fit: cover;
    max-height: 480px;
}

.news-article__meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--c-medium);
    font-size: 0.9rem;
    margin-top: var(--space-sm);
}

.news-article__author::before {
    content: '· ';
}

.news-article__back {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--c-border);
}


/* ===================================================
   Disciplines grid
   =================================================== */
.discipline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-lg);
    list-style: none;
    padding: 0;
}

.discipline-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--c-white);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
}

.discipline-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.discipline-card__image-link {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.discipline-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.discipline-card:hover .discipline-card__image {
    transform: scale(1.04);
}

.discipline-card__body {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.discipline-card__title {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.discipline-card__title a {
    text-decoration: none;
    color: var(--c-dark);
}

.discipline-card__title a:hover {
    color: var(--c-primary);
}

.discipline-card__desc {
    font-size: 0.9rem;
    color: var(--c-medium);
    flex: 1;
    margin-bottom: var(--space-md);
    line-height: 1.55;
}

.discipline-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--c-primary);
    margin-top: auto;
}

.discipline-card__link:hover {
    color: var(--c-primary-dark);
}


/* ===================================================
   Discipline detail page
   =================================================== */
.discipline-page__hero {
    max-height: 420px;
    overflow: hidden;
}

.discipline-page__hero-img {
    width: 100%;
    object-fit: cover;
    max-height: 420px;
}

.discipline-page__nav {
    padding-bottom: var(--space-xl);
    margin-top: var(--space-lg);
}


/* ===================================================
   Download block
   =================================================== */
.download-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.download-item__link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--c-light);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--c-dark);
    transition: background var(--transition), border-color var(--transition);
}

.download-item__link:hover {
    background: var(--c-primary-light);
    border-color: var(--c-primary);
    color: var(--c-primary-dark);
}

.download-item__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.download-item__name {
    flex: 1;
    font-weight: 600;
}

.download-item__meta {
    font-size: 0.8rem;
    color: var(--c-medium);
    white-space: nowrap;
}


/* ===================================================
   Site footer
   =================================================== */
.site-footer {
    background: var(--c-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: var(--space-xl) 0 var(--space-lg);
    margin-top: var(--space-xl);
}

.site-footer__grid {
    display: grid;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
    .site-footer__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.site-footer__brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: var(--space-xs);
}

.site-footer__tagline {
    font-size: 0.85rem;
    color: var(--c-accent);
}

.site-footer__heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-md);
}

.site-footer__nav {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.site-footer__nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
}

.site-footer__nav a:hover {
    color: var(--c-white);
}

.site-footer__col p {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.site-footer__col a {
    color: rgba(255, 255, 255, 0.75);
}

.site-footer__col a:hover {
    color: var(--c-white);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.site-footer__bottom a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.site-footer__bottom a:hover {
    color: var(--c-white);
}

.site-footer__cms {
    margin: 0;
}


/* ===================================================
   Rich text content (WYSIWYG output)
   =================================================== */
.page-body h2 { margin: 1.8em 0 0.6em; }
.page-body h3 { margin: 1.5em 0 0.5em; }
.page-body h4 { margin: 1.3em 0 0.4em; }

.page-body a {
    font-weight: 500;
}

.page-body img {
    border-radius: var(--radius);
    margin: var(--space-lg) 0;
}


/* ===================================================
   Utilities
   =================================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -999px;
    left: 0;
    background: var(--c-accent);
    color: var(--c-dark);
    padding: var(--space-sm) var(--space-md);
    font-weight: 700;
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}

/* ===================================================
 * Gallery
 * ================================================ */

.gallery-holder,
.gallery-album {
    padding: var(--space-xl) 0;
}

.breadcrumb {
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--c-accent);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.album-date {
    color: var(--c-muted, #666);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.album-description {
    margin-bottom: var(--space-lg);
}

/* Album grid (list of albums) */
.album-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-lg);
}

.album-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.album-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.album-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.album-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.album-card__placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
}

.album-card__body {
    padding: var(--space-md);
}

.album-card__title {
    margin: 0 0 var(--space-xs);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-primary);
}

.album-card__date {
    display: block;
    font-size: 0.9rem;
    color: var(--c-muted, #666);
    margin-bottom: var(--space-xs);
}

.album-card__count {
    margin: 0;
    font-size: 0.85rem;
    color: var(--c-muted, #666);
}

/* Photo grid (inside a single album) */
.photo-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 6px;
}

.photo-grid__item {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    background: #eee;
}

.photo-grid__item a {
    display: block;
    width: 100%;
    height: 100%;
}

.photo-grid__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.photo-grid__item:hover .photo-grid__image {
    transform: scale(1.05);
}

.block--gallery {
    padding: var(--space-xl) 0;
}

/* ===================================================
 * Section eyebrow — small mono label above/beside any block.
 * Has a short horizontal line as a prefix (via ::before).
 * On light bg: muted gray + ink line. On dark hero: yellow text + em-dash.
 * =================================================== */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 var(--space-md);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-muted);
}
.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: var(--c-dark);
    flex-shrink: 0;
}

.section-eyebrow--light {
    color: var(--c-accent);
    letter-spacing: 0.12em;
}
.section-eyebrow--light::before {
    content: '—';
    background: transparent;
    width: auto;
    height: auto;
    color: var(--c-accent);
}

/* ===================================================
 * HeroBlock (elemental) — large editorial hero with hatching overlay
 * =================================================== */
.block--hero {
    padding: 0;
    overflow: hidden;
}

/* Diagonal hatching pattern over the hero image */
.hero__hatching {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(135deg,
            rgba(0, 0, 0, 0.10) 0 14px,
            transparent 14px 24px);
    pointer-events: none;
    z-index: 0;
}

.hero .container,
.hero__content {
    position: relative;
    z-index: 1;
}

.hero--compact {
    min-height: 38vh;
}

/* HeroBlock content fills the container (overrides .hero__content's
 * older max-width: 640px restriction) and aligns left.
 */
/* Keep the .container max-width so the hero content aligns with the
 * site header and the eyebrow above content blocks. */
.block--hero .hero__content {
    text-align: left;
}

/* Bigger editorial title for HeroBlock — matches prototype clamp(72px,14vw,220px) */
.block--hero .hero__title {
    font-size: clamp(4.5rem, 14vw, 13.75rem);
    line-height: 0.82;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-lg);
    color: var(--c-white);
}

/* Split row: lead text on the left, CTA on the right.
 * Stacks on small screens.
 */
/* Title row: eyebrow + title on the left, optional discipline icon
 * on the right, both bottom-aligned. */
.block--hero .hero__main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.block--hero .hero__title-col {
    flex: 1 1 auto;
    min-width: 0;
}

.block--hero .hero__icon {
    flex: 0 0 auto;
    align-self: flex-end;
    color: var(--c-accent);
    font-size: clamp(2.5rem, 6vw, 5.75rem);
    line-height: 1;
    margin-bottom: 0.4em;
}

.block--hero .hero__row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.block--hero .hero__lead {
    flex: 1 1 24em;
    max-width: 36em;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
    margin: 0;
}

.block--hero .hero__cta {
    flex: 0 0 auto;
}

/* Make the section-eyebrow inside the hero a bit larger and left-aligned */
.block--hero .section-eyebrow {
    margin-bottom: var(--space-md);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* ===================================================
 * DisciplineInfoBlock — 2-card split: blue (Wann) + yellow (Wer)
 * =================================================== */
.block--discipline-info {
    padding: var(--space-xl) 0;
}

.info-split {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 8px;
    overflow: hidden;
}

@media (min-width: 720px) {
    .info-split {
        grid-template-columns: 1fr 1fr;
    }
}

.info-split__card {
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
}

.info-split__card--blue {
    background: var(--c-blue-soft);
    color: var(--c-dark);
}

.info-split__card--yellow {
    background: var(--c-accent);
    color: var(--c-dark);
}

.info-split__heading {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-blue-deep);
    margin: 0 0 var(--space-md);
    font-weight: 500;
}

.info-split__card--yellow .info-split__heading {
    color: var(--c-dark);
    opacity: 0.7;
}

.info-split__row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 0.6rem;
}

.info-split__bullet {
    color: var(--c-blue-deep);
    font-size: 1.5em;
    line-height: 1;
}

.info-split__card--yellow .info-split__bullet {
    color: var(--c-dark);
}

.info-split__big {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.5rem, 2.5vw, 2.4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--c-dark);
}

.info-split__note,
.info-split__contact {
    margin: var(--space-md) 0 0;
    font-size: 0.95rem;
    color: var(--c-medium);
}

.info-split__card--yellow .info-split__contact {
    color: var(--c-dark);
    opacity: 0.85;
}

.info-split__email {
    color: var(--c-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.info-split__cta {
    margin-top: var(--space-md);
}


/* ===================================================
 * DisciplinesOverviewBlock — alternating image/text rows
 * (image side is a placeholder for now — child pages don't yet
 * have a card image; styled like a hatching square that hints at
 * the upcoming photo).
 * =================================================== */
.block--disciplines-overview {
    padding: var(--space-xl) 0;
}

.disciplines-overview__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--c-dark);
    margin: 0 0 var(--space-md);
}
.disciplines-overview__title em,
.disciplines-overview__title i {
    font-style: italic;
    color: var(--c-blue);
    font-weight: 400;
}

.disciplines-overview__intro {
    margin-bottom: var(--space-xl);
    max-width: 38em;
}

.disc-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 6vw, 5rem);
}

.disc-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 4vw, 3rem);
    align-items: center;
    text-decoration: none;
    color: inherit;
}

@media (min-width: 720px) {
    .disc-row {
        grid-template-columns: 1fr 1fr;
    }
    /* alternate: every 2nd, 4th row flips text/image positions */
    .disc-row:nth-child(even) .disc-row__visual {
        order: -1;
    }
    .disc-row:nth-child(even) .disc-row__text {
        order: 1;
    }
}

.disc-row__visual {
    aspect-ratio: 5 / 4;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: var(--c-paper);
}

.disc-row__visual-inner {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(135deg,
            rgba(28, 33, 56, 0.06) 0 8px,
            transparent 8px 16px);
}

.disc-row__num-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--c-accent);
    color: var(--c-dark);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
}

.disc-row__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-muted);
}

.disc-row__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin: 0.4rem 0 0;
    color: var(--c-dark);
    transition: color 0.25s ease;
}

.disc-row:hover .disc-row__title {
    color: var(--c-blue-deep);
}

.disc-row__sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: var(--c-medium);
    margin: 0.8rem 0 0;
    max-width: 32em;
    line-height: 1.5;
}

.disc-row__cta {
    display: inline-block;
    margin-top: var(--space-md);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--c-dark);
    border-bottom: 2px solid var(--c-accent);
    padding-bottom: 2px;
}

/* PhotoSwipe custom caption overlay (bottom of the lightbox) */
.pswp__custom-caption {
    background: rgba(28, 33, 56, 0.85);
    color: #fff;
    font-family: var(--font);
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 0.6em 1em;
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    max-width: min(90vw, 720px);
    border-radius: 4px;
    text-align: center;
}
.pswp__custom-caption:empty { display: none; }


/* ===================================================
 * 5er-Disziplinen-Strip
 *
 * On desktop: five vertical strips side-by-side. The hovered (or first)
 * strip expands to ~3.2× width with a soft blue background and reveals
 * the discipline name horizontally + meta info.
 * On mobile: strips stack vertically and all show their full content.
 * Pure CSS — no JS needed.
 * =================================================== */
.block--discipline-strip {
    padding: var(--space-xl) 0;
    background: var(--c-paper);
}

.strip-header {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.strip-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0 0 var(--space-md);
}
.strip-title em,
.strip-title i {
    font-style: italic;
    color: var(--c-blue);
    font-weight: 400;
}

.strip-intro {
    max-width: 38em;
    margin: 0;
}

.disc-strip {
    display: flex;
    width: 100%;
    border: 1.5px solid var(--c-dark);
    border-radius: 8px;
    overflow: hidden;
    background: var(--c-white);
}

.disc-strip-item {
    position: relative;
    flex: 1;
    /* fixed height (not min-height) so the strip doesn't grow when an
     * item becomes active and reveals its larger horizontal title. */
    height: 520px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    color: var(--c-dark);
    background-color: var(--c-paper);
    background-image:
        repeating-linear-gradient(135deg,
            rgba(28, 33, 56, 0.04) 0 8px,
            transparent 8px 14px);
    border-right: 1px solid var(--c-border);
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    transition:
        flex 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.4s ease;
}

.disc-strip-item__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

/* Body uses grid stacking so collapsed and active share one cell */
.disc-strip-item__body {
    display: grid;
    grid-template-areas: 'stack';
}
.disc-strip-item__body > * {
    grid-area: stack;
}

.disc-strip-item:last-child { border-right: none; }

/* hover OR is-active class wins.
 * .disc-strip:not(.js-ready) .disc-strip-item:first-child is the no-JS
 * fallback: until discipline-strip.js runs, the first item is shown
 * expanded. (The JS adds .js-ready to the strip on init.)
 */
.disc-strip:not(.js-ready) .disc-strip-item:first-child,
.disc-strip-item.is-active,
.disc-strip-item:hover,
.disc-strip-item:focus-visible {
    flex: 3.2;
    background-color: var(--c-blue-soft);
    background-image:
        linear-gradient(180deg,
            rgba(255, 200, 61, 0.08) 0%,
            rgba(255, 200, 61, 0.18) 100%),
        repeating-linear-gradient(135deg,
            rgba(91, 155, 255, 0.10) 0 8px,
            transparent 8px 14px);
    outline: none;
}

/* When ANY sibling is hovered, kill the default is-active so hover wins */
.disc-strip:hover .disc-strip-item.is-active:not(:hover) {
    flex: 1;
    background-color: var(--c-paper);
    background-image:
        repeating-linear-gradient(135deg,
            rgba(28, 33, 56, 0.04) 0 8px,
            transparent 8px 14px);
}
.disc-strip:hover .disc-strip-item.is-active:not(:hover) .disc-name-collapsed {
    opacity: 0.65;
}
.disc-strip:hover .disc-strip-item.is-active:not(:hover) .disc-name-active-wrap {
    opacity: 0;
}
.disc-strip:hover .disc-strip-item.is-active:not(:hover) .disc-icon {
    font-size: 1.75rem;
    opacity: 0.4;
    color: var(--c-dark);
}
.disc-strip:hover .disc-strip-item.is-active:not(:hover) .disc-num {
    color: var(--c-muted);
}

.disc-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--c-muted);
    letter-spacing: 0.1em;
}

.disc-strip-item.is-active .disc-num,
.disc-strip-item:hover .disc-num {
    color: var(--c-blue-deep);
}

.disc-icon {
    display: inline-block;
    font-size: 1.75rem;
    opacity: 0.4;
    color: var(--c-dark);
    line-height: 1;
    transition: font-size 0.4s ease, opacity 0.4s ease, color 0.4s ease;
}

.disc-strip-item.is-active .disc-icon,
.disc-strip-item:hover .disc-icon {
    font-size: 4rem;
    opacity: 1;
    color: var(--c-blue-deep);
}

/* Collapsed: rotated vertical name, right-aligned in the body cell */
.disc-name-collapsed {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: -0.01em;
    line-height: 1;
    color: var(--c-dark);
    opacity: 0.65;
    justify-self: end;
    align-self: end;
    transition: opacity 0.3s ease;
}

.disc-strip-item:hover .disc-name-collapsed { opacity: 0; }
.disc-strip-item.is-active .disc-name-collapsed { opacity: 0; }

/* Active/hovered: big horizontal name, in the same grid cell as collapsed */
.disc-name-active-wrap {
    align-self: end;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease 0.1s, transform 0.4s ease 0.1s;
    pointer-events: none;
}

.disc-strip-item.is-active .disc-name-active-wrap,
.disc-strip-item:hover .disc-name-active-wrap {
    opacity: 1;
    transform: translateY(0);
}

.disc-name-active {
    display: block;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.4rem, 4.5vw, 4.5rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--c-dark);
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.disc-subtitle {
    font-style: italic;
    color: var(--c-medium);
    margin-top: 0.4rem;
    font-size: 1rem;
}

.disc-meta {
    font-size: 0.9rem;
    color: var(--c-medium);
    margin-top: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease 0.15s;
}

.disc-strip-item.is-active .disc-meta,
.disc-strip-item:hover .disc-meta {
    opacity: 1;
}

.disc-cta-hint {
    display: inline-block;
    margin-top: 0.7rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--c-dark);
    border-bottom: 2px solid var(--c-accent);
    padding-bottom: 2px;
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}

.disc-strip-item.is-active .disc-cta-hint,
.disc-strip-item:hover .disc-cta-hint {
    opacity: 1;
}

/* --- Mobile: stack vertically, all show full content --- */
@media (max-width: 720px) {
    .disc-strip {
        flex-direction: column;
    }
    .disc-strip-item {
        flex: 1 1 auto;
        min-height: 220px;
        border-right: none;
        border-bottom: 1px solid var(--c-border);
        background-color: var(--c-blue-soft);
    }
    .disc-strip-item:last-child { border-bottom: none; }
    .disc-strip-item .disc-name-collapsed { display: none; }
    .disc-strip-item .disc-name-active-wrap {
        opacity: 1;
        transform: none;
    }
    .disc-strip-item .disc-name-active {
        font-size: 2rem;
    }
    .disc-strip-item .disc-icon {
        font-size: 2.5rem;
        opacity: 1;
        color: var(--c-blue-deep);
    }
    .disc-strip-item .disc-meta,
    .disc-strip-item .disc-cta-hint {
        opacity: 1;
    }
    /* Disable JS-style sibling-hover suppression on mobile */
    .disc-strip:hover .disc-strip-item.is-active:not(:hover) {
        flex: 1 1 auto;
        background-color: var(--c-blue-soft);
    }
}
