/* ============================================================
   Winnita — foglio di stile completo (prefisso yuw-)
   Sistema editoriale misurabile: tono caldo neutro + un accento oliva.
   ============================================================ */

:root {
    /* superfici (temperatura calda unica, passo di chiarezza 3-6%) */
    --yuw-bg:         #f6f3ea;
    --yuw-surface:    #fffdf7;
    --yuw-surface-2:  #efeadd;
    --yuw-surface-3:  #e7e1d1;

    /* inchiostro */
    --yuw-ink:        #26251f;
    --yuw-ink-2:      #4f4d44;
    --yuw-ink-3:      #797665;

    /* accento (oliva) — uso puntuale < 10% schermo */
    --yuw-accent:     #5e6b2b;
    --yuw-accent-2:   #4c571f;
    --yuw-accent-ink: #fbfaf2;

    /* hairline da un'unica fonte di verità */
    --yuw-hairline:   color-mix(in oklab, var(--yuw-ink) 13%, transparent);
    --yuw-hairline-2: color-mix(in oklab, var(--yuw-ink) 7%, transparent);

    /* tipografia: scala modulare 1.25 */
    --yuw-step--1: 0.8rem;
    --yuw-step-0:  1rem;
    --yuw-step-1:  1.25rem;
    --yuw-step-2:  1.5625rem;
    --yuw-step-3:  1.9531rem;
    --yuw-step-4:  2.4414rem;
    --yuw-step-5:  3.0518rem;
    --yuw-step-6:  3.8147rem;

    --yuw-measure:  72ch;
    --yuw-leading:  1.6;
    --yuw-tracking: 0em;

    /* geometria */
    --yuw-r-sm: 8px;
    --yuw-r-md: 18px;

    /* ritmo verticale compatto */
    --yuw-flow: 1em;
    --yuw-wrap: 1200px;
    --yuw-pad:  clamp(16px, 4vw, 24px);

    --yuw-serif: "Fraunces", Georgia, "Times New Roman", serif;
    --yuw-sans:  "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--yuw-bg);
    color: var(--yuw-ink);
    font-family: var(--yuw-sans);
    font-size: 1rem;
    line-height: var(--yuw-leading);
    font-feature-settings: "tnum" 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--yuw-accent-2); }

h1, h2, h3, h4 {
    font-family: var(--yuw-serif);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--yuw-ink);
    text-wrap: balance;
    margin: 0;
}

p { text-wrap: pretty; margin: 0; }

/* numeri tabellari ovunque servano cifre */
table, .yuw-num, .yuw-table td, .yuw-table th, .yuw-facts__v {
    font-variant-numeric: tabular-nums lining-nums;
}

::selection {
    background: color-mix(in oklab, var(--yuw-accent) 28%, transparent);
    color: var(--yuw-ink);
}

:focus-visible {
    outline: 2px solid var(--yuw-accent);
    outline-offset: 2px;
    border-radius: 3px;
}

:where(input, textarea, select) { accent-color: var(--yuw-accent); }

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}

/* --------- layout di base --------- */
.yuw-wrap {
    width: 100%;
    max-width: var(--yuw-wrap);
    margin-inline: auto;
    padding-inline: var(--yuw-pad);
}

.yuw-main { display: block; }

.yuw-flow > * + * { margin-top: var(--yuw-flow); }

.yuw-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--yuw-ink);
    color: var(--yuw-accent-ink);
    padding: 10px 16px;
    border-radius: var(--yuw-r-sm);
    z-index: 50;
}
.yuw-skip:focus { left: 12px; top: 12px; }

/* --------- header --------- */
.yuw-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: color-mix(in oklab, var(--yuw-bg) 92%, transparent);
    backdrop-filter: none;
    border-bottom: 1px solid var(--yuw-hairline);
}

.yuw-header__row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-block: 12px;
}

.yuw-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    text-decoration: none;
    color: var(--yuw-ink);
    font-family: var(--yuw-serif);
    font-weight: 700;
    font-size: var(--yuw-step-1);
    letter-spacing: -0.02em;
    flex: 0 0 auto;
}
.yuw-logo__mark {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--yuw-accent);
    transform: translateY(-1px);
}
.yuw-logo__sub {
    font-family: var(--yuw-sans);
    font-weight: 500;
    font-size: var(--yuw-step--1);
    color: var(--yuw-ink-3);
    letter-spacing: 0;
}

.yuw-nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px 14px;
}
.yuw-nav a {
    text-decoration: none;
    color: var(--yuw-ink-2);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.005em;
    padding: 6px 2px;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}
.yuw-nav a:hover { color: var(--yuw-ink); }
.yuw-nav a[aria-current="page"] {
    color: var(--yuw-ink);
    border-bottom-color: var(--yuw-accent);
}

.yuw-geo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--yuw-step--1);
    color: var(--yuw-ink-3);
    border: 1px solid var(--yuw-hairline);
    border-radius: 999px;
    padding: 4px 10px;
    white-space: nowrap;
}

.yuw-burger {
    display: none;
    flex: 0 0 auto;
    width: 48px; height: 48px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--yuw-hairline);
    border-radius: var(--yuw-r-sm);
    color: var(--yuw-ink);
    cursor: pointer;
}
.yuw-burger svg { width: 22px; height: 22px; }

/* --------- breadcrumbs --------- */
.yuw-crumbs-bar { border-bottom: 1px solid var(--yuw-hairline-2); }
.yuw-crumbs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 10px 0;
    font-size: var(--yuw-step--1);
    color: var(--yuw-ink-3);
}
.yuw-crumbs li { display: inline-flex; align-items: center; gap: 6px; }
.yuw-crumbs li + li::before { content: "›"; color: var(--yuw-ink-3); }
.yuw-crumbs a { color: var(--yuw-ink-2); text-decoration: none; }
.yuw-crumbs a:hover { color: var(--yuw-accent-2); }
.yuw-crumbs [aria-current="page"] { color: var(--yuw-ink); }

/* --------- hero --------- */
.yuw-hero-bar { padding-block: clamp(16px, 3vw, 24px); }

.yuw-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
}
.yuw-hero__media { position: relative; min-width: 0; }
.yuw-hero__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--yuw-r-md);
    background: var(--yuw-surface-2);
}
.yuw-hero__facts {
    margin-top: 12px;
    background: var(--yuw-surface);
    border: 1px solid var(--yuw-hairline);
    border-radius: var(--yuw-r-md);
    padding: 16px 18px;
}
.yuw-hero__facts dl {
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    gap: 6px 14px;
    font-size: 0.95rem;
}
.yuw-hero__facts dt { color: var(--yuw-ink-3); }
.yuw-hero__facts dd { margin: 0; font-weight: 600; text-align: right; }

.yuw-kicker {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--yuw-accent-2);
    margin-bottom: 6px;
}
.yuw-hero__title {
    font-size: clamp(2rem, 6vw, 3.0518rem);
    line-height: 1.05;
}
.yuw-hero__lead {
    color: var(--yuw-ink-2);
    font-size: var(--yuw-step-1);
    max-width: 56ch;
}
.yuw-hero__cta { display: flex; }
.yuw-hero__content { display: flex; flex-direction: column; gap: 12px; }

/* --------- sezioni "a gradino" --------- */
.yuw-section { padding-block: clamp(20px, 3.4vw, 30px); }
.yuw-section + .yuw-section { border-top: 1px solid var(--yuw-hairline-2); }

.yuw-step__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}
.yuw-step__num {
    font-family: var(--yuw-serif);
    font-size: var(--yuw-step-4);
    line-height: 0.9;
    color: color-mix(in oklab, var(--yuw-accent) 55%, var(--yuw-ink-3));
    font-weight: 600;
    flex: 0 0 auto;
}
.yuw-step__title { font-size: clamp(1.5rem, 3.4vw, 2.0rem); }
.yuw-step__title::before {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    background: var(--yuw-accent);
    border-radius: 2px;
    margin-bottom: 10px;
}

h2.yuw-h2 { font-size: clamp(1.5rem, 3.4vw, 2.0rem); }
h3.yuw-h3 { font-size: var(--yuw-step-1); margin-top: 0; }

/* --------- prosa --------- */
.yuw-prose { max-width: none; }
.yuw-prose > * + * { margin-top: 0.95em; }
.yuw-prose p, .yuw-prose li {
    font-size: 1.0625rem;
    color: var(--yuw-ink-2);
    overflow-wrap: break-word;
    word-break: break-word;
}
.yuw-prose h2 { margin-top: 1.4em; font-size: clamp(1.5rem, 3.4vw, 2rem); }
.yuw-prose h3 { margin-top: 1.2em; font-size: var(--yuw-step-1); }
.yuw-prose a:not(.yuw-cta) { color: var(--yuw-accent-2); text-underline-offset: 3px; }
.yuw-prose strong { color: var(--yuw-ink); }
.yuw-prose ul, .yuw-prose ol { padding-left: 1.2em; }
.yuw-prose li + li { margin-top: 0.35em; }

/* immagine di contenuto: centrata, ~70% del contenitore, 16:9 */
.yuw-figure {
    margin: 1.3em auto;
    width: 70%;
    max-width: 100%;
}
.yuw-figure img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--yuw-r-md);
    background: var(--yuw-surface-2);
}
.yuw-figure figcaption {
    margin-top: 8px;
    font-size: var(--yuw-step--1);
    color: var(--yuw-ink-3);
    text-align: center;
}

/* --------- callout / verdetto / mini-riassunto --------- */
.yuw-callout {
    background: var(--yuw-surface);
    border: 1px solid var(--yuw-hairline);
    border-left: 3px solid var(--yuw-accent);
    border-radius: var(--yuw-r-md);
    padding: 16px 18px;
}
.yuw-summary {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--yuw-hairline-2);
    font-size: 0.95rem;
    color: var(--yuw-ink-2);
}
.yuw-summary b { color: var(--yuw-ink); }

.yuw-card {
    background: var(--yuw-surface);
    border: 1px solid var(--yuw-hairline);
    border-radius: var(--yuw-r-md);
    padding: 20px 22px;
}
.yuw-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 14px;
}

/* --------- tabelle --------- */
.yuw-tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.2em 0; }
.yuw-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.97rem;
    min-width: 360px;
}
.yuw-table th, .yuw-table td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid var(--yuw-hairline);
    vertical-align: top;
}
.yuw-table thead th {
    font-family: var(--yuw-sans);
    font-weight: 600;
    color: var(--yuw-ink);
    border-bottom: 2px solid var(--yuw-hairline);
}
.yuw-table tbody tr:nth-child(even) {
    background: color-mix(in oklab, var(--yuw-surface-2) 50%, transparent);
}
.yuw-table td.yuw-num, .yuw-table th.yuw-num { text-align: right; }

/* --------- pro / contro --------- */
.yuw-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.yuw-pros, .yuw-cons {
    background: var(--yuw-surface);
    border: 1px solid var(--yuw-hairline);
    border-radius: var(--yuw-r-md);
    padding: 16px 18px;
    min-width: 0;
}
.yuw-pros { border-top: 3px solid var(--yuw-accent); }
.yuw-cons { border-top: 3px solid var(--yuw-ink-3); }
.yuw-pros h3, .yuw-cons h3 { font-size: var(--yuw-step-0); font-family: var(--yuw-sans); font-weight: 600; }
.yuw-pros ul, .yuw-cons ul { list-style: none; margin: 10px 0 0; padding: 0; }
.yuw-pros li, .yuw-cons li {
    position: relative;
    padding-left: 26px;
    margin-top: 8px;
    color: var(--yuw-ink-2);
    font-size: 0.97rem;
}
.yuw-pros li::before, .yuw-cons li::before {
    content: "";
    position: absolute;
    left: 2px; top: 4px;
    width: 12px; height: 7px;
}
.yuw-pros li::before {
    border-left: 2px solid var(--yuw-accent);
    border-bottom: 2px solid var(--yuw-accent);
    transform: rotate(-45deg);
}
.yuw-cons li::before {
    top: 8px;
    height: 0;
    border-bottom: 2px solid var(--yuw-ink-3);
    transform: none;
}

/* --------- checklist --------- */
.yuw-check { list-style: none; margin: 1em 0; padding: 0; }
.yuw-check li {
    position: relative;
    padding-left: 28px;
    margin-top: 9px;
    color: var(--yuw-ink-2);
}
.yuw-check li::before {
    content: "";
    position: absolute;
    left: 2px; top: 5px;
    width: 12px; height: 7px;
    border-left: 2px solid var(--yuw-accent);
    border-bottom: 2px solid var(--yuw-accent);
    transform: rotate(-45deg);
}

/* --------- FAQ (details nativi) --------- */
.yuw-faq { margin: 1.2em 0; }
.yuw-faq__item {
    border-bottom: 1px solid var(--yuw-hairline);
    padding: 4px 0;
}
.yuw-faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 12px 32px 12px 0;
    position: relative;
    font-family: var(--yuw-serif);
    font-size: var(--yuw-step-1);
    font-weight: 600;
    color: var(--yuw-ink);
}
.yuw-faq__item summary::-webkit-details-marker { display: none; }
.yuw-faq__item summary::after {
    content: "";
    position: absolute;
    right: 4px; top: 50%;
    width: 10px; height: 10px;
    border-right: 2px solid var(--yuw-accent);
    border-bottom: 2px solid var(--yuw-accent);
    transform: translateY(-65%) rotate(45deg);
    transition: transform .15s ease;
}
.yuw-faq__item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.yuw-faq__item .yuw-faq__a {
    padding: 0 0 14px;
    color: var(--yuw-ink-2);
    max-width: var(--yuw-measure);
}

/* --------- giochi popolari --------- */
.yuw-slots {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 1.2em 0;
}
.yuw-slot {
    display: block;
    color: inherit;
    text-decoration: none;
    background: var(--yuw-surface);
    border: 1px solid var(--yuw-hairline);
    border-radius: var(--yuw-r-md);
    padding: 8px;
    transition: border-color .15s ease, transform .12s ease, background .15s ease;
    min-width: 0;
}
.yuw-slot:hover {
    border-color: var(--yuw-accent);
    background: var(--yuw-surface-2);
    transform: translateY(-2px);
}
.yuw-slot:active { transform: translateY(1px); }
.yuw-slot__img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 10px;
    background: var(--yuw-surface-2);
}
.yuw-slot__name {
    display: block;
    margin-top: 8px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--yuw-ink);
    text-align: center;
    line-height: 1.25;
}

/* --------- CTA --------- */
.yuw-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 22px;
    border: 1.5px solid var(--yuw-accent);
    border-radius: var(--yuw-r-sm);
    background: transparent;
    color: var(--yuw-accent-2);
    font-family: var(--yuw-sans);
    font-weight: 600;
    font-size: 1.0625rem;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .12s ease;
}
.yuw-cta:hover { background: var(--yuw-accent); color: var(--yuw-accent-ink); border-color: var(--yuw-accent); }
.yuw-cta:active { transform: translateY(1px); }
.yuw-cta__chev { transition: transform .15s ease; }
.yuw-cta:hover .yuw-cta__chev { transform: translateX(3px); }
.yuw-cta--block { width: 100%; justify-content: center; }
.yuw-cta--solid { background: var(--yuw-accent); color: var(--yuw-accent-ink); }
.yuw-cta--solid:hover { background: var(--yuw-accent-2); border-color: var(--yuw-accent-2); }

.yuw-ctarow { margin: 1.4em 0; text-align: center; }

/* --------- card autore (firma in fondo) --------- */
.yuw-section--author { border-top: 1px solid var(--yuw-hairline); }
.yuw-author {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    background: var(--yuw-surface);
    border: 1px solid var(--yuw-hairline);
    border-radius: var(--yuw-r-md);
    padding: 22px;
    max-width: 760px;
    margin-inline: auto;
}
.yuw-author__photo {
    width: 96px; height: 96px;
    aspect-ratio: auto;
    border-radius: 50%;
    object-fit: cover;
    background: var(--yuw-surface-2);
}
.yuw-author__name {
    font-family: var(--yuw-serif);
    font-size: var(--yuw-step-1);
    font-weight: 700;
}
.yuw-author__name a { color: var(--yuw-ink); text-decoration: none; }
.yuw-author__name a:hover { color: var(--yuw-accent-2); }
.yuw-author__role { color: var(--yuw-ink-3); font-size: 0.9rem; margin-top: 2px; }
.yuw-author__bio { color: var(--yuw-ink-2); margin-top: 10px; font-size: 0.98rem; }
.yuw-author__more {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--yuw-accent-2);
    text-decoration: none;
}
.yuw-author__more:hover { text-decoration: underline; }
.yuw-author__rev { margin-top: 10px; font-size: 0.86rem; color: var(--yuw-ink-3); }

/* --------- footer --------- */
.yuw-footer {
    margin-top: 8px;
    border-top: 1px solid var(--yuw-hairline);
    background: var(--yuw-surface-2);
    padding-block: 28px;
    text-align: center;
}
.yuw-footer__brand {
    font-family: var(--yuw-serif);
    font-weight: 700;
    font-size: var(--yuw-step-1);
    color: var(--yuw-ink);
}
.yuw-footer__tag { color: var(--yuw-ink-3); font-size: var(--yuw-step--1); margin-top: 4px; }
.yuw-footer__links {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
}
.yuw-footer__links a {
    color: var(--yuw-ink-2);
    text-decoration: none;
    font-size: 0.9rem;
}
.yuw-footer__links a:hover { color: var(--yuw-accent-2); }
.yuw-footer__legal {
    margin: 18px auto 0;
    max-width: 720px;
    font-size: 0.78rem;
    color: var(--yuw-ink-3);
    line-height: 1.6;
}
.yuw-footer__age {
    display: inline-block;
    border: 1px solid var(--yuw-ink-3);
    border-radius: 999px;
    padding: 1px 9px;
    font-weight: 700;
    color: var(--yuw-ink-2);
    margin-right: 6px;
}

/* --------- cookie bar --------- */
.yuw-cookie {
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 60;
    background: var(--yuw-ink);
    color: var(--yuw-accent-ink);
    border-radius: var(--yuw-r-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 30px rgba(20, 19, 14, 0.22);
    max-width: 720px;
    margin-inline: auto;
}
.yuw-cookie[hidden] { display: none; }
.yuw-cookie__text { font-size: 0.86rem; line-height: 1.5; }
.yuw-cookie__text a { color: var(--yuw-accent-ink); text-decoration: underline; }
.yuw-cookie__close {
    flex: 0 0 auto;
    min-width: 44px; min-height: 44px;
    border: 1px solid color-mix(in oklab, var(--yuw-accent-ink) 40%, transparent);
    background: transparent;
    color: var(--yuw-accent-ink);
    border-radius: var(--yuw-r-sm);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* desktop hero a due colonne con card che scavalca la giunzione */
@media (min-width: 901px) {
    /* Красивый компактный hero: слева крупная картинка-карточка 1:1 (мягкая тень/скругление),
       справа текст ОДНОЙ группой по центру, факты — аккуратной картой-полосой ВО ВСЮ ШИРИНУ под колонками
       (2 пары «ключ→значение» на строку), а не бледной простынёй под фото. */
    .yuw-hero {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        grid-template-areas:
            "media content"
            "facts  facts";
        column-gap: 44px;
        row-gap: 22px;
        align-items: center;
    }
    .yuw-hero__media { grid-area: media; }
    .yuw-hero__img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        box-shadow: 0 18px 50px rgba(20, 19, 14, 0.13);
    }
    .yuw-hero__content { grid-area: content; align-self: center; gap: 18px; }
    .yuw-hero__title { font-size: clamp(2.3rem, 3.1vw, 3.2rem); }
    .yuw-hero__facts {
        grid-area: facts;
        position: static;
        margin: 0;
        padding: 18px 24px;
    }
    .yuw-hero__facts dl {
        grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto) minmax(0, 1fr);
        column-gap: 32px;
        row-gap: 10px;
    }
}

@media (max-width: 900px) {
    .yuw-burger { display: inline-flex; }
    .yuw-nav {
        flex-basis: 100%;
        order: 3;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .2s ease;
    }
    .yuw-nav[data-yuw-open="true"] { max-height: 70vh; overflow-y: auto; }
    .yuw-nav a {
        padding: 14px 4px;
        border-bottom: 1px solid var(--yuw-hairline-2);
        font-size: 1rem;
    }
    .yuw-nav a[aria-current="page"] { border-bottom-color: var(--yuw-accent); }
    .yuw-header__row { flex-wrap: wrap; }
    .yuw-geo { margin-left: auto; }
}

@media (max-width: 720px) {
    .yuw-slots { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    :root { --yuw-pad: 16px; }
    .yuw-cols { grid-template-columns: minmax(0, 1fr); }
    .yuw-figure { width: 100%; }
    .yuw-author {
        grid-template-columns: minmax(0, 1fr);
        justify-items: start;
        padding: 18px;
    }
    .yuw-hero__lead { font-size: 1.0625rem; }
    .yuw-hero__cta { justify-content: center; }   /* на мобиле hero-кнопка по центру */
    /* la card hero 1:1 non viene mai ritagliata: limitata in altezza per far entrare H1+CTA */
    .yuw-hero__img {
        max-height: 42vh;
        width: auto;
        margin-inline: auto;
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }
    .yuw-prose p, .yuw-prose li { font-size: 1rem; }
}

@media (max-width: 460px) {
    .yuw-slots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .yuw-step__head { gap: 10px; }
    .yuw-step__num { font-size: var(--yuw-step-3); }
}
