/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #f4f6fa;
  --surface: #ffffff;
  --surface-2: #eef2f7;
  --text: #16202c;
  --muted: #5b6878;
  --border: #dfe5ee;
  --primary: #0f2a47;
  --primary-2: #17406b;
  --accent: #1aa58a;
  --accent-soft: #dff5ee;
  --up: #c8372d;
  --up-soft: #fbe9e7;
  --down: #1f8a5a;
  --down-soft: #e3f5ea;
  --s1: #0f2a47;
  --s2: #e0762b;
  --s3: #1aa58a;
  --ad: #8a94a6;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(15, 42, 71, .08), 0 1px 2px rgba(15, 42, 71, .06);
  --gutter: clamp(16px, 4vw, 32px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: clip;
}
img, svg, canvas { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, select { font: inherit; color: inherit; }
a { color: var(--primary-2); text-decoration: none; }
a:hover { text-decoration: underline; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
[hidden] { display: none !important; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: min(1120px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem; background: var(--primary); color: #fff; z-index: 9999; border-radius: 8px; font-weight: 500; }
.skip-link:focus { top: 1rem; }
.muted { color: var(--muted); }
.section { padding-block: clamp(40px, 6vw, 72px); }
.section h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .5rem; }
.section-lead { color: var(--muted); max-width: 70ch; margin-bottom: 1.5rem; }

/* =============================================================
   4. Header / hero
   ============================================================= */
.site-header { background: var(--surface); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 60px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; font-size: 1.15rem; color: var(--primary); letter-spacing: -0.01em; }
.brand b { color: var(--accent); }
.brand-mark { width: 30px; height: 30px; }
.site-nav { display: flex; gap: 1.25rem; font-size: .92rem; font-weight: 500; }
.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--primary); text-decoration: none; }
.hero { padding-block: clamp(28px, 5vw, 56px) 20px; text-align: center; }
.eyebrow { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: .35rem; align-items: center; background: var(--accent-soft); color: #0d5c4c; border: 1px solid #bfe9dc; padding: .35rem .85rem; border-radius: 999px; font-size: .85rem; font-weight: 500; margin-bottom: 1rem; }
.eyebrow strong { font-weight: 800; }
.eyebrow-src { color: #3e7f70; font-weight: 400; }
.hero h1 { font-size: clamp(1.7rem, 4.2vw, 2.7rem); max-width: 22ch; margin-inline: auto; color: var(--primary); }
.lead { color: var(--muted); max-width: 72ch; margin: 1rem auto 0; font-size: 1.05rem; }

/* =============================================================
   5. Tool card & form
   ============================================================= */
.tool { padding-bottom: 8px; }
.tool-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(18px, 3vw, 32px); }
.noscript { background: var(--up-soft); color: var(--up); padding: 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; }
.form-grid { display: grid; gap: 1.5rem; }
.form-section h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; margin-bottom: .9rem; }
.fields { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.field { display: flex; flex-direction: column; gap: .35rem; font-size: .92rem; font-weight: 500; }
.field > span:first-child { display: flex; flex-direction: column; }
.field small { font-weight: 400; color: var(--muted); font-size: .78rem; line-height: 1.3; }
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap input { width: 100%; padding: .7rem 3.2rem .7rem .85rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fbfcfe; font-size: 1rem; font-variant-numeric: tabular-nums; transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out); }
.input-wrap i { position: absolute; right: .8rem; font-style: normal; color: var(--muted); font-size: .85rem; pointer-events: none; }
.input-wrap input:focus, select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26, 165, 138, .15); outline: none; }
.input-wrap input[aria-invalid="true"] { border-color: var(--up); }
select { width: 100%; padding: .7rem .85rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fbfcfe; font-size: 1rem; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235b6878' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .85rem center; padding-right: 2.2rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.form-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; border-top: 1px solid var(--border); padding-top: 1.25rem; }
.form-error { width: 100%; color: var(--up); font-size: .92rem; font-weight: 500; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; padding: .8rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: .98rem; transition: transform .2s var(--ease-out), background .2s var(--ease-out), box-shadow .2s var(--ease-out); white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 16px rgba(15, 42, 71, .25); }
.btn-primary:hover { background: var(--primary-2); }
.btn-ghost { background: var(--surface-2); color: var(--primary); }
.btn-ghost:hover { background: #e3e9f1; }
.btn-lg { font-size: 1.08rem; padding: 1rem 1.8rem; }
.btn-sm { font-size: .88rem; padding: .6rem 1rem; }
.btn.is-done { background: var(--down); color: #fff; }

/* Result */
.result { margin-top: 1.75rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.result-head { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.result-label { color: var(--muted); font-weight: 500; font-size: .95rem; }
.result-value { font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; color: var(--primary); line-height: 1.05; font-variant-numeric: tabular-nums; }
.result-value small { font-size: 1.1rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.result-delta { display: inline-flex; flex-wrap: wrap; gap: .5rem; align-items: baseline; margin-top: .5rem; font-weight: 700; padding: .35rem .8rem; border-radius: 999px; font-size: 1.05rem; }
.result-delta[data-dir="up"] { background: var(--up-soft); color: var(--up); }
.result-delta[data-dir="down"] { background: var(--down-soft); color: var(--down); }
.result-delta[data-dir="same"] { background: var(--surface-2); color: var(--muted); }
.result-delta span:last-child { font-weight: 500; font-size: .92rem; }
.result-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem 1.2rem; background: var(--surface-2); border-radius: var(--radius-sm); padding: 1rem 1.2rem; align-content: start; }
.result-facts dt { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.result-facts dd { font-weight: 700; font-size: 1.05rem; font-variant-numeric: tabular-nums; }
.breakdown { margin-top: 1.5rem; }
.breakdown-title { font-size: .88rem; color: var(--muted); font-weight: 600; margin-bottom: .5rem; }
.bar { display: flex; height: 44px; border-radius: var(--radius-sm); overflow: hidden; font-size: .85rem; }
.bar > span { display: flex; flex-direction: column; justify-content: center; padding-inline: .8rem; color: #fff; white-space: nowrap; overflow: hidden; line-height: 1.2; min-width: 0; transition: width .5s var(--ease-out); }
.bar > span b { font-weight: 600; opacity: .85; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; }
.bar-capital { background: var(--primary); }
.bar-interes { background: var(--s2); }
.disclaimer { margin-top: 1.25rem; font-size: .85rem; color: var(--muted); background: #fff8e6; border: 1px solid #f3e2b3; padding: .75rem 1rem; border-radius: var(--radius-sm); }
.privacy-badge { text-align: center; color: var(--muted); font-size: .88rem; margin-top: 1rem; }

/* =============================================================
   6. Ads (placeholders)
   ============================================================= */
.ad-slot { display: flex; align-items: center; justify-content: center; border: 2px dashed #c9d2df; background: repeating-linear-gradient(135deg, #f7f9fc 0 12px, #f0f3f8 12px 24px); color: var(--ad); font-weight: 700; letter-spacing: .25em; font-size: .85rem; border-radius: var(--radius-sm); }
.ad-slot--leaderboard { min-height: 100px; margin: 1.5rem auto 0; max-width: 970px; }
.ad-slot--incontent { min-height: 250px; max-width: 336px; margin: 2rem auto; }
.ad-slot--popup { width: 300px; height: 250px; max-width: 100%; margin: .5rem auto 1rem; }
.ad-slot--toast { width: 300px; height: 90px; max-width: 100%; }
.ad-dialog { border: 0; border-radius: var(--radius); padding: 1.5rem; max-width: 380px; width: calc(100% - 2rem); box-shadow: 0 30px 60px rgba(0,0,0,.3); text-align: center; }
.ad-dialog::backdrop { background: rgba(15, 42, 71, .55); }
.ad-dialog-title { font-weight: 700; margin-bottom: .5rem; padding-right: 1.5rem; }
.ad-dialog-close, .ad-toast-close { position: absolute; top: .5rem; right: .5rem; width: 32px; height: 32px; border-radius: 50%; background: var(--surface-2); font-size: 1.3rem; line-height: 1; display: grid; place-items: center; }
.ad-toast { position: fixed; right: 16px; bottom: 16px; z-index: 60; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 2.2rem .75rem .75rem; box-shadow: var(--shadow); max-width: calc(100vw - 32px); animation: toast-in .5s var(--ease-out); }
@keyframes toast-in { from { transform: translateY(20px); opacity: 0; } }

/* =============================================================
   7. Scenarios / compare / charts
   ============================================================= */
.scenarios { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.scenario { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.2rem 1.2rem; border-top: 4px solid var(--sc, var(--s1)); display: flex; flex-direction: column; gap: .75rem; }
.scenario-head { display: flex; align-items: center; gap: .5rem; }
.scenario-head input { flex: 1; min-width: 0; font-weight: 700; border: 1px solid transparent; border-radius: 6px; padding: .3rem .5rem; background: transparent; font-size: 1rem; }
.scenario-head input:hover, .scenario-head input:focus { border-color: var(--border); background: #fbfcfe; }
.scenario-remove { color: var(--muted); font-size: 1.2rem; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; }
.scenario-remove:hover { background: var(--up-soft); color: var(--up); }
.scenario .field { font-size: .85rem; }
.scenario .input-wrap input, .scenario select { padding-block: .55rem; font-size: .95rem; }
.quick { display: flex; gap: .35rem; flex-wrap: wrap; }
.quick button { font-size: .75rem; padding: .25rem .55rem; border-radius: 999px; background: var(--surface-2); font-weight: 600; }
.quick button:hover { background: #e3e9f1; }
.scenario-kpi { margin-top: auto; padding-top: .75rem; border-top: 1px dashed var(--border); display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; font-size: .82rem; color: var(--muted); }
.scenario-kpi b { display: block; color: var(--text); font-size: 1.05rem; font-variant-numeric: tabular-nums; }
.scenario-actions { margin: 1rem 0 2rem; }
.compare-table-wrap, .amort-table-wrap { overflow-x: auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
table { border-collapse: collapse; width: 100%; font-size: .92rem; font-variant-numeric: tabular-nums; }
th, td { padding: .7rem .9rem; text-align: right; border-bottom: 1px solid var(--border); white-space: nowrap; }
th:first-child, td:first-child { text-align: left; }
thead th { background: var(--surface-2); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); position: sticky; top: 0; }
tbody tr:last-child td { border-bottom: 0; }
.compare-table thead th[data-sc] { color: var(--text); border-top: 3px solid var(--sc); text-transform: none; font-size: .95rem; }
.compare-table td.best { color: var(--down); font-weight: 700; }
.compare-table .bars { display: block; height: 6px; border-radius: 3px; background: var(--sc, var(--s1)); margin-top: .3rem; margin-left: auto; }
.chart-block { margin-top: 2rem; }
.chart-block h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.chart-hint { font-size: .85rem; color: var(--muted); margin-bottom: .75rem; }
.chart-wrap { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: .75rem; }
.chart-wrap canvas { width: 100%; height: auto; touch-action: pan-y; }
.chart-tooltip { position: absolute; pointer-events: none; background: var(--primary); color: #fff; padding: .45rem .7rem; border-radius: 8px; font-size: .82rem; line-height: 1.35; white-space: nowrap; box-shadow: 0 6px 16px rgba(0,0,0,.2); z-index: 5; transform: translate(-50%, calc(-100% - 12px)); }
.chart-tooltip b { font-weight: 700; }
.legend { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; margin-top: .75rem; font-size: .88rem; }
.legend li::before { content: ""; display: inline-block; width: 12px; height: 12px; border-radius: 3px; background: var(--sc); margin-right: .45rem; vertical-align: -1px; }
.range-btns { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .75rem; }
.range-btns button { padding: .4rem .9rem; border-radius: 999px; background: var(--surface-2); font-size: .85rem; font-weight: 600; }
.range-btns button.is-active { background: var(--primary); color: #fff; }
.export-bar { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.export-note { width: 100%; font-size: .88rem; color: var(--muted); }

/* Amortization */
.tabs { display: flex; gap: .4rem; flex-wrap: wrap; margin: 1rem 0; }
.tabs button { padding: .5rem 1rem; border-radius: 999px; background: var(--surface-2); font-weight: 600; font-size: .9rem; border-left: 4px solid var(--sc, var(--s1)); }
.tabs button[aria-selected="true"] { background: var(--primary); color: #fff; }
.table-controls { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; margin-bottom: .75rem; font-size: .9rem; color: var(--muted); }
.switch { display: inline-flex; align-items: center; gap: .5rem; cursor: pointer; }
.amort-table td:nth-child(2) { text-align: left; }
.amort-table tr.is-revision td { background: #fff8e6; }
.amort-table tr.is-year td { background: var(--surface-2); font-weight: 600; }
#amort-more { margin-top: 1rem; }

/* =============================================================
   8. Content sections
   ============================================================= */
.steps { list-style: none; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); counter-reset: step; }
.steps li { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; position: relative; counter-increment: step; }
.steps li::before { content: counter(step); position: absolute; top: 1.1rem; right: 1.2rem; width: 30px; height: 30px; border-radius: 50%; background: var(--accent-soft); color: #0d5c4c; display: grid; place-items: center; font-weight: 800; font-size: .9rem; }
.steps svg { width: 36px; height: 36px; color: var(--accent); margin-bottom: .75rem; }
.steps h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.steps p { color: var(--muted); font-size: .95rem; }
.cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; }
.card h3 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--primary); }
.card p { color: var(--muted); font-size: .95rem; }
.prose { max-width: 800px; }
.prose h3 { font-size: 1.2rem; margin: 1.5rem 0 .5rem; }
.prose p { margin-bottom: 1rem; }
.faq { display: grid; gap: .6rem; max-width: 800px; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0 1.1rem; }
.faq summary { cursor: pointer; font-weight: 600; padding: .95rem 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-weight: 800; font-size: 1.2rem; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding-bottom: 1rem; color: var(--muted); }
.site-footer { background: var(--primary); color: #dbe4ef; padding-block: 2.5rem; margin-top: 2rem; font-size: .9rem; }
.footer-inner { display: grid; gap: .75rem; }
.site-footer .muted { color: #9fb0c4; }
.site-footer a { color: #fff; }
.legal { max-width: 800px; padding-block: 2rem 4rem; }
.legal h1 { font-size: 2rem; margin-bottom: 1rem; }
.legal h2 { font-size: 1.25rem; margin: 1.5rem 0 .5rem; }
.legal p, .legal li { margin-bottom: .75rem; color: var(--muted); }
.todo { background: #fff8e6; border: 1px dashed #e4c76a; padding: .5rem .8rem; border-radius: 6px; color: #7a5b00; }

/* =============================================================
   9. Responsive
   ============================================================= */
@media (min-width: 720px) {
  .result-head { grid-template-columns: 1.3fr 1fr; align-items: start; }
}
@media (max-width: 539px) {
  .site-nav { display: none; }
  .hero { padding-top: 18px; }
  .lead { font-size: .95rem; }
  .ad-toast { right: 8px; bottom: 8px; left: 8px; padding: 1.9rem .5rem .5rem; }
  .ad-slot--toast { width: 100%; height: 60px; }
  .result-facts { grid-template-columns: 1fr 1fr; }
  .btn-lg { width: 100%; }
  .export-bar .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .ad-toast { animation: none; }
}
@media print {
  .site-header, .ad-slot, .ad-toast, .ad-dialog, .export-bar, .form-actions, .site-footer nav, .privacy-badge, .scenario-actions, #amort-more { display: none !important; }
  body { background: #fff; }
  .tool-card, .scenario, .compare-table-wrap, .amort-table-wrap { box-shadow: none; }
}

/* =============================================================
   10. Guías / artículos
   ============================================================= */
.article { max-width: 780px; padding-block: 1.5rem 4rem; }
.article h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); color: var(--primary); margin: .5rem 0 1rem; }
.article h2 { font-size: 1.35rem; margin: 2rem 0 .6rem; }
.article p, .article li { margin-bottom: .9rem; color: #2b3644; }
.article ul, .article ol { padding-left: 1.4rem; }
.article strong { color: var(--text); }
.crumbs { font-size: .85rem; color: var(--muted); }
.lead-article { font-size: 1.1rem; color: var(--muted) !important; }
.small { font-size: .85rem; }
.formula { background: var(--surface-2); border-radius: var(--radius-sm); padding: .9rem 1.1rem; font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-size: .95rem; text-align: center; }
.euribor-now { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1rem 0 1.25rem; text-align: center; }
.euribor-now-label { color: var(--muted); font-weight: 500; margin-bottom: .2rem !important; }
.euribor-now-value { font-size: clamp(2.4rem, 7vw, 3.6rem); font-weight: 800; color: var(--primary); letter-spacing: -0.03em; line-height: 1.05; margin-bottom: .3rem !important; }
.cta-box { background: var(--primary); color: #fff; border-radius: var(--radius); padding: 1.75rem; margin: 2.5rem 0 2rem; text-align: center; }
.cta-box h2 { margin: 0 0 .5rem; color: #fff; }
.cta-box p { color: #dbe4ef; max-width: 60ch; margin: 0 auto 1.1rem; }
.cta-box .btn-primary { background: var(--accent); color: #fff; box-shadow: none; }
.cta-box .btn-primary:hover { background: #158f77; }
.more-guides h2 { font-size: 1.1rem; margin: 0 0 .5rem; }
.more-guides ul { list-style: none; padding: 0; display: grid; gap: .5rem; }
.more-guides a { display: block; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .8rem 1rem; font-weight: 500; }
.more-guides a:hover { border-color: var(--accent); text-decoration: none; }
.guides { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.guides a { display: block; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem; color: inherit; transition: border-color .2s var(--ease-out), transform .2s var(--ease-out); }
.guides a:hover { border-color: var(--accent); text-decoration: none; transform: translateY(-2px); }
.guides h3 { font-size: 1.02rem; color: var(--primary); margin-bottom: .4rem; }
.guides p { color: var(--muted); font-size: .9rem; }
.guides span { display: inline-block; margin-top: .6rem; color: var(--accent); font-weight: 600; font-size: .9rem; }
