/* excire.com — product page sections (structure per live /excire-foto/).
 * Fine spacing to be pixel-tuned against live; colors/typography use the
 * measured tokens. */

/* Hero with photographic background.
   Uniform height across ALL product pages — matches the Office hero (703px). */
.phero {
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    min-height: 703px;
}
/* Product hero with an inline side image (e.g. excire-foto): centre content
   vertically so it fills the shared hero height without a top-heavy gap. */
.phero:has(.phero__inner .phero__media) { display: flex; align-items: center; }
.phero:has(.phero__inner .phero__media) .phero__inner { width: 100%; }
.phero::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.35); }
.phero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;   /* single column unless a hero image is present */
    gap: var(--space-6);
    align-items: center;
}
.phero__inner:has(.phero__media) { grid-template-columns: 1.1fr 1fr; }
/* Text-only hero: keep the headline readable, don't let it span full width. */
.phero__inner:not(:has(.phero__media)) .phero__text { max-width: 46ch; }
/* Hero heading + lead: sized like the other product pages / live (h1 62px,
   lead 34px). */
.phero__title { font-size: clamp(42px, 5vw, 62px); line-height: 1.05; color: #fff; margin-bottom: var(--space-3); }
.phero__subtitle { font-size: 34px; font-weight: 400; line-height: 1.18; color: #fff; margin: 0 0 var(--space-5); }
/* Search hero: subtitle sized like the Office hero subtitle */
.phero__subtitle--lg { font-size: clamp(28px, 3.6vw, 48px); line-height: 1.17; margin: 0 0 32px; }
/* Hero buttons stacked (one under the other), left-aligned — like live.
   align-items:flex-start keeps each button at its natural width/height so the
   single-line button's text stays vertically centred. */
.phero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-3); }
/* Grouped CTA buttons (side-by-side or stacked) share one width so they line up
   as a tidy block instead of each sizing to its own label. */
.phero__cta .btn,
.pintro__cta .btn,
.quotes__cta .btn,
.pcta__buttons .btn,
.frow__cta .btn,
.pstart__buttons .btn { width: 260px; max-width: 100%; }
.phero__media img { width: 100%; height: auto; }
/* Hero screenshot that links to the teaser video (opens the lightbox). */
.phero__videolink { position: relative; display: block; }
.phero__videolink img { display: block; }
.phero__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; opacity: .9; transition: opacity .15s ease; }
.phero__videolink:hover .phero__play { opacity: 1; }

/* Intro */
.pintro__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-7); align-items: center; }
.pintro__points { list-style: none; margin: var(--space-4) 0; padding: 0; }
.pintro__points li { padding-left: 28px; position: relative; margin-bottom: var(--space-2); }
.pintro__points li::before { content: "✓"; position: absolute; left: 0; color: var(--color-primary); font-weight: 700; }
.pintro__cta { display: flex; gap: var(--space-3); flex-wrap: wrap; }
/* TIPA award screenshots are transparent with a black badge — back them in
   white so they don't sit directly on the grey section. */
.pintro__media img { width: 100%; height: auto; background: #fff; }

/* Pillars */
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.pillar__title { font-size: 30px; margin-bottom: var(--space-2); }
.pillar__lead { font-weight: var(--fw-medium); color: var(--color-primary); margin-bottom: var(--space-2); }
.pillar__more strong { color: var(--color-link); }

/* Screenshot slider — fixed image box + caption height so nothing jumps */
.screens__slider { position: relative; max-width: 1000px; margin-inline: auto; }
/* Swipe: all slides sit in a flex track that slides horizontally (translateX). */
.screens__viewport { overflow: hidden; }
.screens__track { display: flex; transition: transform .5s ease; }
.screen { flex: 0 0 100%; margin: 0; }
/* Text animation: the active slide's caption fades/slides up on each change. */
.screen.is-active figcaption { animation: screenCaption .6s ease both; }
@keyframes screenCaption { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.screen__frame { aspect-ratio: 16 / 9; background: #f2f3f5; overflow: hidden; }
.screen__frame img { width: 100%; height: 100%; object-fit: contain; display: block; }
.screen figcaption { text-align: center; margin-top: var(--space-4); min-height: 78px; }
.screen figcaption h3 { font-size: 28px; margin-bottom: var(--space-2); color: #000; }
/* side navigation arrows */
.screens__nav {
    position: absolute; top: calc(50% - 39px); transform: translateY(-50%); z-index: 3;
    width: 52px; height: 52px; border: 0; border-radius: 50%;
    background: rgba(0,0,0,.5); color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: background .15s ease;
}
.screens__nav:hover { background: rgba(0,0,0,.78); }
.screens__nav--prev { left: -10px; }
.screens__nav--next { right: -10px; }
@media (max-width: 700px) {
    .screens__nav { width: 42px; height: 42px; top: calc(50% - 30px); }
    .screens__nav--prev { left: 4px; }
    .screens__nav--next { right: 4px; }
}

/* What's new — flip cards */
.whatsnew__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-5);
}
.flipcard { position: relative; min-height: 190px; perspective: 900px; cursor: pointer; }
.flipcard__front, .flipcard__back {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    padding: var(--space-4);
    backface-visibility: hidden;
    transition: transform .5s ease;
    background: #fff;
    box-shadow: var(--shadow);
    text-align: center;
}
.flipcard__front h3 { font-size: 24px; margin: 0; }
/* Flip around the X-axis (vertical flip), matching live. */
.flipcard__back { transform: rotateX(180deg); background: var(--color-primary); color: #fff; }
.flipcard__back p { margin: 0; font-size: 16px; }
.flipcard:hover .flipcard__front, .flipcard:focus .flipcard__front { transform: rotateX(180deg); }
.flipcard:hover .flipcard__back, .flipcard:focus .flipcard__back { transform: rotateX(0); }
@media (prefers-reduced-motion: reduce) {
    .flipcard__front, .flipcard__back { transition: none; }
    .screens__track { transition: none; }
    .screen.is-active figcaption { animation: none; }
}

/* CTA */
.pcta { background-size: cover; background-position: center; }
.pcta__body { max-width: 820px; margin-inline: auto; text-align: center; color: #fff; }
.pcta__body p { color: #fff; }
.pcta__buttons { display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; margin-top: var(--space-5); }

/* Testimonials — two quotes with portrait, CTA buttons below */
/* minmax(0,…) so long German compounds can't blow the track past the container */
.quotes__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-7); }
.quote { margin: 0; display: flex; align-items: flex-start; gap: var(--space-4); text-align: left; }
.quote__img { flex: 0 0 auto; width: 116px; height: 116px; border-radius: 50%; object-fit: cover; margin: 0; }
.quote__body { min-width: 0; }
.quote__text { margin: 0 0 var(--space-2); font-style: normal; color: #000; line-height: 1.55; }
.quote__by { font-weight: var(--fw-bold); color: #000; }
.quotes__cta { display: flex; justify-content: center; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-7); }
.quotes .btn { font-size: 20px; padding: 14px 28px; letter-spacing: 0.04em; text-decoration: none; }
@media (max-width: 760px) {
    .quotes__grid { grid-template-columns: minmax(0, 1fr); gap: var(--space-6); }
    /* Stack each quote: photo on top, then text, then name — all left-aligned. */
    .quote { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
    /* Flowing intro copy reads left-aligned on phones (not centered). */
    .pintro__lead { text-align: left; }
}

/* FAQ accordion styles are canonical in base.css (shared by every page). */

/* Responsive */
@media (max-width: 900px) {
    /* Stack the hero (text over image) on small screens — the :has() selector
       matches the desktop two-column rule's specificity so it actually wins,
       otherwise the product screenshot gets squeezed into a tiny column. */
    .phero__inner, .phero__inner:has(.phero__media), .pintro__grid { grid-template-columns: minmax(0, 1fr); }
    /* Text/heading a bit more inset than the (full-width) image. */
    .phero__text { padding-inline: var(--space-3); }
    .pillars__grid, .quotes__grid { grid-template-columns: minmax(0, 1fr); }
    .whatsnew__grid { grid-template-columns: 1fr 1fr; }
    /* let the hero flow with its content on small screens */
    .phero { min-height: 0; }
    .phero:has(.phero__inner .phero__media) { display: block; }
}
@media (max-width: 600px) {
    .whatsnew__grid { grid-template-columns: 1fr; }
    /* Keep the hero lead in proportion to the (clamped) title on phones. */
    .phero__subtitle { font-size: 24px; }
}

/* ---------- Alternating feature rows (excire-search & similar) ---------- */
.frow__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--space-7); align-items: center; }
.frow__grid--reverse .frow__body { order: 2; }
.frow__subtitle { font-size: 26px; font-weight: var(--fw-medium); color: var(--color-primary); margin: 0 0 var(--space-3); }
.frow__media img { width: 100%; height: auto; }
.frow__list { margin: var(--space-3) 0; padding-left: 1.2em; }
.frow__list li { margin-bottom: var(--space-2); }
.frow__cta { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-4); }

/* Lightroom band */
.lrcband__logos { display: flex; justify-content: center; align-items: center; gap: var(--space-6); margin-top: var(--space-5); }
.lrcband__logos img { height: 72px; width: auto; object-fit: contain; }

/* Getting-started cards */
.startcards__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-5); }
.startcard { display: block; background: #fff; box-shadow: var(--shadow); padding: var(--space-5); color: var(--color-text); text-align: center; }
.startcard:hover { color: var(--color-primary); }
.startcard__title { font-size: 24px; margin-bottom: var(--space-2); }

@media (max-width: 900px) {
    .frow__grid, .frow__grid--reverse { grid-template-columns: 1fr; }
    .frow__grid--reverse .frow__body { order: 0; }
    .startcards__grid { grid-template-columns: 1fr; }
    .lrcband__logos { flex-wrap: wrap; }
}

/* ================= Excire Search: Office-aligned build ================= */

/* Hero — same height/gradient as the Office landing; lead image overlaps the
   bottom edge. Scoped to the search hero (the one followed by a .phero__lead). */
.phero:has(+ .phero__lead) { padding-top: 70px; }
.phero:has(+ .phero__lead)::before {
    background: linear-gradient(90deg, rgba(10,12,14,.82) 0%, rgba(10,12,14,.45) 60%, rgba(10,12,14,.2) 100%);
}
.phero:has(+ .phero__lead) .phero__inner { padding-block: 15px 200px; }
/* Hero title/subtitle/copy exactly like the Office hero */
.phero:has(+ .phero__lead) .phero__title { font-size: clamp(42px, 5vw, 62px); line-height: 1.02; margin: 0 0 20px; }
.phero:has(+ .phero__lead) .phero__text { max-width: 100%; }
/* Hero CTAs stacked, left-aligned under the headings; test button a touch narrower */
.phero:has(+ .phero__lead) .phero__cta { flex-direction: column; align-items: flex-start; gap: 14px; }
.phero:has(+ .phero__lead) .phero__cta .btn { white-space: nowrap; }
.phero:has(+ .phero__lead) .phero__cta .btn:not(.btn--buy) { padding-inline: 18px; }

/* Centred lead image straddling the hero's bottom edge (office pattern) */
.phero__lead { position: relative; z-index: 2; margin-top: -180px; display: flex; justify-content: center; }
.phero__lead img { max-width: 760px; width: 100%; height: auto; }

/* Intro — same layout as the Office intro (centred heading, 2-col body) */
.pintro { padding-block: 70px var(--space-8); }
.pintro .section__title { text-align: center; max-width: 1080px; margin-inline: auto; }
.pintro__cols { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: start; }
.pintro__text p { margin: 0 0 var(--space-4); line-height: 1.7; }
.pintro__videolink { text-align: left; margin: var(--space-4) 0 0; }
.pintro__videolink .video-link { font-weight: 400; }
.pintro .pintro__cta { justify-content: center; margin-top: var(--space-6); }

/* Blue video links with play icon (open the clip in a new tab) */
.video-link { display: inline-flex; align-items: center; gap: 8px; color: var(--color-primary); font-weight: var(--fw-medium); text-decoration: none; }
.pintro .video-link, .frow .video-link { text-decoration: none; }
.video-link:hover { color: var(--color-primary-hover); text-decoration: underline; }
/* Video-links carry a play icon — never underline them, even inside .prose
   (which underlines plain links via base.css .prose a:not(.btn)). */
.prose a.video-link, .prose a.video-link:hover { text-decoration: none; }
.video-link__icon { flex: 0 0 auto; }

/* Single-column feature row (no image) — wider text */
.frow__grid--single { grid-template-columns: 1fr; }
.frow__grid--single .frow__body { max-width: 900px; }

/* h2 a touch lighter; h3 subtitle black + tighter to the h2 */
.frow .section__title,
.lrcband .section__title,
.pwhy .section__title,
.pstart .section__title,
.startcards .section__title { font-weight: 500; color: #000; }
.pintro .section__title { font-weight: 700; color: #000; }
.section__title--center { text-align: center; }
/* home.css (which defines --center for the lead) isn't loaded on product pages,
   so restate the centered lead here — e.g. the "Was ist neu" intro text. */
.section__lead--center { margin-inline: auto; text-align: center; }
.frow__subtitle { color: #000; font-weight: 500; font-size: 34px; line-height: 1.2; margin: 0 0 var(--space-2); }

/* Lightroom comparison table (logos in the header) */
.lrctable__wrap { max-width: 720px; margin: var(--space-6) auto 0; overflow-x: auto; }
.lrctable { width: 100%; border-collapse: collapse; background: #fff; }
.lrctable tbody tr:nth-child(even) { background: #f2f3f5; }
.lrctable th, .lrctable td { padding: 13px 18px; border-bottom: 1px solid #d5d8dc; text-align: center; }
.lrctable th:first-child, .lrctable td:first-child { text-align: left; font-weight: var(--fw-medium); }
.lrctable thead th { border-bottom: 2px solid #cfd3d9; padding: 16px 18px; }
.lrctable thead img { height: 30px; width: auto; display: block; margin: 0 auto; object-fit: contain; }
.lrctable__val { font-weight: 600; }

/* Why + Start now — single centred columns */
.pwhy__inner, .pstart__inner { max-width: 820px; margin-inline: auto; }
.pwhy__inner > .section__title, .pstart__inner > .section__title { text-align: center; }
.pstart__inner { text-align: center; }
.pstart__buttons { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; margin-top: var(--space-5); }

/* Getting started — full-bleed band + overlapping white box + inline icon links */
.startband { height: 380px; background-size: cover; background-position: center; }
.startcards > .container { padding-top: 0; }
.startcards__box {
    position: relative; z-index: 2; margin-top: -170px;
    max-width: 960px; margin-inline: auto;
    background: #fff; box-shadow: var(--shadow);
    padding: var(--space-7) var(--space-6);
}
.startlinks { display: flex; justify-content: center; gap: var(--space-8); flex-wrap: wrap; margin-top: var(--space-6); }
.startlink { display: flex; flex-direction: column; align-items: center; gap: 16px; color: #000; text-align: center; text-decoration: none; }
.startlink:hover { color: var(--color-primary); }
.startlink__icon { color: #000; display: block; }
.startlink__label { font-weight: 600; font-size: 22px; }

@media (max-width: 900px) {
    .phero:has(+ .phero__lead) .phero__inner { padding-block: 20px 140px; }
    .phero:has(+ .phero__lead) .phero__cta { flex-wrap: wrap; }
    .phero__lead { margin-top: -120px; }
    .pintro { padding-block: 56px var(--space-7); }
    .startband { height: 220px; }
    .startcards__box { margin-top: -120px; padding: var(--space-6) var(--space-4); }
    .startlinks { gap: var(--space-6); }
}
@media (max-width: 820px) {
    .pintro__cols { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Excire Search refinements (live-matched) ===== */

/* All CTA buttons match the Office button (the new design standard):
   Roboto uppercase, 20px, gradient, 0.04em tracking — for consistency. */
.phero .btn, .pintro .btn, .frow .btn, .pstart .btn {
    font-size: 20px;
    padding: 14px 28px;
    letter-spacing: 0.04em;
    text-decoration: none;
}
/* "Jetzt kaufen" with the live FastSpring price stacked above the label */
.btn--buy {
    display: inline-flex; flex-direction: column; align-items: center;
    line-height: 1.1; gap: 2px; padding-block: 10px;
}
.btn--buy .btn-buy__price { display: inline-flex; gap: 6px; align-items: baseline; font-size: 13px; font-weight: 400; }
.btn--buy .btn-buy__price s { opacity: .8; font-weight: 300; }
.btn--buy .btn-buy__main { font-size: 25px; font-weight: 400; line-height: 1.05; }
.btn--buy .btn-buy__sub { font-size: 10px; font-weight: 400; text-transform: none; }

/* Intro: tighter gap between the TIPA lead image and the h2 */
.pintro { padding-block: 40px var(--space-8); }
.pintro > .container { padding-top: 0; }

/* Suchwerkzeuge: each list item is a video-icon link */
.frow__videolist { list-style: none; margin: var(--space-3) 0; padding: 0; }
.frow__videolist li { margin-bottom: 12px; }
.frow__videolist .video-link { align-items: flex-start; line-height: 1.4; }
.frow__videolist .video-link__icon { margin-top: 2px; }

/* Comparison table: white section (grey removed), full content width */
.lrctable__wrap { max-width: none; }

/* Why + Start now: white background, left-aligned; keep the standard container
   width & edge padding so they line up with every other section. */
.pwhy__inner > .section__title, .pstart__inner > .section__title { text-align: left; }
.pstart__inner { text-align: left; }
.pstart__buttons { justify-content: flex-start; }

/* ===== Excire Foto: apply the shared button + heading system ===== */
/* Press / award logos: one centred row, clearly smaller (like live) */
.awards__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px; }
.awards__logos img { height: 130px; width: auto; object-fit: contain; }
@media (max-width: 900px) { .awards__logos img { height: 84px; } }
.pcta .btn { font-size: 20px; padding: 14px 28px; letter-spacing: 0.04em; text-decoration: none; }
.whatsnew { background: #ebebeb; }
.whatsnew .section__title { color: #000; font-weight: 500; }
.pcta .section__title { color: #fff; font-weight: 500; }
/* What's new: image band with an overlapping grey box (heading + flip cards) */
.whatsnew__band { height: 620px; background-size: cover; background-position: center; }
.whatsnew .container { padding-top: 0; }
.whatsnew__box { position: relative; z-index: 2; margin-top: -180px; background: #ebebeb; padding: var(--space-7); }
.whatsnew__box .section__title { color: #000; }
/* nine square, shadowed flip boxes lying on the grey panel */
.whatsnew .flipcard { aspect-ratio: 1 / 1; min-height: 0; }
.whatsnew .flipcard__front { background: rgba(243, 243, 243, 0.69); box-shadow: 0 4px 16px rgba(0,0,0,.14); flex-direction: column; gap: 14px; }
.whatsnew .flipcard__front h3 { font-size: 19px; }
.whatsnew .flipcard__icon { color: #000; line-height: 0; }
.whatsnew .flipcard__back { background: rgba(233, 233, 233, 0.75); color: #000; flex-direction: column; gap: 8px; }
.whatsnew .flipcard__back h3 { font-size: 19px; margin: 0; }
.whatsnew .flipcard__back p { font-size: 14px; line-height: 1.45; }
/* video link as a gradient button under the boxes */
.whatsnew__videobtn { text-align: center; margin-top: var(--space-6); }
.whatsnew .btn { font-size: 20px; padding: 14px 28px; letter-spacing: 0.04em; }
@media (max-width: 700px) {
    .whatsnew__band { height: 300px; }
    .whatsnew__box { margin-top: -110px; padding: var(--space-6) var(--space-4); }
}
/* 3 pillar boxes = video-link cards: black text + icons, bold "Mehr erfahren" */
.pillars__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.pillars__grid .pillar { display: block; background: rgba(243, 243, 243, 0.69); border-radius: 2px; box-shadow: var(--shadow); padding: var(--space-6) var(--space-5); text-align: left; color: #000; text-decoration: none; transition: box-shadow .15s ease, transform .15s ease; }
.pillars__grid .pillar:hover { color: #000; box-shadow: 0 8px 26px rgba(0,0,0,.12); transform: translateY(-3px); }
.pillar__icon { color: #000; display: block; margin-bottom: var(--space-3); line-height: 0; }
.pillar__icon svg { display: inline-block; }
.pillar__title { color: #000; }
.pillar__lead { color: #000; font-weight: 600; }
.pillar__text { color: #000; }
.pillar__more { margin: var(--space-3) 0 0; }
.pillar__more strong { color: #000; font-weight: 700; }
@media (max-width: 820px) { .pillars__grid { grid-template-columns: 1fr; } }
/* Foto intro: no image, centred single column with buttons (like live) */
/* Foto intro: equal top & bottom padding (search-specific offsets reset) */
.pintro:has(.pintro__center) { padding-block: 0; }
.pintro:has(.pintro__center) > .container { padding-block: var(--space-8); }
.pintro__center { text-align: center; }
.pintro__center .section__title { color: #000; }
.pintro__center .pintro__lead { line-height: 1.7; margin: 0 0 var(--space-4); }
.pintro__center .pintro__points { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); margin: var(--space-6) 0; }
.pintro__center .pintro__points li { padding: 0; margin: 0; font-weight: 700; text-align: center; }
.pintro__center .pintro__points li::before { content: none; }
@media (max-width: 600px) { .pintro__center .pintro__points { grid-template-columns: 1fr; gap: var(--space-3); } }
.pintro__center .pintro__cta { justify-content: center; margin-top: var(--space-5); }
.pintro__center .pintro__videolink { text-align: center; }
.pintro__videolink { margin-top: var(--space-4); }
.pintro__videolink .video-link { font-weight: 400; }
.whatsnew__videolink { text-align: center; margin-top: var(--space-4); }

/* Getting-started band clearly taller */
.startband { height: 620px; }
@media (max-width: 900px) {
    .startband { height: 300px; }
}

/* Video icon stays blue even when the label is black */
.video-link__icon circle { fill: var(--color-primary); }
/* Suchwerkzeuge: label black & not bold (icon stays blue) */
.frow__videolist .video-link { color: #000; font-weight: 400; }

/* Body copy black on the search page (no dark grey) */
.pintro, .frow, .lrcband, .pwhy, .pstart { color: #000; }

/* "In Aktion erleben" = gradient button with inverted play icon, centred under the image */
.frow__videocta { margin-top: var(--space-4); text-align: center; }
.btn--video { display: inline-flex; align-items: center; gap: 8px; color: #fff; }
.btn--video:hover { color: #fff; }
.btn--video .video-link__icon circle { fill: #fff; }
.btn--video .video-link__icon path { fill: var(--color-primary); }

/* Video lightbox */
.video-modal { position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.85); display: flex; align-items: center; justify-content: center; padding: 20px; }
.video-modal[hidden] { display: none; }
.video-modal__frame { position: relative; width: min(980px, 100%); aspect-ratio: 16 / 9; }
.video-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal__close { position: absolute; top: 12px; right: 22px; background: none; border: 0; color: #fff; font-size: 44px; line-height: 1; cursor: pointer; padding: 0; }
