/* ─────────────────────────────────────────────────────────────
   MOUNTAINVIEW ANIMAL HOSPITAL — BLOG / NEWSLETTERS
   Shares the design system of the main site (index.html)
   ───────────────────────────────────────────────────────────── */

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── DESIGN TOKENS (mirrors main site) ─────────────────── */
:root {
  --bg:          #F5F4EE;
  --bg-warm:     #EBF5FB;
  --bg-dark:     #333333;
  --bg-darker:   #1E1E1E;
  --cream:       #D0EBF5;
  --accent:      #008CBA;
  --accent-h:    #007095;
  --green:       #006A8F;
  --green-light: #0088B5;
  --text:        #222222;
  --text-mid:    #555555;
  --text-muted:  #74746A;
  --border:      #E7E7E7;
  --gold:        #FBBC04;

  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.14);
  --shadow-xl:  0 24px 80px rgba(0,0,0,.18);
}

/* ─── BASE ───────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

.section-divider { width: 48px; height: 2px; background: var(--accent); margin: 20px 0 32px; }

/* ─── ACCEPTING BANNER ───────────────────────────────────── */
.accepting-banner {
  background: var(--bg-dark);
  padding: 11px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.accepting-banner p { color: rgba(255,255,255,.8); font-size: 13px; letter-spacing: .02em; }
.accepting-banner strong { color: #fff; font-weight: 600; }
.accepting-banner a { color: #7dd3f0; font-weight: 600; text-decoration: underline; }

/* ─── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  font-size: 12.5px;
  letter-spacing: .02em;
  padding: 9px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-left { display: flex; gap: 20px; align-items: center; flex-wrap: nowrap; }
.topbar-right { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }
.topbar a { color: rgba(255,255,255,.7); transition: color .2s; white-space: nowrap; }
.topbar a:hover { color: #fff; }
.topbar span { white-space: nowrap; }
.topbar-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.3); flex-shrink: 0; }
.topbar-accent { color: var(--accent) !important; font-weight: 600; }
.fear-free-pill { display: flex; align-items: center; }
.fear-free-pill img { height: 34px; width: auto; display: block; }
@media (max-width: 900px) { .topbar-left .topbar-hide-m { display: none; } }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,244,238,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-mid);
  padding: 7px 12px; border-radius: var(--radius-sm);
  transition: all .18s; letter-spacing: .01em; white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: var(--bg-warm); }
.nav-links a.active { color: var(--accent); font-weight: 600; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px; min-width: 200px; box-shadow: var(--shadow-lg); z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 9px 14px; font-size: 13px; color: var(--text-mid); border-radius: var(--radius-sm); white-space: nowrap; }
.nav-dropdown-menu a:hover { background: var(--bg-warm); color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-book-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  font-size: 13.5px; font-weight: 600; letter-spacing: .03em;
  padding: 10px 22px; border-radius: 6px; white-space: nowrap;
  transition: all .2s ease; box-shadow: 0 2px 10px rgba(0,140,186,.25); flex-shrink: 0;
}
.nav-book-btn:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,140,186,.35); }
.nav-book-btn svg { width: 14px; height: 14px; }

/* ─── POST HEADER ────────────────────────────────────────── */
.post-header { padding: 72px 0 56px; }
.post-header-inner { max-width: 860px; }
.post-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--text-muted); letter-spacing: .02em; margin-bottom: 28px;
}
.post-breadcrumb a { color: var(--text-muted); transition: color .2s; }
.post-breadcrumb a:hover { color: var(--accent); }
.post-breadcrumb svg { width: 12px; height: 12px; flex-shrink: 0; }
.post-tag {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
  padding: 6px 14px; border: 1px solid var(--accent); border-radius: 100px; margin-bottom: 22px;
}
.post-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.08; letter-spacing: -.02em;
  margin-bottom: 24px;
}
.post-title em { font-style: italic; color: var(--green); }
.post-meta {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-muted);
}
.post-meta span { display: inline-flex; align-items: center; gap: 7px; }
.post-meta svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

/* ─── IN THIS ISSUE ──────────────────────────────────────── */
.toc-chips { display: flex; gap: 10px; flex-wrap: wrap; margin: 36px 0 0; }
.toc-chips a {
  font-size: 12.5px; font-weight: 600; color: var(--green);
  background: var(--bg-warm); border: 1px solid rgba(0,140,186,.25);
  padding: 8px 16px; border-radius: 100px; transition: all .2s;
}
.toc-chips a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ─── ARTICLE BODY ───────────────────────────────────────── */
.post-wrap { padding: 24px 0 96px; }
.article { max-width: 820px; }
.article > p {
  font-size: 16.5px; font-weight: 300; color: #383838;
  line-height: 1.85; margin-bottom: 22px;
}
.article > p > strong { font-weight: 600; color: var(--text); }
.article a:not(.btn) { color: var(--accent); font-weight: 500; border-bottom: 1px solid rgba(0,140,186,.35); transition: color .2s, border-color .2s; }
.article a:not(.btn):hover { color: var(--accent-h); border-color: var(--accent-h); }

.article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 400; line-height: 1.15; letter-spacing: -.01em;
  margin: 64px 0 8px; scroll-margin-top: 100px;
}
.article h2 em { font-style: italic; color: var(--green); }
.article h2 + .section-divider { margin: 16px 0 28px; }
.article h3 {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 600; letter-spacing: -.01em;
  margin: 40px 0 14px; color: var(--text);
}
.article h3 em { font-style: italic; color: var(--accent); }

/* styled lists */
.article ul.checklist { margin: 6px 0 26px; display: flex; flex-direction: column; gap: 14px; }
.article ul.checklist li { display: flex; gap: 14px; font-size: 16px; font-weight: 300; color: #383838; line-height: 1.7; }
.article ul.checklist li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 12px;
}

/* figure & images */
.article figure { margin: 40px 0; }
.article figure img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.article figcaption { font-size: 12.5px; color: var(--text-muted); margin-top: 12px; text-align: center; line-height: 1.6; }

/* callout / note boxes */
.note-box {
  background: var(--bg-warm); border: 1px solid rgba(0,140,186,.25);
  border-radius: var(--radius-lg); padding: 26px 30px; margin: 32px 0;
}
.note-box p { font-size: 15.5px; color: #383838; line-height: 1.75; margin: 0; }
.note-box p + p { margin-top: 12px; }
.note-box strong { color: var(--green); }

.credit-line { font-size: 12.5px; color: var(--text-muted); margin-top: 18px; line-height: 1.6; }

/* TUX column panel */
.tux-panel {
  background: var(--bg-warm);
  border: 1px solid rgba(0,140,186,.2);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  margin: 56px 0;
  display: flex; gap: 36px; align-items: flex-start;
  position: relative; overflow: hidden;
}
.tux-panel::after {
  content: 'TIME WITH TUX'; position: absolute; right: -12px; bottom: -6px;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 4.2rem; color: rgba(0,140,186,.07); pointer-events: none; white-space: nowrap;
}
.tux-panel img { width: 130px; flex-shrink: 0; filter: drop-shadow(0 8px 16px rgba(0,0,0,.12)); }
.tux-panel-body h3 { margin: 0 0 14px; font-size: 1.7rem; }
.tux-panel-body p { font-size: 15.5px; font-weight: 300; color: #383838; line-height: 1.8; margin-bottom: 16px; }
.tux-panel-body p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .tux-panel { flex-direction: column; padding: 30px 26px; }
  .tux-panel img { width: 96px; }
}

/* download cards (lump charts) */
.download-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 36px 0; }
@media (max-width: 640px) { .download-grid { grid-template-columns: 1fr; } }
.download-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 24px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .28s ease, box-shadow .28s ease;
}
.download-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.download-card-thumb {
  border-radius: var(--radius-lg); overflow: hidden; background: #fff;
  border: 1px solid var(--border); aspect-ratio: 4/5; display: flex; align-items: flex-start; justify-content: center;
}
.download-card-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.download-card h4 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.download-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.download-card .btn { align-self: flex-start; }

/* hours table (light theme) */
.hours-table { margin: 28px 0 8px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.hours-row-l {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 14px 24px; font-size: 14.5px;
  background: #fff; border-bottom: 1px solid var(--border);
}
.hours-row-l:nth-child(even) { background: var(--bg-warm); }
.hours-row-l:last-child { border-bottom: none; }
.hours-day-l { color: var(--text-mid); font-weight: 400; }
.hours-time-l { color: var(--text); font-weight: 600; white-space: nowrap; }
.hours-time-l.closed { color: #c0392b; }

/* emergency card (light theme, mirrors main site) */
.emergency-card {
  background: #fff; border: 1.5px solid #fde8dc;
  border-radius: var(--radius-xl); padding: 28px 32px; margin: 32px 0;
}
.emergency-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.emergency-icon { font-size: 20px; }
.emergency-title { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #c0392b; }
.emergency-item { padding: 12px 0; border-bottom: 1px solid #fde8dc; }
.emergency-item:last-child { border-bottom: none; }
.emergency-name { font-size: 13.5px; font-weight: 500; color: var(--text); }
.emergency-phone { font-size: 16px; font-weight: 600; color: #c0392b; margin-top: 2px; }
.emergency-note { font-size: 12px; color: var(--text-muted); margin-top: 2px; line-height: 1.6; }

/* event box (Meet the Doctors) */
.event-box {
  background: var(--bg-dark); color: #fff;
  border-radius: var(--radius-xl); padding: 48px;
  margin: 36px 0; text-align: center; position: relative; overflow: hidden;
}
.event-box::before {
  content: ''; position: absolute; top: -70px; right: -70px;
  width: 260px; height: 260px; border-radius: 50%; background: rgba(0,140,186,.18);
}
.event-box > * { position: relative; z-index: 1; }
.event-box h3 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600; letter-spacing: .01em; margin-bottom: 8px; color: #fff;
}
.event-box .event-when { font-size: 15px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #7dd3f0; margin-bottom: 22px; }
.event-box p { font-size: 15.5px; font-weight: 300; color: rgba(255,255,255,.85); line-height: 1.8; max-width: 560px; margin: 0 auto 10px; }
.event-past-note {
  display: inline-block; margin-top: 20px; font-size: 12.5px; font-weight: 600;
  color: #ffd27d; background: rgba(255,210,125,.12);
  border: 1px solid rgba(255,210,125,.35); border-radius: 100px; padding: 7px 16px;
}

/* two-column figure row */
.fig-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; margin: 36px 0; }
@media (max-width: 700px) { .fig-row { grid-template-columns: 1fr; } }

/* ─── POST FOOTER (prev/next) ────────────────────────────── */
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 72px; }
@media (max-width: 640px) { .post-nav { grid-template-columns: 1fr; } }
.post-nav a {
  background: var(--bg-warm); border: 1px solid rgba(0,140,186,.2);
  border-radius: var(--radius-lg); padding: 22px 26px;
  display: flex; flex-direction: column; gap: 5px; transition: all .22s ease;
}
.post-nav a:hover { transform: translateY(-3px); box-shadow: var(--shadow); background: #fff; }
.post-nav a.next { text-align: right; grid-column: 2; }
.post-nav a.next-only { grid-column: 1 / -1; }
.post-nav .label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.post-nav .title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.post-nav a:hover .title { color: var(--accent); }

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band { background: var(--accent); padding: 80px 0; overflow: hidden; position: relative; }
.cta-band::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.07);
}
.cta-band::after {
  content: ''; position: absolute; bottom: -100px; left: 10%;
  width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.05);
}
.cta-band-inner {
  position: relative; z-index: 1; display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-band-text h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; color: #fff; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 10px;
}
.cta-band-text p { font-size: 15px; color: rgba(255,255,255,.75); font-weight: 300; }
.cta-band-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  padding: 14px 28px; border-radius: 100px; transition: all .22s ease;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 20px rgba(0,140,186,.28); }
.btn-primary:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,140,186,.38); }
.btn-outline { border: 1.5px solid var(--text); color: var(--text); }
.btn-outline:hover { background: var(--text); color: var(--bg); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-white { background: #fff; color: var(--accent); box-shadow: none; }
.btn-white:hover { background: rgba(255,255,255,.9); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn svg { width: 16px; height: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ─── BLOG INDEX ─────────────────────────────────────────── */
.blog-hero { padding: 88px 0 40px; max-width: 860px; }
.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 300; line-height: 1.06; letter-spacing: -.02em; margin-bottom: 24px;
}
.blog-hero h1 em { font-style: italic; color: var(--green); }
.blog-hero p { font-size: 17px; font-weight: 300; color: var(--text-mid); line-height: 1.75; max-width: 620px; }

.post-list { padding: 32px 0 96px; display: flex; flex-direction: column; gap: 40px; }
.post-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden; display: grid; grid-template-columns: 340px 1fr;
  transition: transform .28s ease, box-shadow .28s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card-thumb { position: relative; overflow: hidden; min-height: 260px; background: var(--bg-warm); }
.post-card-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-card-thumb .vol-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(30,30,30,.85); color: #fff; backdrop-filter: blur(6px);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px;
}
.post-card-body { padding: 36px 40px; display: flex; flex-direction: column; gap: 14px; }
.post-card-date { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.post-card-body h2 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 400; line-height: 1.15; letter-spacing: -.01em;
}
.post-card-body h2 a:hover { color: var(--green); }
.post-card-body h2 em { font-style: italic; color: var(--green); }
.post-card-body p { font-size: 14.5px; font-weight: 300; color: var(--text-mid); line-height: 1.75; flex: 1; }
.post-card-topics { display: flex; gap: 8px; flex-wrap: wrap; }
.post-card-topics span {
  font-size: 11.5px; font-weight: 600; color: var(--green);
  background: var(--bg-warm); border: 1px solid rgba(0,140,186,.2);
  padding: 5px 12px; border-radius: 100px;
}
.post-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
.pdf-link { font-size: 12.5px; color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; }
.pdf-link:hover { color: var(--accent); }
.pdf-link svg { width: 14px; height: 14px; }
@media (max-width: 900px) {
  .post-card { grid-template-columns: 1fr; }
  .post-card-thumb { min-height: 220px; }
  .post-card-body { padding: 28px 26px; }
}

.archive-note {
  margin-top: 16px; padding: 20px 26px;
  background: var(--bg-warm); border: 1px dashed rgba(0,140,186,.35);
  border-radius: var(--radius-lg); font-size: 13.5px; color: var(--text-mid); line-height: 1.7;
}
.archive-note strong { color: var(--green); }

/* ─── FOOTER (mirrors main site) ─────────────────────────── */
footer { background: var(--bg-darker); padding: 80px 0 40px; color: rgba(255,255,255,.55); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-logo-wrap {
  display: inline-block; background: rgba(255,255,255,.92);
  border-radius: 6px; padding: 8px 14px; margin-bottom: 24px;
}
.footer-logo-wrap img { height: 44px; width: auto; display: block; }
.footer-brand p { font-size: 13.5px; line-height: 1.75; font-weight: 300; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); transition: all .2s;
}
.footer-social a:hover { border-color: rgba(255,255,255,.3); color: #fff; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.5); font-weight: 300; transition: color .2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.07);
  font-size: 12.5px; color: rgba(255,255,255,.3); gap: 20px; flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: rgba(255,255,255,.55); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
