/* MeuCalendario.app - CSS próprio, sem framework. Mobile-first. */
:root {
  --blue: #1d3f8a;
  --blue-dark: #15306a;
  --blue-soft: #e8eef9;
  --red: #c0392b;
  --red-soft: #fbe9e7;
  --amber: #b7791f;
  --amber-soft: #fdf3dc;
  --teal: #1f7a6d;
  --teal-soft: #e0f2ee;
  --ink: #1b1f26;
  --ink-2: #4a5160;
  --muted: #6b7280;
  --line: #dfe3ea;
  --bg: #f7f8fa;
  --card: #ffffff;
  --today: #fff4c2;
  --focus: #ffbf47;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(20, 30, 60, .06), 0 2px 8px rgba(20, 30, 60, .05);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --maxw: 1180px;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body { margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.55; color: var(--ink); background: var(--bg); overflow-x: hidden; }
img, svg { max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--blue-dark); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
h1, h2, h3 { line-height: 1.2; color: var(--ink); margin: 0 0 .5rem; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(1.5rem, 2.6vw + 1rem, 2.1rem); margin-top: .25rem; }
h2 { font-size: clamp(1.2rem, 1.2vw + .9rem, 1.45rem); margin-top: 1.5rem; }
h3 { font-size: 1.05rem; margin-top: 1rem; }
p { margin: 0 0 .9rem; }
.lead { font-size: 1.08rem; color: var(--ink-2); max-width: 70ch; }
.answer strong { color: var(--ink); }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.block { display: block; }
code { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: .9em; background: #eef1f6; padding: .05em .35em; border-radius: 4px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--blue); color: #fff; padding: .5rem 1rem; z-index: 100; }
.skip-link:focus { left: .5rem; top: .5rem; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }

/* Header */
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.site-header__inner { display: flex; align-items: center; gap: 12px; min-height: 58px; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); font-size: 1.15rem; }
.brand strong { color: var(--blue); }
.nav-toggle { margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 8px; cursor: pointer; position: relative; }
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after { display: block; width: 20px; height: 2px; background: var(--ink); position: absolute; left: 11px; top: 21px; content: ""; }
.nav-toggle__bar::before { top: -6px; left: 0; } .nav-toggle__bar::after { top: 6px; left: 0; }
.site-nav { display: none; width: 100%; padding-bottom: 12px; }
.site-nav.is-open { display: block; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 14px; }
.site-nav a { display: block; padding: 8px 2px; font-weight: 500; text-decoration: none; color: var(--ink-2); border-bottom: 2px solid transparent; }
.site-nav a[aria-current="page"], .site-nav a:hover { color: var(--blue); border-color: var(--blue); }
.search { display: flex; margin-top: 8px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; }
.search input { flex: 1; border: 0; padding: 8px 10px; font: inherit; min-width: 0; }
.search button { border: 0; background: var(--blue-soft); color: var(--blue); padding: 0 12px; cursor: pointer; }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex; width: auto; margin-left: auto; align-items: center; gap: 16px; padding: 0; }
  .search { margin: 0; width: 240px; }
  .site-nav a { padding: 18px 2px; }
}

/* Breadcrumbs */
.crumbs { margin-top: 10px; font-size: .85rem; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px; }
.crumbs li + li::before { content: "›"; color: var(--muted); margin: 0 4px; }
.crumbs a { color: var(--ink-2); }

/* Layout */
.layout { display: grid; gap: 24px; padding: 8px 16px 40px; }
.main { min-width: 0; }
@media (min-width: 1100px) {
  .layout--sidebar { grid-template-columns: minmax(0, 1fr) 300px; }
  .sidebar { position: sticky; top: 74px; align-self: start; }
}
.section { margin-top: 2rem; }
.section__title { margin-top: 0; }

/* Hero */
.hero { display: grid; gap: 20px; margin-top: 8px; }
@media (min-width: 900px) { .hero { grid-template-columns: 1.1fr 1fr; align-items: start; } }
.today { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; margin: 12px 0; box-shadow: var(--shadow); }
.today__label { margin: 0; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.today__date { margin: 0; font-size: 1.25rem; font-weight: 700; }
.today__date::first-letter, .nexth__date::first-letter { text-transform: uppercase; }
.today__meta { margin: 4px 0 0; font-size: .875rem; color: var(--ink-2); }
.today--big .today__date { font-size: 1.6rem; text-transform: none; }
.nexth { background: var(--blue-soft); border-left: 4px solid var(--blue); border-radius: var(--radius); padding: 14px 16px; margin: 12px 0; }
.nexth p { margin: 0; }
.nexth__label { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--blue-dark); }
.nexth__name { font-size: 1.25rem; font-weight: 700; }
.nexth__date { color: var(--ink-2); }
.nexth__count { color: var(--ink-2); margin-top: 4px; }
.nexth__count strong { font-size: 1.4rem; color: var(--blue); }

/* Calendar grid */
.cal { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; table-layout: fixed; box-shadow: var(--shadow); }
.cal__caption { caption-side: top; text-align: left; font-weight: 700; padding: 10px 12px 6px; text-transform: capitalize; font-size: 1rem; }
.cal__caption a { text-decoration: none; }
.cal th { font-weight: 600; font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-2); padding: 6px 2px; border-bottom: 1px solid var(--line); background: #fafbfd; }
.cal th abbr { text-decoration: none; }
.cal th.is-weekend { color: var(--muted); }
.cal td { vertical-align: top; padding: 4px; border-top: 1px solid #eef0f4; height: 44px; font-size: .9rem; position: relative; }
.cal td.is-weekend { background: #fafbfd; }
.cal td.is-out { color: #c3c8d2; background: #fcfcfd; }
.cal td.is-holiday { background: var(--red-soft); }
.cal td.is-holiday .cal__num { color: var(--red); font-weight: 700; }
.cal td.is-optional { background: var(--amber-soft); }
.cal td.is-optional .cal__num { color: var(--amber); font-weight: 700; }
.cal td.is-obs .cal__num::after { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); margin-left: 3px; vertical-align: middle; }
.cal td.is-today { box-shadow: inset 0 0 0 2px var(--blue); }
.cal td.is-today .cal__num { background: var(--blue); color: #fff; border-radius: 50%; width: 1.5em; height: 1.5em; display: inline-flex; align-items: center; justify-content: center; }
.cal td.is-work { background: var(--blue-soft); } .cal td.is-work .cal__num { color: var(--blue); font-weight: 700; }
.cal td.is-off { background: var(--teal-soft); }
.cal td.is-personal { background: #efe7fb; }
.cal__num { display: inline-block; line-height: 1.5em; }
.cal__wk { width: 2.4em; color: var(--muted); font-size: .7rem !important; text-align: center; background: #fafbfd; }
.cal__ev { display: block; font-size: .68rem; line-height: 1.2; margin-top: 2px; padding: 1px 4px; border-radius: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cal__ev--holiday { background: var(--red); color: #fff; }
.cal__ev--optional { background: var(--amber); color: #fff; }
.cal__ev--obs { background: var(--teal-soft); color: var(--teal); }
.cal__ev--work { background: var(--blue); color: #fff; }
.cal__ev--off { background: var(--teal-soft); color: var(--teal); }
.cal__ev--personal { background: #6b3fc4; color: #fff; }
.cal--sm td { height: 30px; padding: 2px; font-size: .8rem; text-align: center; }
.cal--sm td.is-today .cal__num { width: 1.6em; height: 1.6em; }
.cal--sm .cal__caption { font-size: .95rem; padding: 8px 10px 4px; }
.cal--sm th { font-size: .65rem; padding: 4px 1px; }
.cal--lg td { height: 64px; }
@media (min-width: 700px) { .cal--lg td { height: 84px; font-size: 1rem; } .cal--lg .cal__ev { font-size: .74rem; white-space: normal; } }
.cal--blank td { height: 80px; } .cal--blank td.has-lines { background-image: repeating-linear-gradient(to bottom, transparent 0 22px, #e6e9ef 22px 23px); background-position: 0 24px; }
.cal--multi td small { color: var(--muted); font-size: .65rem; margin-left: 2px; }
.year-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); margin-top: 12px; }
.year-grid--compact { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
.month-lg { margin-top: 12px; }
.legend { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: .82rem; color: var(--ink-2); }
.legend__swatch { display: inline-block; width: 14px; height: 14px; border-radius: 3px; vertical-align: -2px; margin-right: 4px; border: 1px solid var(--line); }
.legend__swatch.is-holiday { background: var(--red-soft); border-color: var(--red); }
.legend__swatch.is-optional { background: var(--amber-soft); border-color: var(--amber); }
.legend__swatch.is-obs { background: var(--teal-soft); border-color: var(--teal); }
.legend__swatch.is-weekend { background: #fafbfd; }
.legend__swatch.is-today { box-shadow: inset 0 0 0 2px var(--blue); }
.legend__swatch.is-work { background: var(--blue-soft); border-color: var(--blue); }
.legend__swatch.is-off { background: var(--teal-soft); border-color: var(--teal); }
.yearnav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin: 12px 0; font-weight: 600; }
.yearnav a { text-decoration: none; padding: 6px 10px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }

/* Tables */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 8px 0; }
.htable { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); font-size: .92rem; min-width: 480px; }
.htable caption { text-align: left; font-weight: 700; padding: 8px 10px; }
.htable th, .htable td { padding: 8px 10px; border-bottom: 1px solid #eef0f4; text-align: left; vertical-align: top; }
.htable th { background: #fafbfd; font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-2); }
.htable tbody th { text-transform: none; font-size: .92rem; }
.htable tr:last-child td { border-bottom: 0; }
.htable--dense th, .htable--dense td { padding: 5px 8px; }
.htable tr.is-current { background: var(--today); }
.htable .row--holiday td:first-child { border-left: 3px solid var(--red); }
.htable .row--optional td:first-child { border-left: 3px solid var(--amber); }
.htable .row--long td:first-child { border-left: 3px solid var(--teal); }
.htable .row--bridge td:first-child { border-left: 3px solid var(--blue); }
.htable .row--weekend td { color: var(--muted); }
.badge { display: inline-block; font-size: .72rem; font-weight: 600; padding: 2px 7px; border-radius: 999px; line-height: 1.4; white-space: nowrap; vertical-align: middle; }
.badge--holiday { background: var(--red-soft); color: var(--red); }
.badge--optional { background: var(--amber-soft); color: var(--amber); }
.badge--obs { background: var(--teal-soft); color: var(--teal); }
.badge--forecast, .badge--status-forecast { background: var(--amber-soft); color: var(--amber); }
.badge--provisional, .badge--status-provisional, .badge--status-missing { background: #f1f2f4; color: var(--ink-2); }
.badge--status-verified { background: var(--teal-soft); color: var(--teal); }
.badge--status-reviewed { background: var(--blue-soft); color: var(--blue); }

/* Cards */
.cards { display: grid; gap: 14px; margin-top: 12px; }
.cards--2 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.cards--3 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.card--soft { background: #fff; box-shadow: none; }
.card--accent { border-color: var(--blue); box-shadow: 0 0 0 2px var(--blue-soft); }
.card__title { margin: 0 0 6px; font-size: 1.08rem; }
.card__title a { text-decoration: none; }
.card__kicker { margin: 0 0 4px; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.card__icon { color: var(--blue); margin-bottom: 6px; }
.card__eff { color: var(--teal); }
.card p:last-child { margin-bottom: 0; }
.linklist { list-style: none; margin: 0; padding: 0; }
.linklist li { padding: 4px 0; }
.linklist--results li { padding: 8px 0; border-bottom: 1px solid #eef0f4; }
.chips { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-block; padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; text-decoration: none; font-size: .9rem; color: var(--ink-2); }
.chip:hover, .chip.is-active { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }
.stats { list-style: none; margin: 8px 0; padding: 0; display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 12px; }
.stat__v { display: block; font-size: 1.5rem; color: var(--blue); line-height: 1.1; }
.stat__l { display: block; font-size: .8rem; color: var(--ink-2); }
.callout { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; background: var(--blue-soft); border-radius: var(--radius); padding: 18px 20px; }
.callout p:last-child { margin: 0; }
.notice { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: 8px; padding: 10px 14px; }
.notice--warn { border-left-color: var(--amber); background: var(--amber-soft); }
.notice--ok { border-left-color: var(--teal); background: var(--teal-soft); }

/* Buttons & forms */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 16px; border-radius: 8px; border: 1px solid var(--line); background: #fff; color: var(--ink); font: inherit; font-weight: 600; text-decoration: none; cursor: pointer; line-height: 1.2; min-height: 40px; }
.btn:hover { border-color: var(--blue); color: var(--blue); }
.btn--primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); color: #fff; }
.btn--ghost { background: transparent; }
.btn--small { padding: 6px 12px; min-height: 34px; font-size: .875rem; }
.linkbtn { background: none; border: 0; padding: 0; color: var(--blue); text-decoration: underline; cursor: pointer; font: inherit; }
.tool-form, .locform { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px 6px; margin: 12px 0; }
.form-row, .locform__row { display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: flex-end; margin-bottom: 8px; }
.form-row--checks { gap: 8px 18px; }
.field { display: flex; flex-direction: column; gap: 4px; min-width: 140px; flex: 1 1 160px; }
.field--grow { flex: 2 1 260px; }
.field--full { flex-basis: 100%; }
.field--btn { flex: 0 0 auto; }
.field--check { flex: 0 0 auto; flex-direction: row; align-items: center; min-height: 40px; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink-2); }
.field--check label, .form-row--checks label { font-size: .9rem; font-weight: 500; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.field input:not([type="checkbox"]):not([type="color"]):not([type="file"]), .field select, .field textarea { font: inherit; padding: 8px 10px; border: 1px solid #c9ced8; border-radius: 8px; background: #fff; min-height: 40px; color: var(--ink); width: 100%; }
.field input[type="color"] { width: 60px; height: 40px; padding: 2px; border: 1px solid #c9ced8; border-radius: 8px; }
.field textarea { resize: vertical; }
fieldset { border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px 4px; margin: 0 0 10px; }
legend { font-weight: 700; font-size: .9rem; padding: 0 6px; }
details.adv { margin: 4px 0 10px; }
details.adv summary { cursor: pointer; font-weight: 600; color: var(--blue); }
.hp { position: absolute; left: -9999px; }
.exportbar { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 6px; }

/* Results */
.result { background: var(--blue-soft); border-radius: var(--radius); padding: 16px 18px; margin: 12px 0; border-left: 4px solid var(--blue); }
.result__main { font-size: 1.15rem; margin-bottom: 8px; }
.result__main strong { font-size: 1.5rem; color: var(--blue); }
.result__list { margin: 0 0 10px; padding-left: 1.2rem; }
.result__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.result--countdown { text-align: center; }
.result__label { font-size: 1.05rem; font-weight: 600; margin: 0; }
.result__huge { margin: 4px 0; }
.result__huge strong { font-size: clamp(3rem, 10vw, 5rem); color: var(--blue); line-height: 1; }
.result__huge span { font-size: 1.2rem; }
.result__sub { margin: 0; color: var(--ink-2); }
.result__live { font-variant-numeric: tabular-nums; color: var(--ink-2); font-size: .95rem; }
.datecard { display: flex; gap: 18px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); margin: 12px 0; flex-wrap: wrap; }
.datecard__big { display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--blue); color: #fff; border-radius: 12px; width: 110px; height: 110px; flex: 0 0 auto; }
.datecard__day { font-size: 3rem; font-weight: 800; line-height: 1; }
.datecard__month { text-transform: uppercase; font-size: .8rem; letter-spacing: .08em; }
.datecard__info { flex: 1 1 260px; } .datecard__info p { margin: 0 0 6px; }
.datecard__count strong { color: var(--blue); font-size: 1.3rem; }

/* Builder */
.builder { display: grid; gap: 16px; }
@media (min-width: 1100px) { .is-builder .builder { grid-template-columns: 380px minmax(0, 1fr); align-items: start; } .builder__panel { position: sticky; top: 74px; max-height: calc(100vh - 90px); overflow: auto; } }
.builder__actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0; }
.builder__preview { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; min-height: 300px; }
.evlist { list-style: none; margin: 6px 0; padding: 0; font-size: .9rem; }
.evlist li { display: flex; justify-content: space-between; gap: 8px; padding: 4px 0; border-bottom: 1px solid #eef0f4; }
.shift-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); margin-top: 12px; }
.planner { display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; }
.planner__day h3 { margin: 0 0 4px; font-size: .9rem; text-transform: capitalize; }
.planner__day.is-weekend h3 { color: var(--muted); }
.planner__lines { height: 110px; background-image: repeating-linear-gradient(to bottom, transparent 0 21px, #e6e9ef 21px 22px); }
.preview { margin-top: 12px; }

/* Ads: espaço reservado para evitar CLS; nunca próximo de controles */
.ad { display: block; margin: 28px auto; text-align: center; width: 100%; }
.ad__label { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 4px; }
.ad--content, .ad--article { min-height: 280px; }
.ad--footer { min-height: 100px; max-width: var(--maxw); padding: 0 16px; }
.ad--sidebar { min-height: 600px; margin: 0 0 20px; }
@media (min-width: 900px) { .ad--content, .ad--article { min-height: 250px; } }

/* Article */
.article__body { max-width: 74ch; font-size: 1.04rem; }
.article__body h2 { margin-top: 1.8rem; }
.article__body img { border-radius: 8px; }
.article__body blockquote { border-left: 4px solid var(--blue-soft); margin: 1rem 0; padding: .2rem 1rem; color: var(--ink-2); }
.article__body pre { background: #1b1f26; color: #f5f7fa; padding: 12px 14px; border-radius: 8px; overflow: auto; }
.article__body pre code { background: none; padding: 0; color: inherit; }
.related { margin-top: 2rem; }
.sources { margin-top: 2rem; padding: 14px 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.sources h2 { margin-top: 0; font-size: 1.1rem; }
.sources ul { padding-left: 1.2rem; }

/* Footer */
.site-footer { background: #fff; border-top: 1px solid var(--line); margin-top: 24px; padding: 28px 0 16px; font-size: .9rem; }
.site-footer__grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.site-footer__brand { font-size: 1.2rem; margin: 0 0 6px; } .site-footer__brand strong { color: var(--blue); }
.site-footer__title { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 8px; color: var(--ink-2); }
.site-footer ul { list-style: none; margin: 0; padding: 0; } .site-footer li { padding: 2px 0; }
.site-footer a { color: var(--ink-2); text-decoration: none; } .site-footer a:hover { color: var(--blue); text-decoration: underline; }
.site-footer__bottom { border-top: 1px solid var(--line); margin-top: 20px; padding-top: 12px; color: var(--muted); font-size: .82rem; }
.consent { position: fixed; left: 12px; right: 12px; bottom: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; box-shadow: 0 8px 30px rgba(20, 30, 60, .18); z-index: 60; max-width: 720px; margin: 0 auto; }
.consent p { margin: 0 0 10px; font-size: .9rem; }
.consent__actions { display: flex; gap: 8px; justify-content: flex-end; }
