/*
Theme Name: Stackfy
Theme URI: https://stackfy.app/
Author: Stackfy
Author URI: https://stackfy.app/
Description: Tema de blog "Bold Color-blocked" da Stackfy — a fintech brasileira Bitcoin-only. Blocos de cor saturada e chapada, display Inter 800 com tracking negativo, acentos em Instrument Serif itálico, lime sobre azul. Layout, cor de destaque e estilo de cards configuráveis no Personalizar.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stackfy
Tags: blog, two-columns, custom-colors, custom-logo, custom-menu, featured-images, sticky-post, full-width-template, block-styles, translation-ready, editor-style
*/

/* ── Stackfy Blog — "Bold Color-blocked" ────────────────────────────────────
   Built on the V5 Stackfy design system: flat saturated color blocks, Inter 800
   display type with tight negative tracking, one Instrument Serif italic accent
   word per headline, lime hero accent on blue, no gradients. */

:root {
  /* Palette */
  --sf-blue: #0255f1;
  --sf-blue-deep: #012a99;
  --sf-ink: #08102a;
  --sf-bg: #f5f6fb;
  --sf-white: #ffffff;
  --sf-lime: #cffb78;
  --sf-orange: #ff8a3d;
  --sf-green: #16a34a;
  --sf-muted: #64748b;
  --sf-hairline-ink: rgba(15, 23, 42, 0.08);

  /* Tweakable — overridden at runtime on #root */
  --accent: var(--sf-lime);
  --accent-ink: var(--sf-ink);   /* readable ink on the accent */

  --sf-font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --sf-font-serif: 'Instrument Serif', Georgia, serif;
  --sf-font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --track-display: -0.045em;
  --track-tight: -0.03em;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--sf-bg);
  color: var(--sf-ink);
  font-family: var(--sf-font-sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; }

/* ── Shell / layout ───────────────────────────────────────────────────────── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }

@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .section { padding: 56px 0; }
}

/* ── Eyebrow tag ──────────────────────────────────────────────────────────── */
.tag {
  display: inline-block; padding: 6px 12px; border-radius: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--sf-ink); color: #fff; white-space: nowrap;
}
.tag--accent { background: var(--accent); color: var(--accent-ink); }
.tag--light { background: #fff; color: var(--sf-ink); }
.tag--outline { background: transparent; color: currentColor; box-shadow: inset 0 0 0 1.5px currentColor; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--sf-font-sans); font-weight: 700; font-size: 14px;
  padding: 12px 20px; border: none; border-radius: 8px;
  transition: transform 0.08s ease, filter 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn--lg { padding: 17px 28px; font-size: 16px; }
.btn--ink { background: var(--sf-ink); color: #fff; }
.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--accent:hover { filter: brightness(1.04); }
.btn--white { background: #fff; color: var(--sf-ink); }
.btn--ghost { background: transparent; color: currentColor; box-shadow: inset 0 0 0 2px currentColor; }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px; gap: 24px;
}
.nav__left { display: flex; align-items: center; gap: 36px; }
.nav__links { display: flex; gap: 22px; font-size: 14px; font-weight: 600; color: var(--sf-muted); }
.nav__links a { transition: color 0.15s ease; cursor: pointer; }
.nav__links a:hover, .nav__links a[data-active="true"] { color: var(--sf-ink); }
.nav__right { display: flex; align-items: center; gap: 12px; }
.nav--onblue .nav__links { color: rgba(255,255,255,0.78); }
.nav--onblue .nav__links a:hover, .nav--onblue .nav__links a[data-active="true"] { color: #fff; }
@media (max-width: 900px) {
  .nav { padding: 16px 20px; }
  .nav__links { display: none; }
}

/* ── Search ───────────────────────────────────────────────────────────────── */
.search {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.14); border-radius: 10px; padding: 9px 14px;
  min-width: 220px;
}
.search--light { background: var(--sf-white); box-shadow: inset 0 0 0 1.5px var(--sf-hairline-ink); }
.search input {
  border: none; outline: none; background: transparent; width: 100%;
  font-family: var(--sf-font-sans); font-size: 14px; font-weight: 500; color: inherit;
}
.search input::placeholder { color: currentColor; opacity: 0.55; }
.search svg { flex-shrink: 0; opacity: 0.7; }

/* ── Filter chips ─────────────────────────────────────────────────────────── */
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 9px 16px; border-radius: 99px; cursor: pointer;
  font-size: 13px; font-weight: 700; font-family: var(--sf-font-sans);
  background: #fff; color: var(--sf-ink); box-shadow: inset 0 0 0 1.5px var(--sf-hairline-ink);
  transition: all 0.12s ease;
}
.chip:hover { box-shadow: inset 0 0 0 1.5px var(--sf-ink); }
.chip[data-active="true"] { background: var(--sf-ink); color: #fff; box-shadow: none; }

/* ── Image placeholder ────────────────────────────────────────────────────── */
.ph {
  position: relative; overflow: hidden; background: #e8ecfb;
  background-image:
    repeating-linear-gradient(135deg, rgba(2,85,241,0.07) 0 1px, transparent 1px 13px);
  display: flex; align-items: flex-end; justify-content: flex-start;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--sf-font-mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--sf-blue);
  padding: 8px 10px; background: rgba(255,255,255,0.7); border-radius: 5px; margin: 10px;
}
.no-images .ph { display: none !important; }

/* ── Post cards ───────────────────────────────────────────────────────────── */
.card {
  display: flex; flex-direction: column; border-radius: 20px; overflow: hidden;
  background: #fff; cursor: pointer; transition: transform 0.14s ease, box-shadow 0.14s ease;
  text-align: left; height: 100%;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(2,85,241,0.12); }
.card__img { aspect-ratio: 16 / 10; width: 100%; }
.card__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__cat { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.card__title {
  font-size: 23px; font-weight: 800; letter-spacing: var(--track-tight); line-height: 1.1;
  margin: 0; text-wrap: balance;
}
.card__dek { font-size: 14.5px; color: var(--sf-muted); line-height: 1.55; margin: 0; }
.card__meta {
  margin-top: auto; padding-top: 4px; display: flex; gap: 8px; align-items: center;
  font-size: 12.5px; color: var(--sf-muted); font-weight: 500;
}
.card__meta b { color: var(--sf-ink); font-weight: 700; }

/* Solid color-blocked card variant */
.cards--solid .card { background: var(--card-bg); color: var(--card-fg); }
.cards--solid .card:hover { box-shadow: 0 22px 44px rgba(8,16,42,0.22); }
.cards--solid .card__dek { color: var(--card-fg); opacity: 0.82; }
.cards--solid .card__meta { color: var(--card-fg); opacity: 0.78; }
.cards--solid .card__meta b { color: var(--card-fg); opacity: 1; }
.cards--solid .card__img { display: none; }
.cards--solid .card__body { padding: 28px; }
.cards--solid .card__title { font-size: 26px; }

/* ── Grids ────────────────────────────────────────────────────────────────── */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid, .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid, .grid--2 { grid-template-columns: 1fr; } }

/* ── Editorial list rows ──────────────────────────────────────────────────── */
.rows { display: flex; flex-direction: column; }
.row {
  display: grid; grid-template-columns: 64px 1.4fr 1fr; gap: 28px; align-items: center;
  padding: 30px 0; border-top: 1px solid var(--sf-hairline-ink); cursor: pointer;
}
.row:hover .row__title { color: var(--sf-blue); }
.row__num { font-size: 17px; font-weight: 800; color: var(--sf-muted); font-variant-numeric: tabular-nums; }
.row__title {
  font-size: 34px; font-weight: 800; letter-spacing: var(--track-tight); line-height: 1.05;
  margin: 8px 0 12px; transition: color 0.15s ease; text-wrap: balance;
}
.row__dek { font-size: 15px; color: var(--sf-muted); line-height: 1.55; margin: 0; max-width: 520px; }
.row__img { aspect-ratio: 16 / 10; border-radius: 14px; }
@media (max-width: 860px) {
  .row { grid-template-columns: 1fr; gap: 14px; }
  .row__img { display: none; }
  .row__title { font-size: 26px; }
}
.no-images .row__img { display: none; }

/* ── Section heading ──────────────────────────────────────────────────────── */
.h2 {
  font-size: 64px; line-height: 0.95; letter-spacing: var(--track-display);
  font-weight: 800; margin: 18px 0 0; text-wrap: balance;
}
.serif-accent { font-family: var(--sf-font-serif); font-weight: 400; font-style: italic; }
@media (max-width: 720px) { .h2 { font-size: 40px; } }

/* ── Article prose ────────────────────────────────────────────────────────── */
.prose { font-size: 18.5px; line-height: 1.72; color: #2a3552; max-width: 720px; }
.prose > p { margin: 0 0 26px; }
.prose > p:first-of-type { font-size: 21px; color: var(--sf-ink); line-height: 1.6; }
.prose h2 {
  font-size: 34px; font-weight: 800; letter-spacing: var(--track-tight); line-height: 1.1;
  color: var(--sf-ink); margin: 48px 0 18px;
}
.prose h3 { font-size: 22px; font-weight: 800; color: var(--sf-ink); margin: 36px 0 12px; }
.prose strong { color: var(--sf-ink); font-weight: 700; }
.prose ul { margin: 0 0 26px; padding-left: 22px; }
.prose li { margin-bottom: 10px; }
.prose a { color: var(--sf-blue); font-weight: 600; box-shadow: inset 0 -2px 0 var(--accent); }
.pullquote {
  font-family: var(--sf-font-serif); font-style: italic; font-size: 38px; line-height: 1.18;
  color: var(--sf-ink); margin: 44px 0; padding-left: 26px;
  border-left: 5px solid var(--accent); max-width: 760px; letter-spacing: -0.01em;
}
.callout {
  background: var(--sf-ink); color: #fff; border-radius: 18px; padding: 30px 32px;
  margin: 40px 0; max-width: 720px;
}
.callout .tag { background: var(--accent); color: var(--accent-ink); margin-bottom: 14px; }
.callout p { margin: 0; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.82); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer { background: var(--sf-ink); color: #fff; padding: 80px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.footer__col h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 16px; }
.footer__col a { display: block; font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 10px; cursor: pointer; }
.footer__col a:hover { color: #fff; }
.footer__bar {
  margin-top: 64px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bar { flex-direction: column; gap: 16px; text-align: center; }
}

/* concentric hero rings */
.rings { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); pointer-events: none; }

/* ════════════════════════════════════════════════════════════════════════════
   WordPress integration layer — additions on top of the shared blog CSS above
   ════════════════════════════════════════════════════════════════════════════ */

.site { overflow-x: hidden; }
.topbar { position: relative; }
.hide-sm { display: block; }
@media (max-width: 900px) { .hide-sm { display: none; } }

/* ── Logo ─────────────────────────────────────────────────────────────────── */
.sf-logo { height: 24px; width: auto; display: block; }
.sf-logo--light { filter: brightness(0) invert(1); }
.custom-logo { height: 28px; width: auto; }
.nav__logo { display: flex; }

/* ── Nav menu (wp_nav_menu emits ul>li) ─────────────────────────────────────── */
.nav__links { margin: 0; padding: 0; }
.nav__links li { list-style: none; }
.nav__links .menu-item a { display: inline-block; }

/* ── Featured hero ──────────────────────────────────────────────────────────── */
.hero__inner { position: relative; padding-top: 40px; padding-bottom: 88px; }
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; margin-top: 28px; }
.hero__cat { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.hero__title { font-size: 76px; line-height: 0.95; letter-spacing: var(--track-display); font-weight: 800; margin: 14px 0 20px; text-wrap: balance; }
.hero__dek { font-size: 19px; color: rgba(255,255,255,0.85); line-height: 1.55; margin: 0 0 28px; max-width: 560px; }
.hero__cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__meta { font-size: 13.5px; color: rgba(255,255,255,0.7); font-weight: 500; }
.hero__meta b { color: #fff; font-weight: 700; }
.hero__img { display: block; aspect-ratio: 4 / 3; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.28); }
.hero__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .hero__title { font-size: 48px; } }

/* ── Category / archive hero ─────────────────────────────────────────────────── */
.hero__back { cursor: pointer; font-size: 13px; font-weight: 700; opacity: 0.75; display: inline-block; }
.hero__cat-title { font-size: 96px; line-height: 0.92; letter-spacing: var(--track-display); font-weight: 800; margin: 20px 0 18px; text-wrap: balance; }
.hero__cat-desc { font-size: 20px; opacity: 0.82; line-height: 1.5; margin: 0; max-width: 520px; }
.hero__cat-desc p { margin: 0; }
.hero__count { margin-top: 24px; font-size: 14px; font-weight: 700; opacity: 0.7; }
@media (max-width: 720px) { .hero__cat-title { font-size: 56px; } }

/* ── Index head ─────────────────────────────────────────────────────────────── */
.index-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.empty-msg { color: var(--sf-muted); font-size: 18px; }

/* ── Card / row images (real thumbnails) ────────────────────────────────────── */
.card__img { aspect-ratio: 16 / 10; width: 100%; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.row__img { overflow: hidden; }
.row__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
a.row { color: inherit; }
.cards--solid .card__cat { color: var(--card-fg) !important; opacity: 0.85; }
.no-images .card__img, .no-images .row__img, .no-images .hero__img, .no-images .article__cover { display: none !important; }

/* ── Article ────────────────────────────────────────────────────────────────── */
.article__head { padding-top: 64px; padding-bottom: 40px; max-width: 860px; }
.article__title { font-size: 60px; line-height: 0.98; letter-spacing: var(--track-display); font-weight: 800; margin: 22px 0 22px; text-wrap: balance; }
.article__dek { font-size: 22px; color: var(--sf-muted); line-height: 1.5; margin: 0; }
.article__meta { margin-top: 28px; font-size: 14px; }
.article__cover { aspect-ratio: 21 / 9; border-radius: 20px; margin-bottom: 56px; overflow: hidden; }
.article__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article__bodywrap { display: flex; flex-direction: column; align-items: center; }
.article__cta { margin: 48px 0 8px; padding: 36px 0; border-top: 2px solid var(--sf-ink); border-bottom: 2px solid var(--sf-ink); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.article__cta-title { font-size: 26px; font-weight: 800; letter-spacing: var(--track-tight); color: var(--sf-ink); max-width: 380px; }
@media (max-width: 720px) { .article__title { font-size: 40px; } }

/* ── Newsletter form ──────────────────────────────────────────────────────────── */
.nl-form { display: flex; flex-direction: column; gap: 12px; }
.nl-input { padding: 18px 20px; border-radius: 12px; border: none; outline: none; font-family: var(--sf-font-sans); font-size: 16px; font-weight: 500; background: #fff; color: var(--sf-ink); }
@media (max-width: 900px) { .nl-block { grid-template-columns: 1fr !important; padding: 40px 28px !important; } }

/* ── the_content prose: images, alignments, embeds ──────────────────────────── */
.entry-content img { max-width: 100%; height: auto; }
.entry-content figure { margin: 32px 0; }
.entry-content figure img { border-radius: 14px; }
.entry-content figcaption { font-size: 13px; color: var(--sf-muted); margin-top: 8px; text-align: center; }
.alignwide { max-width: 1040px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: none; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin: 6px 28px 18px 0; max-width: 50%; }
.alignright { float: right; margin: 6px 0 18px 28px; max-width: 50%; }
.entry-content > *:last-child { margin-bottom: 0; }

/* ── Gutenberg block styles ───────────────────────────────────────────────────── */
.prose .wp-block-pullquote { border: 0; border-left: 5px solid var(--accent); padding: 0 0 0 26px; margin: 44px 0; max-width: 760px; text-align: left; }
.prose .wp-block-pullquote blockquote, .prose .wp-block-pullquote p { font-family: var(--sf-font-serif); font-style: italic; font-size: 38px; line-height: 1.18; color: var(--sf-ink); letter-spacing: -0.01em; margin: 0; }
.prose .wp-block-pullquote cite { font-family: var(--sf-font-sans); font-style: normal; font-size: 14px; font-weight: 700; color: var(--sf-muted); display: block; margin-top: 14px; text-transform: none; }
.prose blockquote.wp-block-quote { border-left: 5px solid var(--accent); padding-left: 26px; margin: 44px 0; }
.prose blockquote.wp-block-quote p { font-size: 24px; line-height: 1.4; color: var(--sf-ink); font-weight: 500; }
.prose blockquote.wp-block-quote cite { font-size: 14px; color: var(--sf-muted); font-weight: 700; font-style: normal; }
.wp-block-group.is-style-stackfy-callout { background: var(--sf-ink); color: #fff; border-radius: 18px; padding: 30px 32px; margin: 40px 0; }
.wp-block-group.is-style-stackfy-callout p { margin: 0 0 8px; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.82); }
.wp-block-group.is-style-stackfy-callout p:last-child { margin-bottom: 0; }
.wp-block-group.is-style-stackfy-callout h2, .wp-block-group.is-style-stackfy-callout h3, .wp-block-group.is-style-stackfy-callout strong { color: #fff; }
.wp-block-group.is-style-stackfy-callout a { color: var(--accent); }
.prose .wp-block-button__link { background: var(--sf-ink); color: #fff; border-radius: 8px; font-weight: 700; padding: 14px 22px; }
.prose .wp-block-code, .prose pre { background: var(--sf-ink); color: #fff; border-radius: 14px; padding: 22px; font-family: var(--sf-font-mono); font-size: 14px; overflow: auto; }

/* ── Pagination ───────────────────────────────────────────────────────────────── */
.pagination { margin-top: 52px; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 14px; border-radius: 10px; font-weight: 700; font-size: 14px; background: #fff; color: var(--sf-ink); box-shadow: inset 0 0 0 1.5px var(--sf-hairline-ink); transition: box-shadow 0.12s ease; }
.pagination .page-numbers.current { background: var(--sf-ink); color: #fff; box-shadow: none; }
.pagination .page-numbers:hover { box-shadow: inset 0 0 0 1.5px var(--sf-ink); }
.pagination .page-numbers.dots { background: transparent; box-shadow: none; }

/* ── Comments ─────────────────────────────────────────────────────────────────── */
.comments-area { margin-top: 8px; font-size: 16px; }
.comments-area .comments-title { font-size: 28px; font-weight: 800; letter-spacing: var(--track-tight); margin: 0 0 24px; }
.comment-list { list-style: none; padding: 0; margin: 0; }
.comment-list ul.children { list-style: none; padding-left: 28px; }
.comment-body { padding: 20px 0; border-top: 1px solid var(--sf-hairline-ink); }
.comment-meta { font-size: 13px; color: var(--sf-muted); margin-bottom: 10px; }
.comment-author .fn { color: var(--sf-ink); font-weight: 700; font-style: normal; }
.comment-content p { margin: 0 0 12px; }
.comment-reply-link { font-size: 13px; font-weight: 700; color: var(--sf-blue); }
.comment-respond { margin-top: 36px; }
.comment-respond .comment-reply-title { font-size: 22px; font-weight: 800; letter-spacing: var(--track-tight); }
.comment-form label { display: block; font-size: 13px; font-weight: 700; color: var(--sf-ink); margin-top: 14px; }
.comment-form input[type=text], .comment-form input[type=email], .comment-form input[type=url], .comment-form textarea { width: 100%; padding: 14px 16px; border-radius: 12px; border: none; box-shadow: inset 0 0 0 1.5px var(--sf-hairline-ink); font-family: var(--sf-font-sans); font-size: 15px; margin-top: 6px; box-sizing: border-box; }
.comment-form .form-submit { margin-top: 16px; }
.comment-form .submit { all: unset; cursor: pointer; background: var(--sf-ink); color: #fff; font-weight: 700; font-size: 14px; padding: 14px 24px; border-radius: 8px; }

/* ── Accessibility ────────────────────────────────────────────────────────────── */
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); white-space: nowrap; border: 0; padding: 0; margin: -1px; }
a.screen-reader-text:focus { display: inline-block; left: 12px; top: 12px; width: auto; height: auto; clip: auto; clip-path: none; background: #fff; color: var(--sf-ink); padding: 12px 18px; border-radius: 8px; z-index: 1000; font-weight: 700; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
:focus-visible { outline: 3px solid var(--sf-blue); outline-offset: 2px; }
