/* Extracted from cage-quests-location.html */
/* 1. HERO — Location
   ══════════════════════════════════════════════════ */
.cq-loc-hero {
    position: relative;
    z-index: 10;
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: calc(var(--header-height) + 3rem) clamp(1.5rem, 3vw, 3rem) 3rem;
    background: var(--black);
    overflow: hidden;
}

.cq-loc-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Fallback wenn Bild nicht lädt */
    background-color: #1a1510;
}

.cq-loc-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 15%,
            rgba(0, 0, 0, 0.2) 30%,
            rgba(0, 0, 0, 0.3) 60%,
            rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(135deg,
            rgba(178, 148, 116, 0.12) 0%,
            rgba(178, 148, 116, 0.03) 40%,
            transparent 70%);
}

/* ── SEO Intro Block ───────────────────────────── */
.cq-loc-intro {
    position: relative;
    z-index: 10;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 3rem);
    background: var(--surface);
    border-bottom: 1px solid var(--glass-border);
}

.cq-loc-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.cq-loc-intro-text {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
}

.cq-loc-intro-text p {
    margin-bottom: 1rem;
}

.cq-loc-intro-text p:last-child {
    margin-bottom: 0;
}

.cq-loc-intro-text strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.cq-loc-intro-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cq-loc-highlight {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s var(--ease);
}

.cq-loc-highlight:hover {
    border-color: rgba(178, 148, 116, 0.35);
    transform: translateY(-2px);
}

.cq-loc-highlight-icon {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    opacity: 0.8;
}

.cq-loc-highlight-title {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.3rem;
}

.cq-loc-highlight-desc {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cq-loc-intro-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cq-loc-intro-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .cq-loc-hero-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    .cq-loc-hero-stat {
        padding: 0.7rem 0.8rem;
    }
    .cq-loc-hero-stat-value {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cq-loc-intro-highlights {
        grid-template-columns: 1fr;
    }
}

.cq-loc-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.cq-loc-hero-breadcrumb {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.cq-loc-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.cq-loc-hero-breadcrumb a:hover {
    color: var(--gold-light);
}

.cq-loc-hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0.5rem;
}

.cq-loc-hero-city {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 100;
    letter-spacing: clamp(0.3rem, 1.5vw, 1.5rem);
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2), 0 0 60px rgba(178, 148, 116, 0.15);
    margin-bottom: 0.8rem;
}

/* SEO-Eyebrow: "Escape Room" als kleine Vorzeile im H1 — bleibt im H1-Tag */
.cq-loc-hero-eyebrow {
    display: block;
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.5);
    text-shadow: none;
    margin-bottom: 0.4rem;
}

.cq-loc-hero-sub {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.cq-loc-hero-sub strong {
    color: var(--gold-light);
    font-weight: 400;
}

.cq-loc-hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cq-loc-hero-stat {
    display: flex;
    flex-direction: column;
    padding: 0.8rem 1.2rem;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.cq-loc-hero-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cq-loc-hero-stat-value {
    font-size: 1.5rem;
    font-weight: 100;
    color: var(--gold-light);
}

.cq-loc-hero-stat-label {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Location Switcher ─────────────────────────── */
.cq-loc-switcher {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: fit-content;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cq-loc-switcher-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.8rem;
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.35s var(--ease);
    position: relative;
    white-space: nowrap;
}

.cq-loc-switcher-tab:last-child {
    border-right: none;
}

.cq-loc-switcher-tab:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.04);
}

.cq-loc-switcher-tab.active {
    color: var(--gold-light);
    background: rgba(178, 148, 116, 0.1);
    font-weight: 500;
}

.cq-loc-switcher-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
}

.cq-loc-switcher-count {
    font-size: 0.55rem;
    font-weight: 300;
    opacity: 0.5;
}

.cq-loc-switcher-tab.active .cq-loc-switcher-count {
    opacity: 0.7;
    color: var(--gold-light);
}

.cq-loc-switcher-badge {
    font-size: 0.45rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    padding: 2px 6px;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.25);
    color: var(--warn);
    line-height: 1.2;
}

@media (max-width: 480px) {
    .cq-loc-switcher {
        width: 100%;
    }

    .cq-loc-switcher-tab {
        flex: 1;
        justify-content: center;
        padding: 0.7rem 0.8rem;
        font-size: 0.6rem;
        letter-spacing: 0.12em;
    }

    .cq-loc-switcher-count {
        display: none;
    }

    .cq-loc-switcher-badge {
        font-size: 0.4rem;
        padding: 1px 4px;
    }
}

/* ══════════════════════════════════════════════════
   2. ROOMS GRID with FILTER
   ══════════════════════════════════════════════════ */
.cq-rooms-filter {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: fit-content;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cq-rooms-filter-btn {
    padding: 0.7rem 1.8rem;
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
}

.cq-rooms-filter-btn:last-child {
    border-right: none;
}

.cq-rooms-filter-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.cq-rooms-filter-btn.active {
    color: var(--gold-light);
    background: rgba(178, 148, 116, 0.1);
}

.cq-rooms-filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: var(--gold);
}

.cq-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Genau 5 Räume (z. B. Karlsruhe): 3+2-Layout statt 3+2-mit-Lücke
   — das letzte Item würde sonst auf Desktop in der zweiten Reihe linksbündig stehen
     und drei Slot-Lücken rechts daneben lassen. */
@media (min-width: 1024px) {
    .cq-rooms-grid:has(> .cq-room-card:nth-child(5):last-child) {
        grid-template-columns: repeat(3, minmax(280px, 1fr));
        max-width: 1200px;
        margin-inline: auto;
    }
}

/* Room Card — LARGE style for location page */
.cq-room-card {
    position: relative;
    background: var(--elevated);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.4s var(--ease);
}

.cq-room-card:hover {
    transform: translateY(-6px);
    border-color: rgba(178, 148, 116, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 60px rgba(178, 148, 116, 0.08);
}

.cq-room-card[data-hidden="true"] {
    display: none;
}

.cq-room-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: var(--elevated);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.cq-room-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}

.cq-room-card:hover .cq-room-card-img::after {
    background: linear-gradient(180deg, rgba(178, 148, 116, 0.03) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.cq-room-card-dur {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 3px 8px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.7);
}

.cq-room-card-premium {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 3px 8px;
    background: rgba(178, 148, 116, 0.15);
    border: 1px solid rgba(178, 148, 116, 0.3);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.cq-room-card-body {
    padding: 1.5rem;
}

.cq-room-card-genre {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.cq-room-card-name {
    font-size: 1.2rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}

.cq-room-card:hover .cq-room-card-name {
    color: var(--gold-light);
}

.cq-room-card-teaser {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cq-room-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.cq-room-card-meta-item {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
}

.cq-room-card-meta-item strong {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.cq-room-card-diff {
    display: flex;
    gap: 2px;
    align-items: center;
    margin-left: auto;
}

.cq-room-card-diff-bar {
    width: 14px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.cq-room-card-diff-bar.filled {
    background: var(--gold);
    opacity: 0.6;
}

@media (max-width: 700px) {
    .cq-rooms-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════
   3. LOCATION INFO + MAP
   ══════════════════════════════════════════════════ */
.cq-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cq-info-panel {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2rem;
}

.cq-info-panel-title {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.cq-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.cq-info-row:last-child {
    border-bottom: none;
}

.cq-info-icon {
    font-size: 1rem;
    flex-shrink: 0;
    opacity: 0.8;
}

.cq-info-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.cq-info-text strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.cq-map-embed {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 1px solid var(--glass-border);
    filter: grayscale(1) invert(0.92) brightness(0.7) contrast(1.1);
}

@media (max-width: 768px) {
    .cq-info-grid {
        grid-template-columns: 1fr;
    }

    .cq-map-embed {
        min-height: 280px;
    }
}


/* ══════════════════════════════════════════════════
   5. FAQ ACCORDION
   ══════════════════════════════════════════════════ */
.cq-faq-list {
    max-width: 800px;
}

.cq-faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.cq-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.3s;
    text-align: left;
}

.cq-faq-question:hover {
    color: var(--white);
}

.cq-faq-item.open .cq-faq-question {
    color: var(--gold);
}

.cq-faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 1rem;
}

.cq-faq-toggle::before,
.cq-faq-toggle::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: all 0.35s var(--ease);
}

.cq-faq-toggle::before {
    top: 50%;
    left: 4px;
    right: 4px;
    height: 1px;
    transform: translateY(-50%);
}

.cq-faq-toggle::after {
    left: 50%;
    top: 4px;
    bottom: 4px;
    width: 1px;
    transform: translateX(-50%);
}

.cq-faq-item.open .cq-faq-toggle::after {
    transform: translateX(-50%) scaleY(0);
}

.cq-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease);
}

.cq-faq-item.open .cq-faq-answer {
    max-height: 300px;
}

.cq-faq-answer-inner {
    padding: 0 0 1.5rem;
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* ══════════════════════════════════════════════════
   6. CTA BANNER
   ══════════════════════════════════════════════════ */
.cq-cta-section {
    position: relative;
    z-index: 10;
    padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 3vw, 3rem);
    text-align: center;
    background: var(--black);
}

.cq-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(178, 148, 116, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cq-cta-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 100;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.cq-cta-sub {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.1rem 3rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: 2px solid var(--gold);
    color: var(--black);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease);
    box-shadow: 0 5px 25px rgba(178, 148, 116, 0.3);
}

.cq-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cq-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 40px rgba(178, 148, 116, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.cq-cta-btn:hover::before {
    transform: translateX(100%);
}

.cq-cta-btn span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.cq-cta-btn:hover span {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ══════════════════════════════════════════════════
   EVENTS TEASER (compact)
   ══════════════════════════════════════════════════ */
.cq-event-teaser {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 3rem 2.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.cq-event-teaser:hover {
    border-color: rgba(178, 148, 116, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cq-event-teaser-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 100;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Marquee Ticker */
.cq-event-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.cq-event-marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: cqMarquee 30s linear infinite;
}

.cq-event-teaser:hover .cq-event-marquee-track {
    animation-play-state: paused;
}

@keyframes cqMarquee {
    0% {
        transform: translateX(0);
    }

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

.cq-event-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    transition: color 0.3s;
}

.cq-event-marquee-text {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s;
    padding: 0.4rem 0;
}

.cq-event-marquee-item:hover .cq-event-marquee-text {
    color: var(--gold-light);
}

.cq-event-marquee-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.4;
    margin: 0 1.5rem;
    flex-shrink: 0;
}

.cq-event-teaser-desc {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 500px;
}

.cq-event-teaser-divider {
    width: 40px;
    height: 1px;
    background: rgba(178, 148, 116, 0.3);
}

.cq-event-teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(178, 148, 116, 0.4);
    color: var(--white);
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.cq-event-teaser-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(178, 148, 116, 0.3), transparent);
    transition: left 0.6s ease;
}

.cq-event-teaser-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(178, 148, 116, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(178, 148, 116, 0.2);
}

.cq-event-teaser-link:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .cq-event-teaser {
        padding: 2rem 1.5rem;
    }

    .cq-event-marquee-text {
        font-size: 0.65rem;
    }

    .cq-event-marquee-dot {
        margin: 0 1rem;
    }
}

/* ══════════════════════════════════════════════════
   DESIGN-UPGRADE v2 — Standort-spezifisch
   ══════════════════════════════════════════════════ */

/* Section-Titel & Labels linksbündig (außer Hero & CTA) */
.cq-loc-hero ~ .cq-section .cq-section-label,
.cq-loc-hero ~ .cq-section .cq-section-title,
.cq-loc-hero ~ .cq-section .cq-section-subtitle {
    text-align: left;
}

/* Raum-Anzahl Badge im Sekundaer-Ton (siehe tokens.css) */
.cq-loc-stat-rooms .cq-loc-hero-stat-value {
    color: var(--accent);
}

/* ══════════════════════════════════════════════════
   FOOTER (compact inline)
   ══════════════════════════════════════════════════ */