/* ============================================================
   SN-FACHPRESSE – Startseite (aus Entwurfsvorlage abgeleitet)
   ============================================================ */
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/NunitoSans-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/NunitoSans-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/NunitoSans-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/NunitoSans-800.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/NunitoSans-900.woff2') format('woff2');
}

:root {
    --navy: #12314e;
    --navy-dark: #0d2338;
    --terra: #c0392b;
    --terra-light: #d4503a;
    --cream: #fbfaf8;
    --cream-2: #f1eee8;
    --paper: #e6e2dc;
    --green: #bbd653;
    --green-2: #aecb46;
    --blue-accent: #2860a0;
    --sand: #9c8b75;
    --muted: #a39a8d;
    --text-soft: #5f6b78;
    --line: #ece8e1;
    --maxw: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
    background: var(--cream);
    color: var(--navy);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--terra);
}

.hero__title,
.section-head__title,
.title-card__name,
.events-panel__title,
.special__title,
.special-card__title,
.usp__title,
.cta__title,
.hero__lead,
.title-card__char,
.events-panel__text,
.special__text,
.usp__text,
.cta__text {
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
}

.no-break {
    white-space: nowrap;
}

.no-hyphen {
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    overflow: visible;
    z-index: 999;
    background: #fff;
    color: var(--navy);
    border: 2px solid var(--terra);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 18px 32px;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}

.btn--primary {
    background: var(--terra);
    color: #fff;
}

.btn--primary:hover {
    background: #a32f23;
    color: #fff;
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn--ghost:hover {
    background: var(--navy);
    color: #fff;
}

.btn--sm {
    padding: 15px 28px;
    border-radius: 11px;
}

.btn--navy {
    background: var(--navy);
    color: #fff;
}

.btn--navy:hover {
    background: var(--navy-dark);
    color: #fff;
}

.btn--outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: rgba(18, 49, 78, 0.35);
}

.btn--outline-navy:hover {
    background: var(--navy);
    color: #fff;
}

/* ---------- Logo ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo__squares {
    display: flex;
    gap: 4px;
}

.logo__squares span {
    width: 13px;
    height: 13px;
    background: var(--terra);
}

.logo__word {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: var(--navy);
}

/* ---------- Navigation ---------- */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 40px;
    max-width: var(--maxw);
    margin: 0 auto;
    position: relative;
}

.nav__links {
    display: flex;
    gap: 30px;
}

.nav__link {
    font-size: 12.5px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    white-space: nowrap;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav__lang {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--muted);
    white-space: nowrap;
}

.nav__lang b,
.nav__lang a[aria-current='page'] {
    color: var(--navy);
}

.nav__cta {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--terra);
    color: #fff;
    padding: 11px 22px;
    border-radius: 9px;
    white-space: nowrap;
}

.nav__cta:hover {
    background: #a32f23;
    color: #fff;
}

.nav__burger {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: var(--navy);
    cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    padding: 64px 40px 60px;
    max-width: var(--maxw);
    margin: 0 auto;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 30px;
}

.hero__eyebrow span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terra);
}

.hero__title {
    font-size: 88px;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 32px;
}

.hero__title em {
    font-style: normal;
    color: var(--terra);
}

.hero__lead {
    font-size: 18px;
    line-height: 1.55;
    color: var(--text-soft);
    font-weight: 600;
    max-width: 500px;
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero__stats {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
    padding-top: 38px;
    border-top: 1px solid #e4dfd7;
}

.stat {
    text-align: center;
}

.stat__num {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--navy);
    line-height: 0.9;
}

.stat__num b {
    color: var(--terra);
    font-weight: 900;
}

.stat__label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 9px;
}

.hero__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 470px;
}

.rotator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.rotator__glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 57, 43, 0.14) 0%, rgba(192, 57, 43, 0) 68%);
    z-index: 0;
}

.rotator__frame {
    position: relative;
    width: 318px;
    height: 430px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 34px 60px rgba(18, 49, 78, 0.4);
    z-index: 1;
}

.rotator__frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.rotator__frame img.is-active {
    opacity: 1;
}

.rotator__caption {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.rotator__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--terra);
}

.rotator__name {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
}

.rotator__count {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--muted);
}

/* ---------- Ticker ---------- */
.ticker {
    background: var(--terra);
    overflow: hidden;
    padding: 14px 0;
}

.ticker__track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: ticker 36s linear infinite;
}

.ticker__group {
    display: flex;
    align-items: center;
}

.ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    padding-left: 20px;
}

.ticker__item:hover,
.ticker__item:focus-visible {
    color: #fff;
}

.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track {
    animation-play-state: paused;
}

.ticker__item img {
    height: 20px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.95;
    transition: transform 180ms ease;
    transform-origin: center;
}

.ticker__item:hover img,
.ticker__item:focus-visible img {
    transform: scale(1.2);
}

.ticker__item span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---------- Section Head ---------- */
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 76px 40px 8px;
    max-width: var(--maxw);
    margin: 0 auto;
}

.section-head__left {
    display: flex;
    align-items: flex-end;
    gap: 22px;
}

.section-head__index {
    font-size: 82px;
    font-weight: 900;
    line-height: 0.72;
    color: var(--navy);
    opacity: 0.12;
    letter-spacing: -0.04em;
}

.section-head__eyebrow {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 14px;
    text-align: left;
}

.section-head__eyebrow--blue {
    color: var(--blue-accent);
}

.section-head__eyebrow-mobile {
    display: none;
}

.section-head__title {
    font-size: 48px;
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--navy);
    text-align: left;
}

.section-head__link {
    font-size: 12.5px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terra);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    white-space: nowrap;
}

/* ---------- Cover Grid ---------- */
.cover-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 52px 40px;
    padding: 36px 40px 0;
    max-width: var(--maxw);
    margin: 0 auto;
}

@media (min-width: 56.3125rem) {
    .title-card {
        width: 100%;
        max-width: 14rem;
        justify-self: center;
    }
}

.title-card {
    transition: transform 200ms ease;
    transform-origin: center;
}

.title-card:hover,
.title-card:focus-within {
    transform: scale(1.03);
}

.title-card__link {
    display: block;
}

.title-card__cover {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 12px 26px rgba(18, 49, 78, 0.18);
    position: relative;
}

.title-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.list-page--special-covers .title-card__cover,
.title-card--special .title-card__cover {
    background: #fff;
}

.list-page--special-covers .title-card__cover img,
.title-card--special .title-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.title-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: var(--paper);
    color: #7c8894;
    font-size: 1.75rem;
    font-weight: 900;
}

.title-card__name {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 16px 0 5px;
    line-height: 1.05;
}

.title-card__char {
    font-size: 12.5px;
    font-weight: 700;
    color: #7c8894;
    line-height: 1.4;
    margin-bottom: 6px;
}

.title-card__freq {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.empty-state {
    grid-column: 1 / -1;
    padding: 1rem 1.2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 700;
}

/* ---------- Events ---------- */
.events-wrap {
    padding: 72px 40px 0;
    max-width: var(--maxw);
    margin: 0 auto;
}

.events-panel {
    border-radius: 24px;
    overflow: hidden;
    background: var(--green);
    display: grid;
    grid-template-columns: 1fr 1.15fr;
}

.events-panel + .events-panel {
    margin-top: 1.5rem;
}

.events-wrap--food {
    padding-top: 56px;
}

.events-panel--food {
    background: #dce9f6;
}

.events-panel__photo {
    display: block;
    min-height: 390px;
    position: relative;
    background: repeating-linear-gradient(135deg, var(--green-2) 0 22px, #b7d34e 22px 44px);
}

.events-panel--food .events-panel__photo {
    background: linear-gradient(135deg, #e9eef4, #d8e3f0);
}

.events-panel__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-panel__slide {
    opacity: 0;
    transition: opacity 900ms ease;
}

.events-panel__slide.is-active {
    opacity: 1;
}

.events-panel__body {
    padding: 56px;
    padding-top: 108px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--navy);
}

.events-panel__photo-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 2rem;
    color: rgba(18, 49, 78, 0.45);
}

.events-panel__eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.65;
    margin-bottom: 22px;
}

.events-panel__logo {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: auto;
    max-width: 180px;
    max-height: 52px;
    object-fit: contain;
}

.events-panel__title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    max-width: 28rem;
    margin-bottom: 0.85rem;
}

.events-panel__title-link {
    color: inherit;
}

.events-panel__title-link:hover,
.events-panel__title-link:focus-visible {
    color: var(--terra);
}

.events-panel__meta {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.events-panel__meta-item {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 700;
}

.events-panel__text {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--text-soft);
    max-width: 46ch;
    margin-bottom: 1.5rem;
}

.icon-svg--meta {
    width: 0.95rem;
    height: 0.95rem;
    flex: 0 0 0.95rem;
}

.events-panel__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ---------- Compact Object Lists ---------- */
.compact-objects {
    max-width: var(--maxw);
    margin: 3rem auto 0;
    padding: 0 40px;
}

.compact-objects__title,
.compact-objects__empty,
.compact-objects__row {
    background: #fff;
}

.compact-objects__title {
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 1rem 1rem 0 0;
    padding: 1rem 1.25rem 0.6rem;
}

.compact-objects__row:last-of-type {
    border-radius: 0 0 1rem 1rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.8rem;
}

.compact-objects__row {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.compact-objects__empty {
    border: 1px solid var(--line);
    border-radius: 0 0 1rem 1rem;
    margin-top: -1px;
}

.compact-objects__title {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 0;
}

.compact-objects--food .compact-objects__title {
    color: var(--blue-accent);
}

.compact-objects__row {
    display: grid;
    grid-template-columns: minmax(8.5rem, 10rem) 1fr;
    align-items: baseline;
    gap: 0.65rem 0.9rem;
    padding: 0.52rem 1.25rem;
    border-top: 1px solid var(--line);
}

.compact-objects__label {
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.4;
}

.compact-objects__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.1rem 0.25rem;
}

.compact-objects__item {
    position: relative;
    line-height: 1.45;
}

.compact-objects__item:not(:last-child)::after {
    content: '·';
    color: var(--muted);
    margin-left: 0.3rem;
}

.compact-objects__link,
.compact-objects__text {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-soft);
}

.compact-objects__link:hover,
.compact-objects__link:focus-visible {
    color: var(--terra);
}

.compact-objects__empty {
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: var(--cream);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-soft);
}

/* ---------- Special ---------- */
.special-wrap {
    padding: 76px 40px 0;
    max-width: var(--maxw);
    margin: 0 auto;
}

.special {
    background: var(--cream-2);
    border-radius: 20px;
    padding: 52px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 44px;
    align-items: center;
}

.special__eyebrow {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 14px;
}

.special__title {
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 16px;
    white-space: nowrap;
}

.special__text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-soft);
    line-height: 1.55;
}

.special__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.special-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.special-card--link {
    transition: transform 200ms ease, box-shadow 200ms ease;
    border: 1px solid transparent;
}

.special-card--link:hover,
.special-card--link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(18, 49, 78, 0.12);
    border-color: rgba(18, 49, 78, 0.12);
}

.special-card--link:hover .special-card__title,
.special-card--link:focus-visible .special-card__title {
    color: var(--terra);
}

.special-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 1.5rem;
}

.icon-svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.icon-svg--date {
    width: 1rem;
    height: 1rem;
}

.special-card__title {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--navy);
}

.special-card__sub {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}

/* ---------- USP ---------- */
.usp {
    padding: 76px 40px 0;
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
}

.usp__item {
    border-top: 2px solid var(--navy);
    padding-top: 26px;
}

.usp__title {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 23px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--navy);
    margin: 0 0 10px;
    line-height: 1;
}

.usp__title-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 1.5rem;
}

.usp__text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-soft);
    line-height: 1.5;
}

/* ---------- CTA ---------- */
.cta {
    margin-top: 76px;
    background: var(--navy);
}

.cta__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 72px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta__title {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 0.94;
    margin-bottom: 18px;
    max-width: 620px;
}

.cta__text {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55;
    max-width: 620px;
}

/* ---------- List Page ---------- */
.list-page {
    padding-bottom: 4.5rem;
}

.list-page__wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 2.5rem 40px 0.3rem;
}

.list-page__eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 0.75rem;
}

.list-page__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.list-page__intro {
    max-width: 46rem;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.55;
    color: var(--text-soft);
}

.list-page__filter {
    margin-top: 0.95rem;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.78rem;
    color: var(--muted);
    background: #fff;
}

.list-page__filter strong {
    color: var(--navy);
    font-weight: 800;
}

.list-page .section-head {
    padding-top: 1.1rem;
    padding-bottom: 0;
}

.list-page .section-head__left {
    align-items: center;
}

.list-page .section-head__eyebrow {
    margin-bottom: 0;
}

.list-page .cover-grid {
    padding-top: 0.8rem;
}

@media (min-width: 56.3125rem) {
    .list-page__wrap {
        padding-bottom: 0.65rem;
    }

    .list-page__title {
        margin-bottom: 0.55rem;
    }

    .list-page .section-head {
        padding-top: 1.6rem;
    }
}

.list-page__section + .list-page__section {
    margin-top: 2rem;
}

.list-card__mediadata-wrap {
    margin-top: 0.42rem;
}

.list-card__mediadata {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--terra);
}

.list-card__mediadata:hover,
.list-card__mediadata:focus-visible,
.title-card__link--mediadata:hover .list-card__mediadata,
.title-card__link--mediadata:focus-visible .list-card__mediadata {
    color: #a32f23;
}

/* ---------- Object Detail Page ---------- */
.obj-page {
    padding-bottom: 4.5rem;
}

.obj-breadcrumb,
.obj-hero,
.obj-crossmedia,
.obj-themeplan,
.obj-previews,
.obj-contacts,
.obj-not-found {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.obj-breadcrumb {
    padding-top: 0.3rem;
    margin-bottom: 2rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.obj-breadcrumb a {
    color: inherit;
}

.obj-breadcrumb__sep {
    color: #cfc8bd;
    margin: 0 0.35rem;
}

.obj-breadcrumb__current {
    color: var(--navy);
}

.obj-hero {
    display: grid;
    grid-template-columns: minmax(12rem, 15rem) 1fr;
    gap: 3rem;
    align-items: start;
    padding-top: 1.5rem;
}

.obj-hero__cover-frame {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 0.6rem;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 16px 32px rgba(18, 49, 78, 0.24);
    position: relative;
}

.obj-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    opacity: 0;
    transition: opacity 700ms ease;
}

.obj-hero__slide.is-active {
    opacity: 1;
}

/* Veranstaltungs-Objekte zeigen Querformat-Fotos statt Hochformat-Titelcovern:
   Rahmen 3:2 + object-fit cover, damit keine Verzerrung entsteht. */
.obj-hero--event {
    grid-template-columns: minmax(15rem, 24rem) 1fr;
}

.obj-hero--event .obj-hero__cover-frame {
    aspect-ratio: 3 / 2;
}

.obj-hero--event .obj-hero__slide {
    object-fit: cover;
}

.obj-hero__cover-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: 900;
    color: #728091;
}

.obj-hero__eyebrow {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 0.75rem;
}

.obj-hero__title {
    font-size: clamp(2rem, 4.8vw, 3.35rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 1.1rem;
}

.obj-hero__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-soft);
    font-weight: 600;
    max-width: 44rem;
    margin-bottom: 1.35rem;
}

.obj-hero__text p {
    margin: 0;
}

.obj-hero__text a {
    color: var(--navy);
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.14em;
    transition: color 0.2s ease;
}

.obj-hero__text a:hover,
.obj-hero__text a:focus-visible {
    color: var(--terra);
}

.obj-hero__text a:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.obj-hero__text p + p {
    margin-top: 0.55rem;
}

.obj-hero__text ul,
.obj-hero__text ol {
    margin: 0.5rem 0 0;
    padding-left: 1.15rem;
}

.obj-hero__text li + li {
    margin-top: 0.2rem;
}

.obj-hero__text ul br,
.obj-hero__text ol br {
    display: none;
}

.obj-hero__text--long {
    margin-top: 0.85rem;
}

.obj-hero__meta {
    margin-top: 3rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.obj-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #e8f0f8;
    color: var(--navy);
    padding: 0.42rem 0.8rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.obj-meta-text {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 700;
}

.obj-hero__actions {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.obj-hero__audience {
    margin: 0.9rem 0 0;
}

.obj-hero__social-wrap {
    margin-top: 3rem;
}

.obj-hero__social-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.obj-hero__social {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.obj-social-link {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.obj-social-link:hover,
.obj-social-link:focus-visible {
    color: var(--terra);
    border-color: #e0d6cb;
}

.obj-crossmedia,
.obj-themeplan,
.obj-contacts {
    padding-top: 4.75rem;
}

.obj-contacts {
    padding-bottom: 2.75rem;
}

.obj-section-head__eyebrow {
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 0.55rem;
}

.obj-section-head__title {
    font-size: clamp(1.6rem, 3.4vw, 2.45rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.obj-section-head__title--sm {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    margin-bottom: 0.9rem;
}

.obj-crossmedia__grid {
    margin-top: 1.4rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.obj-channel-card {
    background: var(--cream-2);
    border-radius: 0.85rem;
    padding: 1.15rem;
}

.obj-channel-card__title {
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.obj-channel-card__text {
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--text-soft);
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.obj-channel-card__url {
    font-size: 0.76rem;
    line-height: 1.35;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 0.6rem;
    word-break: break-word;
}

.obj-channel-card__link {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--terra);
}

.obj-channel-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.obj-channel-card__list li + li {
    margin-top: 0.1rem;
}

.obj-channel-card__list .obj-channel-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    line-height: 1.2;
}

.obj-channel-card__list .obj-channel-card__link::after {
    content: '→';
    font-weight: 800;
}

.obj-channel-card__muted {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
}


.obj-themeplan-card {
    padding-bottom: 1rem;
}

.obj-themeplan-table-wrap {
    margin-top: 0.8rem;
    overflow-x: auto;
}

.obj-themeplan-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 44rem;
}

.obj-themeplan-table th,
.obj-themeplan-table td {
    text-align: left;
    vertical-align: top;
    padding: 0.65rem 0.45rem;
    border-bottom: 1px solid var(--line);
}

.obj-themeplan-table th {
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    white-space: nowrap;
}

.obj-themeplan-table td {
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--text-soft);
    font-weight: 600;
}

.obj-themeplan-table td:first-child {
    white-space: nowrap;
    color: var(--navy);
    font-weight: 700;
}

.obj-themeplan-row {
    outline: none;
}

.obj-themeplan-row:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(192, 57, 43, 0.35);
}

.obj-themeplan-issue-mobile {
    display: none;
}

.obj-themeplan-date-mobile {
    display: none;
}

.obj-themeplan-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1250;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.obj-themeplan-lightbox.is-open {
    display: flex;
}

.obj-themeplan-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 31, 0.82);
}

.obj-themeplan-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 34rem);
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.obj-themeplan-lightbox__close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    border: 1px solid rgba(18, 49, 78, 0.2);
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.obj-themeplan-lightbox__body {
    padding: 1rem 0.9rem 0.9rem;
}

.obj-themeplan-lightbox__title {
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.75rem;
    padding-right: 2.3rem;
}

.obj-themeplan-lightbox__list {
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.obj-themeplan-lightbox__item {
    margin: 0;
}

.obj-themeplan-lightbox__label {
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.12rem;
}

.obj-themeplan-lightbox__value {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.4;
    color: var(--navy);
    font-weight: 700;
    white-space: pre-line;
}

.obj-themeplan-lightbox__value[data-themeplan-lightbox-value="topics"] {
    font-weight: 600;
}

.obj-themeplan-lightbox__value[data-themeplan-lightbox-value="topics"] strong {
    font-weight: 800;
}

.obj-empty--in-card {
    margin-top: 0.6rem;
}

.obj-placeholder-card {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 0.9rem;
    padding: 1.15rem;
}

.obj-placeholder-card__eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.obj-placeholder-card__title {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.obj-placeholder-card__text {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-soft);
    font-weight: 600;
}

.obj-relevance-panels {
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 0.85rem;
}

.obj-relevance-panels > :only-child {
    grid-column: 1 / -1;
}

.obj-relevance-panel {
    border-radius: 0.85rem;
    padding: 1rem 1rem 0.95rem;
}

.obj-relevance-panel--a {
    background: rgba(192, 57, 43, 0.09);
}

.obj-relevance-panel--b {
    background: rgba(18, 49, 78, 0.08);
}

.obj-relevance-panel .obj-channel-card__title {
    margin-bottom: 0.45rem;
}

.obj-relevance-panel .obj-placeholder-card__text {
    color: var(--navy);
    column-count: 1;
}

.obj-relevance-panel .obj-placeholder-card__text > * {
    break-inside: avoid;
}

.obj-relevance-panel .obj-placeholder-card__text p {
    margin: 0;
}

.obj-relevance-panel .obj-placeholder-card__text p + p {
    margin-top: 0.5rem;
}

.obj-relevance-panel .obj-placeholder-card__text ul,
.obj-relevance-panel .obj-placeholder-card__text ol {
    margin: 0.5rem 0 0;
    margin-left: 0;
    padding-left: 1.25rem;
    list-style-position: outside;
}

.obj-relevance-panel .obj-placeholder-card__text li + li {
    margin-top: 0.2rem;
}

.obj-relevance-panel .obj-placeholder-card__text ul br,
.obj-relevance-panel .obj-placeholder-card__text ol br {
    display: none;
}

.obj-hero__previews {
    margin-top: 3rem;
    margin-bottom: 2rem;
    display: grid;
    gap: 0.7rem;
}

.obj-preview-card__frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 0.5rem;
    overflow: hidden;
}

.obj-preview-card__frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.obj-preview-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.obj-preview-lightbox.is-open {
    display: flex;
}

.obj-preview-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 31, 0.82);
}

.obj-preview-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(82vw, 56rem);
    max-height: 82vh;
    background: #fff;
    border-radius: 0.7rem;
    overflow: hidden;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.35);
    padding-top: 2.35rem;
}

.obj-preview-lightbox__close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    border: 1px solid rgba(18, 49, 78, 0.2);
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy);
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.obj-preview-lightbox__close:hover,
.obj-preview-lightbox__close:focus-visible {
    color: var(--terra);
    border-color: rgba(192, 57, 43, 0.35);
}

.obj-preview-lightbox__media {
    background: #fff;
    max-height: calc(82vh - 5.95rem);
    display: grid;
    place-items: center;
    padding-inline: clamp(0.9rem, 2.6vw, 2.2rem);
}

.obj-preview-lightbox__media img {
    width: 100%;
    height: auto;
    max-height: calc(82vh - 5.95rem);
    object-fit: contain;
    display: block;
}

.obj-preview-lightbox__caption {
    border-top: 1px solid var(--line);
    padding: 0.6rem 0.9rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--muted);
}

.obj-empty {
    margin-top: 1rem;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 0.75rem;
    padding: 0.9rem 1rem;
    font-weight: 700;
    color: var(--text-soft);
}

.obj-contact-group + .obj-contact-group {
    margin-top: 1.5rem;
}

.obj-contact-group__title {
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-accent);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.obj-contact-group__grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.obj-contact-card {
    position: relative;
    background: var(--cream-2);
    border-radius: 0.8rem;
    padding: 1rem;
}

.obj-contact-card--with-photo {
    padding-right: 5rem;
}

.obj-contact-card__photo {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.obj-contact-card__name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.obj-contact-card__role {
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.obj-contact-card__address {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-soft);
    margin-bottom: 0.45rem;
}

.obj-contact-card__line {
    font-size: 0.82rem;
    color: var(--navy);
    line-height: 1.45;
}

.obj-contact-card__line + .obj-contact-card__line {
    margin-top: 0.15rem;
}

.obj-contact-card__label {
    font-weight: 800;
}

.obj-not-found {
    padding-top: 4rem;
}

.obj-not-found__title {
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.obj-not-found__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-soft);
    max-width: 42rem;
    margin-bottom: 1.1rem;
}

/* ---------- Contact Page ---------- */
.contact-page__wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 4.5rem 2.5rem 4rem;
}

.contact-page__head {
    margin-bottom: 1.8rem;
}

.contact-page__title {
    font-size: 2.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: var(--navy);
    line-height: 1.02;
    margin-bottom: 0.75rem;
}

.contact-page__intro {
    max-width: 46rem;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.55;
    color: var(--text-soft);
}

.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 12px 24px rgba(18, 49, 78, 0.06);
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-form__grid--single {
    grid-template-columns: 1fr;
}

.contact-form.is-context-hidden .contact-form__grid--single {
    margin-bottom: 1rem;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-field--wide {
    grid-column: 1 / -1;
}

.contact-field label {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.contact-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 999px;
    background: var(--terra);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid #d8d2c7;
    border-radius: 0.6rem;
    background: #fff;
    color: var(--navy);
    font: inherit;
    font-size: 1rem;
    padding: 0.75rem 0.85rem;
}

.contact-field textarea {
    resize: vertical;
    min-height: 7rem;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: 2px solid rgba(192, 57, 43, 0.2);
    border-color: var(--terra);
}

.contact-context {
    margin: 1.2rem 0 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #efe9e0;
    background: #fbf8f4;
}

.contact-context__hint {
    font-size: 0.92rem;
    color: var(--text-soft);
    margin-bottom: 0.75rem;
}

.contact-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.request-product,
.request-success {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.3rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: #fff;
}

.request-success {
    margin-bottom: 0;
    border-color: rgba(52, 117, 78, 0.28);
    background: #f4fbf6;
}

.request-product__cover {
    width: clamp(4rem, 16vw, 6.5rem);
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.35rem;
    box-shadow: 0 10px 22px rgba(18, 49, 78, 0.16);
    flex: 0 0 auto;
}

.request-product__body,
.request-success__body {
    min-width: 0;
}

.request-success__body > p:last-child {
    margin-top: 0.65rem;
    font-weight: 700;
    line-height: 1.55;
    color: var(--text-soft);
}

.request-product__eyebrow {
    margin-bottom: 0.35rem;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terra);
}

.request-product__name {
    margin: 0;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    color: var(--navy);
}

.request-product__meta {
    margin-top: 0.55rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--muted);
}

@media (max-width: 520px) {
    .request-product,
    .request-success {
        align-items: flex-start;
    }
}

.request-notice {
    margin-bottom: 1.3rem;
}

.request-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--text-soft);
}

.request-checkbox input {
    width: auto;
    margin-top: 0.2rem;
}



.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-alert {
    border-radius: 0.75rem;
    border: 1px solid transparent;
    padding: 0.95rem 1rem;
    margin-bottom: 1rem;
}

.contact-alert h2 {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0.35rem;
}

.contact-alert p,
.contact-alert li {
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-alert ul {
    margin: 0.5rem 0 0;
    padding-left: 1.15rem;
}

.contact-alert--success {
    background: #eef8ef;
    border-color: #c6e7c8;
    color: #1f5f2a;
}

.contact-alert--error {
    background: #fff2f0;
    border-color: #f2c2bc;
    color: #7f2217;
}

.contact-form__required {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
}

/* ---------- Legal Pages ---------- */
.legal-page__wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 4.5rem 2.5rem 4rem;
}

.legal-page__head {
    margin-bottom: 2rem;
}

.legal-page__eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 0.75rem;
}

.legal-page__title {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--navy);
}

.legal-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 12px 24px rgba(18, 49, 78, 0.06);
}

.legal-card + .legal-card {
    margin-top: 1.5rem;
}

.legal-section + .legal-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.legal-section__title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 0.55rem;
    color: var(--navy);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-soft);
}

.legal-section p + p {
    margin-top: 0.15rem;
}

.legal-section__sub {
    margin-top: 1.1rem;
    margin-bottom: 0.45rem;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--navy);
}

.legal-section ul {
    margin: 0.4rem 0 0;
    padding-left: 1.2rem;
}

.legal-section li {
    margin-top: 0.35rem;
    color: var(--text-soft);
    line-height: 1.55;
}

.legal-section a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page__updated {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--muted);
}

/* ---------- About Page / Team Bubbles ---------- */
.about-page__wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 4.5rem 2.5rem 4rem;
}

.about-page__head {
    margin-bottom: 2rem;
}

.about-page__eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 0.75rem;
}

.about-page__title {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--navy);
}

.about-page__layout {
    display: grid;
    grid-template-columns: 18rem 1fr;
    gap: 3rem;
    align-items: start;
}

.about-page__covers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 0.8rem;
}

.about-cover {
    display: block;
    text-decoration: none;
}

.about-cover__img {
    display: block;
    width: var(--about-cover-width, 86px);
    height: var(--about-cover-height, 113px);
    object-fit: fill;
    border-radius: 0.35rem;
    background: var(--paper);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 10px 22px rgba(18, 49, 78, 0.18);
}

.about-page__text {
    max-width: 46rem;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--text-soft);
}

.about-page__text p + p {
    margin-top: 1rem;
}

.team-bubbles {
    margin-top: 2.5rem;
}

.team-bubbles__head {
    text-align: center;
    margin-bottom: 2rem;
}

.team-bubbles__eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-accent);
    margin-bottom: 0.6rem;
}

.team-bubbles__title {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--navy);
}

.team-bubbles__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.team-bubbles__bubble {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    object-fit: cover;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--navy-dark);
}

.footer__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 34px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__brand .logo__squares span {
    background: var(--terra-light);
    width: 11px;
    height: 11px;
}

.footer__addr {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 26px;
}

.footer__links a {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.footer__links a:hover {
    color: #fff;
}

.footer__addr--mobile {
    display: none;
}

/* ---------- Responsive ---------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .btn,
    .title-card,
    .rotator__frame img,
    .events-panel__slide {
        transition: none;
    }

    .ticker__track {
        animation: none;
    }
}

@media (max-width: 900px) {
    .nav,
    .hero,
    .section-head,
    .cover-grid,
    .events-wrap,
    .compact-objects,
    .special-wrap,
    .usp,
    .cta__inner,
    .footer__inner,
    .legal-page__wrap,
    .contact-page__wrap,
    .list-page__wrap,
    .about-page__wrap,
    .obj-breadcrumb,
    .obj-hero,
    .obj-crossmedia,
    .obj-themeplan,
    .obj-previews,
    .obj-contacts,
    .obj-not-found {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav__links {
        display: none;
    }

    .nav__links.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        background: var(--cream);
        border-radius: 0.75rem;
        padding: 1rem;
        gap: 0.85rem;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        z-index: 50;
    }

    .nav__actions .nav__lang {
        display: none;
    }

    .nav__burger {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2rem;
    }

    .cover-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 34px 24px;
    }

    .title-card {
        max-width: none;
        justify-self: stretch;
    }

    .hero__title {
        font-size: 52px;
    }

    .hero__media {
        height: auto;
        order: -1;
    }

    .hero__stats {
        justify-content: center;
        gap: 26px;
        padding-top: 2.4rem;
    }

    .section-head {
        justify-content: center;
    }

    .section-head__left {
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .stat__num {
        font-size: 32px;
    }

    .section-head__title {
        font-size: 32px;
    }

    .section-head__index {
        font-size: 60px;
    }

    .events-panel {
        grid-template-columns: 1fr;
    }

    .events-panel__body {
        padding: 2rem;
        padding-top: 4.75rem;
    }

    .events-panel__title {
        font-size: 2.1rem;
    }

    .events-panel__logo {
        top: 1.5rem;
        right: 1.5rem;
        max-width: 150px;
        max-height: 44px;
    }

    .compact-objects__row {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .special {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .special__title {
        white-space: normal;
    }

    .usp {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .usp__item {
        border-top: 1px solid var(--line);
        padding: 26px 0;
    }

    .usp__item:first-child {
        border-top: 2px solid var(--navy);
    }

    .cta__title {
        font-size: 32px;
    }

    .legal-page__title,
    .contact-page__title,
    .list-page__title,
    .about-page__title {
        font-size: 2rem;
    }

    .legal-card,
    .contact-card {
        padding: 1.4rem;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .obj-hero {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }

    .about-page__layout {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }

    .section-head,
    .events-wrap,
    .special-wrap,
    .usp {
        padding-top: 3.75rem;
    }

    .cta {
        margin-top: 3.75rem;
    }

    .cta__inner {
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }

    .obj-crossmedia,
    .obj-themeplan,
    .obj-contacts {
        padding-top: 3.75rem;
    }

    .contact-page__wrap,
    .legal-page__wrap,
    .about-page__wrap {
        padding-top: 3.75rem;
        padding-bottom: 3rem;
    }

    .obj-hero__cover {
        width: 100%;
        max-width: 13.75rem;
        margin-left: auto;
        margin-right: auto;
    }

    .obj-crossmedia__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .nav {
        padding-top: 1rem;
        padding-bottom: 1rem;
        gap: 0.6rem;
    }

    .footer__inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.9rem;
    }

    .footer__links {
        width: 100%;
        justify-content: center;
    }

    .footer__addr--desktop {
        display: none;
    }

    .footer__addr--mobile {
        display: inline;
    }

    .logo__word {
        font-size: 0.9rem;
    }

    .nav__cta {
        font-size: 0.65rem;
        padding: 0.55rem 0.75rem;
    }

    .nav__burger {
        font-size: 1.5rem;
    }

    .hero__title {
        font-size: 2.25rem;
        line-height: 0.95;
    }

    .section-head__eyebrow-desktop {
        display: none;
    }

    .section-head__eyebrow-mobile {
        display: inline;
    }

    .hero__lead {
        font-size: 1rem;
        margin-bottom: 1.4rem;
    }

    .hero__actions {
        width: 100%;
        display: grid;
        gap: 0.55rem;
        margin-bottom: 0.45rem;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__stats {
        gap: 1.1rem;
        padding-top: 1.8rem;
    }

    .section-head__left {
        gap: 0.7rem;
    }

    .stat--events,
    .stat--websites,
    .stat--newsletters {
        display: none;
    }

    .events-panel__title {
        font-size: 1.75rem;
    }

    .cover-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 22px;
    }

    .compact-objects__list {
        gap: 0.1rem 0.2rem;
    }

    .compact-objects__item:not(:last-child)::after {
        margin-left: 0.25rem;
    }

    .special__grid {
        grid-template-columns: 1fr;
    }

    .obj-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .obj-crossmedia__grid {
        grid-template-columns: 1fr;
    }

    .obj-hero__previews {
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
        justify-content: center;
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .obj-themeplan-table-wrap {
        overflow-x: visible;
    }

    .obj-themeplan-table {
        min-width: 0;
    }

    .obj-themeplan-table thead {
        display: none;
    }

    .obj-themeplan-table tbody tr {
        display: grid;
        grid-template-columns: 4.25rem 1fr;
        gap: 0.35rem 0.65rem;
        align-items: start;
        border-bottom: 1px solid var(--line);
        padding: 0.45rem 0;
        cursor: pointer;
    }

    .obj-themeplan-table td {
        border-bottom: 0;
        padding: 0;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .obj-themeplan-table td:first-child {
        white-space: nowrap;
        font-size: 0.74rem;
    }

    .obj-themeplan-table td:nth-child(2),
    .obj-themeplan-table td:nth-child(3) {
        display: none;
    }

    .obj-themeplan-issue-desktop,
    .obj-themeplan-date-desktop {
        display: none;
    }

    .obj-themeplan-issue-mobile,
    .obj-themeplan-date-mobile {
        display: inline;
    }

    .rotator__frame {
        width: 14.5rem;
        height: 19.6rem;
    }

    .legal-page__title,
    .contact-page__title,
    .list-page__title,
    .about-page__title {
        font-size: 1.65rem;
    }

    .legal-section p,
    .contact-page__intro,
    .list-page__intro,
    .about-page__text {
        font-size: 0.95rem;
    }
}
