/* ============================================================
   MyCGPAtoPercentage.com — Design System
   Theme: Academic transcript / report-card stub
   ============================================================ */

:root {
  /* Color tokens */
  --ink: #1B2A4A;
  --ink-soft: #2A3B5C;
  --amber: #E8A33D;
  --amber-deep: #C8842A;
  --paper: #FAF8F3;
  --paper-dim: #F1ECE1;
  --slate: #5B6B82;
  --slate-light: #8A95A8;
  --line: #DDD6C6;
  --success: #2D7D5A;
  --success-bg: #E5F2EB;
  --danger: #C84B4B;
  --danger-bg: #FBEAEA;
  --white: #FFFFFF;

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;

  /* Radius / shadow */
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-card: 0 1px 2px rgba(27,42,74,0.06), 0 8px 24px rgba(27,42,74,0.08);
  --shadow-lift: 0 4px 12px rgba(27,42,74,0.1), 0 16px 40px rgba(27,42,74,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 var(--space-3);
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { margin: 0 0 var(--space-3); color: var(--ink-soft); }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 600;
  display: inline-block;
  margin-bottom: var(--space-2);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--white); padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--space-4);
  max-width: 1120px;
  margin: 0 auto;
  gap: var(--space-4);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  white-space: nowrap;
}
.brand__mark {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.brand span.brand-sub { color: var(--amber-deep); }

.main-nav { display: flex; align-items: center; gap: var(--space-5); }
.main-nav ul {
  display: flex; gap: var(--space-4); list-style: none; margin: 0; padding: 0;
  align-items: center;
}
.main-nav a {
  font-size: 0.92rem; font-weight: 500; color: var(--slate);
  padding: 6px 2px; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--ink); border-color: var(--amber); }

.has-dropdown { position: relative; }
.dropdown-trigger { display: flex; align-items: center; gap: 4px; cursor: pointer; background: none; border: none; font: inherit; color: var(--slate); font-size: 0.92rem; font-weight: 500; padding: 6px 2px; }
.dropdown-trigger:hover { color: var(--ink); }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift); min-width: 220px; padding: 6px;
  display: none; z-index: 50;
}
.has-dropdown:hover .dropdown-menu, .has-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 9px 12px; border-radius: 5px; font-size: 0.9rem; color: var(--ink-soft); border-bottom: none; }
.dropdown-menu a:hover { background: var(--paper-dim); color: var(--ink); }

.nav-toggle { display: none; }

@media (max-width: 880px) {
  .main-nav { position: fixed; inset: 0 0 0 auto; width: min(320px, 85vw); background: var(--white);
    transform: translateX(100%); transition: transform .25s ease; flex-direction: column;
    align-items: stretch; padding: 80px var(--space-4) var(--space-4); box-shadow: -8px 0 30px rgba(0,0,0,.12);
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav ul li { border-bottom: 1px solid var(--line); }
  .main-nav a { display: block; padding: 14px 4px; }
  .dropdown-menu { position: static; display: block; box-shadow: none; border: none; padding-left: 12px; }
  .has-dropdown:hover .dropdown-menu, .has-dropdown:focus-within .dropdown-menu { display: block; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer;
    padding: 8px; z-index: 110;
  }
  .nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(27,42,74,.4); z-index: 99; display: none; }
  .nav-backdrop.is-open { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 12px 22px; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; transition: transform .12s, box-shadow .12s, background .15s;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--ink-soft); box-shadow: var(--shadow-card); }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: var(--amber-deep); box-shadow: var(--shadow-card); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero {
  padding: var(--space-7) 0 var(--space-6);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-dim) 100%);
  border-bottom: 1px solid var(--line);
}
.hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-6); align-items: start; }
@media (max-width: 920px) { .hero__grid { grid-template-columns: 1fr; gap: var(--space-5); } }
.hero__lede { font-size: 1.1rem; color: var(--slate); max-width: 540px; }
.hero__badges { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-4); }
.hero__badge { font-size: 0.82rem; color: var(--slate); display: flex; align-items: center; gap: 6px; font-weight: 500; }
.hero__badge svg { color: var(--success); flex-shrink: 0; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: 0.82rem; color: var(--slate-light); padding: 14px 0;
  font-family: var(--font-mono);
}
.breadcrumbs a { color: var(--slate); }
.breadcrumbs a:hover { color: var(--ink); text-decoration: underline; }
.breadcrumbs .sep { margin: 0 6px; color: var(--line); }

/* ============================================================
   CALCULATOR — "Transcript Stub" component
   ============================================================ */
.calc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.calc-card__head {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-4) var(--space-4) var(--space-3);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); flex-wrap: wrap;
}
.calc-card__head h2 { color: var(--paper); margin: 0; font-size: 1.25rem; }
.calc-card__head p { color: var(--slate-light); margin: 0; font-size: 0.85rem; }

.scale-tabs { display: flex; gap: 6px; background: rgba(255,255,255,0.08); padding: 4px; border-radius: 8px; }
.scale-tabs button {
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600; color: var(--slate-light);
  background: transparent; border: none; padding: 7px 12px; border-radius: 6px; cursor: pointer;
  transition: background .15s, color .15s;
}
.scale-tabs button.is-active { background: var(--amber); color: var(--ink); }
.scale-tabs button:hover:not(.is-active) { color: var(--paper); }

.calc-card__body { padding: var(--space-5) var(--space-4); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); margin-bottom: var(--space-3); }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.field .hint { font-size: 0.78rem; color: var(--slate-light); margin-top: -2px; }
.field input[type="number"], .field input[type="text"], .field select {
  font-family: var(--font-mono); font-size: 1.05rem; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--paper);
  color: var(--ink); width: 100%; transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus { border-color: var(--amber-deep); background: var(--white); }
.field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%235B6B82' d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

.calc-actions { display: flex; gap: var(--space-3); margin-top: var(--space-4); flex-wrap: wrap; }
.calc-actions .btn { flex: 1; min-width: 140px; }

.error-msg {
  background: var(--danger-bg); color: var(--danger); border: 1px solid #f0c8c8;
  border-radius: var(--radius-sm); padding: 10px 14px; font-size: 0.88rem; font-weight: 500;
  margin-top: var(--space-3); display: none;
}
.error-msg.is-visible { display: block; }

/* ---------- Result: transcript stub ---------- */
.result-stub {
  margin-top: var(--space-5);
  display: none;
  position: relative;
  background: var(--paper-dim);
  border: 1px dashed var(--slate-light);
  border-radius: var(--radius);
  padding: var(--space-4);
}
.result-stub.is-visible { display: block; animation: stub-in .35s ease; }
@keyframes stub-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.result-stub::before, .result-stub::after {
  content: ""; position: absolute; width: 18px; height: 18px; background: var(--paper);
  border: 1px dashed var(--slate-light); border-radius: 50%; top: 50%; transform: translateY(-50%);
}
.result-stub::before { left: -10px; }
.result-stub::after { right: -10px; }

.result-stub__top { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-3); border-bottom: 1px dashed var(--line); padding-bottom: var(--space-3); }
.result-stub__label { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); }

.result-stamp {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--success); border: 2px solid var(--success);
  padding: 4px 10px; border-radius: 4px; transform: rotate(-3deg); background: var(--success-bg);
}

.result-stub__main { display: grid; grid-template-columns: 1fr auto; gap: var(--space-4); align-items: center; }
@media (max-width: 560px) { .result-stub__main { grid-template-columns: 1fr; text-align: center; } }
.result-stub__value { font-family: var(--font-mono); font-size: clamp(2.4rem, 8vw, 3.4rem); font-weight: 700; color: var(--ink); line-height: 1; }
.result-stub__value span { font-size: 0.45em; color: var(--slate); font-weight: 500; }
.result-stub__sub { font-size: 0.9rem; color: var(--slate); margin-top: 4px; }

.grade-pill {
  font-family: var(--font-mono); font-weight: 700; font-size: 1.4rem; color: var(--white);
  background: var(--ink); border-radius: 50%; width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-left: auto;
}
@media (max-width: 560px) { .grade-pill { margin: 0 auto; } }

.result-stub__breakdown { margin-top: var(--space-4); display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--space-3); }
.breakdown-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; }
.breakdown-item__label { font-size: 0.74rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.04em; font-family: var(--font-mono); }
.breakdown-item__value { font-family: var(--font-mono); font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-top: 2px; }

/* Subject table (grade calculator) */
.subject-table-wrap { overflow-x: auto; margin-top: var(--space-3); border: 1px solid var(--line); border-radius: var(--radius-sm); }
table.subject-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 480px; }
table.subject-table th { background: var(--ink); color: var(--paper); font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; padding: 10px 12px; text-align: left; }
table.subject-table td { padding: 8px 10px; border-bottom: 1px solid var(--line); }
table.subject-table tr:last-child td { border-bottom: none; }
table.subject-table input, table.subject-table select { font-family: var(--font-mono); font-size: 0.9rem; padding: 7px 9px; border: 1px solid var(--line); border-radius: 5px; width: 100%; min-width: 70px; }
.row-remove { background: var(--danger-bg); color: var(--danger); border: none; border-radius: 5px; width: 28px; height: 28px; cursor: pointer; font-weight: 700; }

.history-wrap { overflow-x: auto; margin-top: var(--space-3); }
table.history-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
table.history-table th { text-align: left; font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; color: var(--slate); padding: 8px 10px; border-bottom: 2px solid var(--line); }
table.history-table td { padding: 8px 10px; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.history-empty { color: var(--slate-light); font-size: 0.88rem; padding: var(--space-3) 0; text-align: center; }

/* ---------- Generic content sections ---------- */
.section { padding: var(--space-6) 0; }
.section-tight { padding: var(--space-5) 0; }
.section-alt { background: var(--paper-dim); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 680px; margin-bottom: var(--space-5); }
.section-head p { color: var(--slate); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: center; }
@media (max-width: 880px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.feature-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-4); }
.feature-card__icon { width: 40px; height: 40px; border-radius: 8px; background: var(--paper-dim); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-3); color: var(--amber-deep); }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-card p { font-size: 0.92rem; margin: 0; }

.tool-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-4); display: flex; flex-direction: column; gap: var(--space-2); transition: box-shadow .15s, border-color .15s; }
.tool-card:hover { box-shadow: var(--shadow-card); border-color: var(--slate-light); }
.tool-card__tag { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--amber-deep); font-weight: 700; }
.tool-card h3 { font-size: 1.1rem; margin: 0; }
.tool-card p { font-size: 0.88rem; margin: 0; flex-grow: 1; }
.tool-card .btn { align-self: flex-start; margin-top: var(--space-2); }

/* Article / prose content */
.prose { max-width: 760px; }
.prose h2 { margin-top: var(--space-6); }
.prose h3 { margin-top: var(--space-4); }
.prose ul, .prose ol { color: var(--ink-soft); padding-left: 1.3em; }
.prose li { margin-bottom: 8px; }
.prose blockquote { border-left: 3px solid var(--amber); margin: var(--space-4) 0; padding: 4px 0 4px var(--space-4); color: var(--slate); font-style: italic; }
.prose table { width: 100%; border-collapse: collapse; margin: var(--space-4) 0; font-size: 0.92rem; }
.prose table th { background: var(--ink); color: var(--paper); padding: 9px 12px; text-align: left; font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; }
.prose table td { padding: 8px 12px; border-bottom: 1px solid var(--line); }
.prose table tr:nth-child(even) { background: var(--paper-dim); }
.toc-box { background: var(--paper-dim); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-4); margin: var(--space-5) 0; }
.toc-box .eyebrow { margin-bottom: var(--space-2); }
.toc-box ol { margin: 0; padding-left: 1.2em; }
.toc-box a { color: var(--ink-soft); text-decoration: underline; text-decoration-color: var(--line); }
.toc-box a:hover { color: var(--ink); text-decoration-color: var(--ink); }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 4px; display: flex; justify-content: space-between; align-items: center; gap: var(--space-3);
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--ink);
}
.faq-q .plus { font-family: var(--font-mono); font-size: 1.3rem; color: var(--amber-deep); transition: transform .2s; flex-shrink: 0; }
.faq-item.is-open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a div { padding: 0 4px 18px; color: var(--slate); font-size: 0.95rem; }

/* CTA banner */
.cta-banner {
  background: var(--ink); color: var(--paper); border-radius: var(--radius);
  padding: var(--space-6) var(--space-5); text-align: center; position: relative; overflow: hidden;
}
.cta-banner h2 { color: var(--paper); }
.cta-banner p { color: var(--slate-light); max-width: 520px; margin: 0 auto var(--space-4); }

/* Ad slot placeholders */
.ad-slot {
  background: var(--paper-dim); border: 1px dashed var(--line); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: var(--slate-light);
  font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: .05em;
  min-height: 100px; margin: var(--space-5) 0;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--slate-light); padding: var(--space-7) 0 var(--space-4); margin-top: var(--space-7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-5); padding-bottom: var(--space-5); border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--paper); margin-bottom: 10px; }
.footer-grid p { color: var(--slate-light); font-size: 0.88rem; max-width: 320px; }
.footer-col h4 { color: var(--paper); font-size: 0.85rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: var(--space-3); font-family: var(--font-mono); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { color: var(--slate-light); font-size: 0.9rem; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--space-4); flex-wrap: wrap; gap: var(--space-3); font-size: 0.82rem; color: var(--slate-light); }
.footer-bottom a { color: var(--slate-light); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.2); }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.tag-list { display: flex; gap: 8px; flex-wrap: wrap; margin: var(--space-3) 0; }
.tag-list span { font-family: var(--font-mono); font-size: 0.75rem; background: var(--paper-dim); border: 1px solid var(--line); padding: 4px 10px; border-radius: 20px; color: var(--slate); }

.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.blog-card__body { padding: var(--space-4); display: flex; flex-direction: column; gap: 8px; flex-grow: 1; }
.blog-card__meta { font-family: var(--font-mono); font-size: 0.75rem; color: var(--slate-light); }
.blog-card h3 { font-size: 1.1rem; margin: 0; }
.blog-card p { font-size: 0.9rem; flex-grow: 1; }

.related-tools { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: var(--space-3); margin: var(--space-5) 0; }
