/*
 * Error band — branded 404 (node 2273:4870) + age-gate blocked notice (same visual language).
 * Full-bleed --ryski-raudona band between header and footer; huge bold-italic display type;
 * dark decorative shapes cropped inside the band on the right. Content on the 1140px container
 * (x 294→1434); Figma positions: "404" top 178px, message top 401px, deco top 226px / left 641px.
 * Mobile 404 not drawn — type scales down and the deco drops.
 */
.pv-error-band {
    position: relative;
    overflow: hidden;
    min-height: 659px;
    padding: 178px 0 120px; /* Figma "404" sits 178px below the band top */
    background: var(--ryski-raudona);
    color: var(--balta);
}

.pv-error-band__deco {
    position: absolute;
    top: 226px;
    left: 50%;
    margin-left: 71px; /* Figma deco left edge band-x 934.86 → band-center 864 + 70.86px */
    pointer-events: none;
}

.pv-error-band .container {
    position: relative; /* content above the deco shapes */
}

.pv-error-band__code {
    font-size: clamp(128px, 14.8vw, 256px);
    line-height: 1;
    font-style: italic;
    font-weight: 700;
    letter-spacing: .05em;
}

.pv-error-band__msg {
    max-width: 504px;
    margin-top: var(--space-5);
    text-wrap: balance; /* Figma break "ATSIPRAŠOME, / PUSLAPIS NERASTAS!" — Inter wraps late without it */
    font-size: clamp(28px, 2.3vw, 40px);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.pv-error-band__msg em {
    font-style: italic;
    font-weight: 700;
}

.pv-error-band__lead {
    max-width: 640px;
    margin-top: var(--space-4);
}

.pv-error-band .btn {
    margin-top: var(--space-6);
}

@media (max-width: 1180px) {
    .pv-error-band__deco {
        left: auto;
        right: 4%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .pv-error-band {
        min-height: 480px;
        padding: 80px 0;
    }

    .pv-error-band__deco {
        display: none;
    }
}

/* Age-gate refusal recovery. Deliberately quiet — a plain underlined link, well under the exit CTA,
   so it reads as a correction for a mis-click and never as a second way in. 44px min-height keeps it
   tappable on a phone without giving it button weight. */
.pv-error-band__correct {
    margin-top: var(--space-4);
}

.pv-error-band__correct button {
    min-height: 44px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--sub);
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
}
