/* ══════════════════════════════════════════════════════════
   Ophyr Pause-Seite CSS
   Premium-Design im Einklang mit dem Ophyr Design-System
   ══════════════════════════════════════════════════════════ */

/* Ensure the page loads immediately without 4s opacity delay from global style.css */
body.pause-page {
    opacity: 1 !important;
}

/* Weißes Einblende-Overlay für sofortige Anzeige und sanftes Ausblenden */
.pause-white-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 99999;
    pointer-events: none;
    animation: fadeOutWhite 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: opacity, visibility;
}

@keyframes fadeOutWhite {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.pause-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #1b1b1b 0%, #0d0d0d 100%);
}

.pause-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(13, 13, 13, 0.1) 0%, rgba(13, 13, 13, 0.65) 100%);
    z-index: 3;
    pointer-events: none;
}

.pause-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    filter: brightness(0.95) contrast(1.02);
    transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
                transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
    z-index: 1;
}

.pause-video.active {
    opacity: 1;
    transform: scale(1.02);
    filter: brightness(1.02) contrast(1.05) saturate(0.98);
    z-index: 2;
}

.pause-video.transitioning-out {
    opacity: 0;
    transform: scale(1.05);
    filter: brightness(1) contrast(1.08) saturate(1.02);
    z-index: 1;
}

.pause-page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    color: var(--white);
    font-family: var(--font-primary, 'Inter', sans-serif);
    text-align: center;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

/* Bottom Gold Logo */
.pause-bottom-logo {
    grid-row: 3;
    align-self: start;
    margin-top: clamp(4rem, 8vh, 7rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
    
    /* Absolute stability & anchor overrides */
    position: relative !important;
    z-index: 100 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    transition: none !important;
    animation: none !important;
}

/* Neutralize any parent/global reveal styles or overlays on the logo */
.pause-bottom-logo,
.pause-bottom-logo::after,
.pause-bottom-logo *::after,
.pause-bottom-logo *::before {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    content: none !important; /* Disables the solid black cover overlay */
}

.pause-gold-logo {
    width: clamp(182px, 26vw, 286px); /* Scaled 30% larger for desktop viewports */
    height: auto;
    opacity: 0.9 !important;
    transform: none !important;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.pause-gold-logo:hover {
    opacity: 1 !important;
    transform: scale(1.025) !important;
}

.pause-logo-subtext {
    font-family: var(--font-accent, 'Montserrat', sans-serif);
    font-weight: 300; /* Dünn */
    font-size: clamp(0.78rem, 1.95vw, 0.91rem); /* Scaled 30% larger for desktop balance */
    letter-spacing: 0.35em; /* Elegante weite Laufweite passend zum Premium-Branding */
    text-indent: 0.35em; /* Ausgleich für das letter-spacing am Ende */
    color: rgba(255, 255, 255, 0.7) !important; /* 70% weiß */
    text-transform: uppercase;
    line-height: 1.2;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Premium Blur Background for the Bottom Logo */
.pause-logo-blur-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%); /* Centered and slightly raised to align with the Ophyr letters */
    width: clamp(340px, 45vw, 510px);  /* Expanded to double the blur surface area (100% increase) */
    height: clamp(177px, 22.5vw, 262px); /* Expanded to double the blur surface area (100% increase) */
    z-index: -1;                       /* Positioned behind logo image and claim subtext */
    pointer-events: none;
    
    /* Elegant soft background tint combined with heavy backdrop blur */
    background: rgba(13, 13, 13, 0.12);
    backdrop-filter: blur(24px);       /* Exactly 60% more than the email tile's 15px */
    -webkit-backdrop-filter: blur(24px);
    
    /* Radial gradient mask to fade the blur effect smoothly at the edges (no hard box boundaries) */
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 20%, rgba(0, 0, 0, 0) 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 20%, rgba(0, 0, 0, 0) 75%);
}

/* Main Content & Glassmorphic Kachel */
.pause-main-content {
    flex-grow: 1;
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    align-items: center;
    justify-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: clamp(2rem, 5vw, 4.5rem) 1.5rem;
}

.pause-email-tile {
    grid-row: 2;
    align-self: center;
    background: rgba(13, 13, 13, 0.72);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(196, 161, 105, 0.16);
    padding: clamp(1.75rem, 5vw, 2.5rem);
    max-width: 38rem;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
    margin: 0 auto;
    transition: border-color 0.4s ease;
    
    /* Layout stability: prevent container collapse when switching to success state */
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: clamp(240px, 30vh, 265px);
}

@media (max-width: 48rem) {
    .pause-email-tile {
        min-height: clamp(290px, 38vh, 320px);
    }
}

.pause-email-tile:hover {
    border-color: rgba(196, 161, 105, 0.28);
}

.pause-overtitle {
    font-family: var(--font-accent, 'Montserrat', sans-serif);
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.pause-title {
    grid-row: 1;
    align-self: end;
    font-family: 'Montserrat', var(--font-accent, sans-serif);
    font-size: clamp(2.16rem, 6.48vw, 3.6rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-transform: none;
    margin: 0 0 clamp(2rem, 4vh, 3.5rem) 0;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: none;
}

@media (max-width: 48rem) {
    .pause-main-content {
        grid-template-rows: 0.5fr auto 1.5fr;
        padding-top: clamp(1rem, 2.5vw, 2.25rem);
    }
    .pause-title {
        text-align: left;
        width: 100%;
        max-width: 38rem;
        margin-left: auto;
        margin-right: auto;
    }
    .pause-form-text {
        text-align: left;
    }
    .pause-gold-logo {
        width: clamp(210px, 55vw, 240px); /* Logo vergrößern, damit es optisch mit der Breite des Claims übereinstimmt */
    }
    .pause-logo-subtext {
        font-size: clamp(0.55rem, 1.6vw, 0.65rem);
        letter-spacing: 0.38em; /* Elegante, perfekt abgestimmte Laufweite */
        text-indent: 0.38em;
    }
    .pause-logo-blur-container {
        /* Mobile-optimized sizing to match mobile logo dimensions, scaled to double the blur surface area */
        width: clamp(368px, 99vw, 424px);
        height: clamp(205px, 54vw, 248px);
        transform: translate(-50%, -52%);
    }

    /* Mobile optimization: remove high-overhead CSS filters and scale animations on mobile viewports to prevent GPU lag */
    .pause-video {
        filter: none !important;
        transform: none !important;
        transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
        will-change: opacity;
    }
    .pause-video.active {
        transform: none !important;
        filter: none !important;
    }
    .pause-video.transitioning-out {
        transform: none !important;
        filter: none !important;
    }
}

/* Sektion: Am Tisch der Veredelung */
.pause-briefing-title {
    font-family: var(--font-accent, 'Montserrat', sans-serif);
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    letter-spacing: 0.25em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin: 0 0 1.5rem 0;
    border-top: 1px solid rgba(196, 161, 105, 0.15);
    padding-top: 1.75rem;
    font-weight: 400;
}

.pause-briefing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.25rem;
    text-align: left;
}

@media (min-width: 48rem) {
    .pause-briefing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem;
    }
}

.pause-briefing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(196, 161, 105, 0.08);
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: border-color 0.4s ease, background 0.4s ease;
}

.pause-briefing-card:hover {
    border-color: rgba(196, 161, 105, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.pause-portrait {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(196, 161, 105, 0.08);
    border: 1px solid rgba(196, 161, 105, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.pause-briefing-card:hover .pause-portrait {
    border-color: var(--gold);
    background: rgba(196, 161, 105, 0.15);
}

.pause-portrait .initials {
    font-family: var(--font-accent, 'Montserrat', sans-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.05em;
}

.pause-info {
    display: flex;
    flex-direction: column;
}

.pause-info .role {
    font-family: var(--font-accent, 'Montserrat', sans-serif);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    color: var(--gold-light);
    display: block;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    font-weight: 300;
}

.pause-info .name {
    font-family: var(--font-accent, 'Montserrat', sans-serif);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
    color: var(--white);
}

.pause-info .statement {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* E-Mail Formular */
.pause-form-container {
    width: 100%;
}

.pause-form-text {
    font-family: var(--font-accent, 'Montserrat', sans-serif);
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    font-weight: 300;
    color: #ffffff;
    max-width: 32rem;
    margin: 0 auto 1.5rem auto;
    width: 100%;
    line-height: 1.6;
    letter-spacing: 0.02em;
    text-align: left;
}

.pause-form-email-text {
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.pause-form-email-text:hover {
    color: #ffffff;
    opacity: 0.8;
    text-decoration: none;
}


.pause-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 32rem;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 48rem) {
    .pause-form {
        flex-direction: row;
        gap: 0.5rem;
    }
}

.pause-input-group {
    flex-grow: 1;
    position: relative;
    margin-bottom: 1.25rem;
}

@media (min-width: 48rem) {
    .pause-input-group {
        margin-bottom: 0;
    }
}

.pause-input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 1.25rem;
    border: 1px solid rgba(196, 161, 105, 0.25);
    background: rgba(0, 0, 0, 0.4);
    font-family: var(--font-accent, 'Montserrat', sans-serif);
    font-size: 0.85rem;
    color: var(--white);
    border-radius: 0;
    outline: none;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.05em;
    height: 100%;
}

.pause-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 200;
}

@keyframes slowBlink {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.pause-custom-cursor {
    position: absolute;
    top: 50%;
    left: 1.25rem;
    transform: translateY(-50%);
    width: 2px;
    height: 1.15rem;
    background-color: var(--gold, #c4a169);
    pointer-events: none;
    animation: slowBlink 2.2s infinite ease-in-out;
    z-index: 3;
}

/* Verberge den Custom-Cursor, sobald Text im Eingabefeld steht */
.pause-input:not(:placeholder-shown) ~ .pause-custom-cursor {
    display: none;
}

.pause-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(196, 161, 105, 0.2);
}

.pause-input.is-invalid {
    border-color: var(--error, #b04c4c);
    border-left: 3px solid var(--error, #b04c4c);
}

.pause-error-message {
    font-family: var(--font-accent, 'Montserrat', sans-serif);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: var(--error, #b04c4c);
    text-align: left;
    margin-top: 0.35rem;
    display: none;
    position: absolute;
    left: 0;
    bottom: -1.25rem;
}

.pause-input.is-invalid + .pause-error-message {
    display: block;
}

.pause-button {
    font-family: var(--font-accent, 'Montserrat', sans-serif);
    background-color: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
    padding: 0.85rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 400;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pause-button:hover {
    background-color: transparent;
    color: var(--gold);
    border-color: var(--gold);
    letter-spacing: 0.22em;
    padding-left: calc(2rem + 0.07em);
    padding-right: calc(2rem - 0.07em);
}

.pause-button:active {
    transform: scale(0.98);
}

.pause-success-container {
    display: none;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    padding: 1.5rem 0;
}

.pause-success-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 1rem auto;
    color: var(--gold);
    display: block;
}

.pause-success-title {
    font-family: var(--font-accent, 'Montserrat', sans-serif);
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 0.5rem 0;
}

.pause-success-text {
    font-family: 'Montserrat', var(--font-accent, sans-serif);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* Footer */
.pause-footer {
    position: absolute;
    bottom: clamp(1rem, 3vh, 2rem);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-size: 0.65rem;
    font-family: var(--font-accent, 'Montserrat', sans-serif);
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    z-index: 10;
    text-align: center;
}

.pause-footer-divider {
    width: 2rem;
    height: 1px;
    background: rgba(196, 161, 105, 0.2);
    margin: 0 auto 1.25rem auto;
}

.pause-footer-text {
    margin: 0;
}

/* Animations */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.is-shake {
    animation: shake 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Weiche für geringe Bildschirmhöhen */
@media (max-height: 720px) {
    .pause-page-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 1.5rem;
        min-height: 100vh;
    }
    
    .pause-main-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
        padding: 0;
        min-height: auto;
    }
    
    .pause-title {
        margin: 1.5rem 0 2rem 0;
        align-self: center;
    }
    
    .pause-email-tile {
        margin: 0 auto;
    }
    
    .pause-bottom-logo {
        margin: 2rem 0;
        align-self: center;
    }
    
    .pause-footer {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

/* ── Über die Goldfusion: dezentes Akkordeon (nativ, ohne JS) ── */
.pause-about {
    position: fixed;
    z-index: 40;
    max-width: 24rem;
}

/* Unten links, vertikal exakt auf Höhe des Zugang-Buttons (60-gate.css) */
.pause-about--mid {
    bottom: clamp(1rem, 3vw, 1.5rem);
    left: clamp(1.25rem, 2.5vw, 2rem);
}


.pause-about-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-accent, 'Montserrat', sans-serif);
    font-weight: 300;
    /* Identische Metrik wie .pause-gate-trigger (»Zugang«), damit beide Baselines exakt fluchten */
    font-size: 0.455rem;
    line-height: normal;
    letter-spacing: 0.3em;
    padding: 0.5rem 0;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    opacity: 0.5;
    transition: color 0.3s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.pause-about-trigger::-webkit-details-marker {
    display: none;
}

.pause-about-trigger::after {
    content: "";
    width: 0.42em;
    height: 0.42em;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-15%);
    transition: transform 0.3s ease;
}

.pause-about[open] .pause-about-trigger::after {
    transform: rotate(225deg) translateY(-15%);
}

.pause-about-trigger:hover,
.pause-about[open] .pause-about-trigger {
    color: rgba(255, 255, 255, 0.85);
}

/* Panel öffnet nach oben, damit der bottom-fixierte Trigger nicht verschoben wird */
.pause-about--mid .pause-about-panel {
    position: absolute;
    bottom: calc(100% + 0.9rem);
    left: 0;
    width: min(24rem, calc(100vw - 2.5rem));
    max-height: min(60vh, 34rem);
    overflow-y: auto;
}

.pause-about-panel {
    margin-top: 0.9rem;
    padding: 1.1rem 1.25rem;
    background: rgba(13, 13, 13, 0.72);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    animation: pauseAboutFade 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.pause-about-panel p {
    font-family: var(--font-accent, 'Montserrat', sans-serif);
    font-weight: 300;
    font-size: 8.4pt;
    line-height: 1.75;
    letter-spacing: 0.03em;
    color: rgba(0, 0, 0, 0.8);
    margin: 0 0 1.1em 0;
}

.pause-about-panel p:last-child {
    margin-bottom: 0;
}

@keyframes pauseAboutFade {
    from { opacity: 0; transform: translateY(-0.4rem); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ── Langes Inhalts-Panel: Typografie und Scrollverhalten ── */
.pause-about--mid .pause-about-panel {
    /* Perfektes Quadrat: Kantenlänge = Breite, begrenzt durch Viewport-Höhe */
    width: min(38rem, calc(100vw - 3rem), calc(100vh - 4rem));
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
    padding: 1.6rem 1.5rem;
}

.pause-about--mid {
    max-width: none;
}

/* Mobile: geöffnete Kachel exakt in der vertikalen und horizontalen Seitenmitte */
@media (max-width: 767px) {
    .pause-about--mid .pause-about-panel {
        position: fixed;
        top: 50%;
        left: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        /* Perfektes Quadrat: Kantenlänge = Breite, begrenzt durch Viewport-Höhe */
        width: min(calc(100vw - 2rem), calc(100vh - 4rem));
        aspect-ratio: 1 / 1;
        height: auto;
        max-height: none;
        overflow-y: auto;
        animation: none;
    }
}

.pause-about-panel h2,
.pause-about-panel h3,
.pause-about-panel h4 {
    font-family: var(--font-accent, 'Montserrat', sans-serif);
    color: rgba(0, 0, 0, 0.8);
    margin: 2em 0 0.9em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.5;
}

.pause-about-panel h2 {
    font-size: 0.665rem;
    font-weight: 500;
    margin-top: 0;
}

.pause-about-panel h3 {
    font-size: 0.574rem;
    font-weight: 400;
    padding-top: 1.2em;
}

.pause-about-panel h4 {
    font-size: 0.504rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.8);
    letter-spacing: 0.16em;
    margin-bottom: 0.6em;
}

.pause-about-panel strong {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
}

.pause-about-panel a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
}

.pause-about-panel::-webkit-scrollbar {
    width: 3px;
}

.pause-about-panel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 3px;
}

.pause-about-panel::-webkit-scrollbar-track {
    background: transparent;
}

/* Langes Panel: linksbündig lesen, Hintergrund dichter (Lesbarkeit) */
.pause-about--mid .pause-about-panel {
    text-align: left;
    background: rgba(10, 10, 10, 0.9);
}

.pause-about--mid .pause-about-panel h2,
.pause-about--mid .pause-about-panel h3,
.pause-about--mid .pause-about-panel h4 {
    text-align: left;
}


/* ── Einzige Kachel: unten links, exakt auf der Ebene von »Zugang« ── */
.pause-about--mid {
    top: auto;
    bottom: clamp(1rem, 3vw, 1.5rem);
    left: clamp(1rem, 3vw, 2rem);
    display: flex;
    flex-direction: column-reverse; /* Panel öffnet nach oben */
    align-items: flex-start;
    max-width: none;
}

.pause-about--mid .pause-about-panel {
    margin-top: 0;
    margin-bottom: 0.9rem;
    max-height: min(78vh, 46rem);
}

@media (max-width: 767px) {
    .pause-about--mid {
        display: flex;
        left: 1rem;
        bottom: 1rem;
    }
    .pause-about--mid .pause-about-panel {
        max-height: 70vh;
    }
}
