/* ============================================================
   app.css -- shared styling for the rebuilt deslatte.net pages
   Cream-and-serif theme, matched to the redesigned index.html
   ============================================================ */
:root {
  --cream: #f7f1e8;
  --cream-deep: #efe5d3;
  --paper: #fbf6ed;
  --ink: #3a2e24;
  --ink-soft: #5c4a3a;
  --accent: #8a5a3b;
  --accent-deep: #6e4428;
  --gold: #b8924a;
  --shadow: rgba(80, 50, 20, 0.12);
  --line: #e3d6bf;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-deep); }
a:hover { color: var(--accent); }
code {
  background: var(--cream-deep);
  padding: 0.1rem 0.35rem;
  border-radius: 2px;
  font-size: 0.88em;
}

/* ---------- Navigation ---------- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 241, 232, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-deep);
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
}
nav .brand a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--accent-deep); text-decoration: none;
  letter-spacing: 0.03em;
}
nav ul { list-style: none; display: flex; gap: 1.6rem; flex-wrap: wrap; }
nav a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s ease;
}
nav a:hover { color: var(--accent); }

/* ---------- Hamburger toggle (shown on mobile only) ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 22px; height: 2px;
  margin: 0 auto;
  background: var(--accent-deep);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Nav dropdown ---------- */
.has-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.dropdown-toggle::after {
  content: ' \25BE';
  font-size: 0.7em;
  vertical-align: 0.05em;
}
.has-dropdown.open .dropdown-toggle::after { content: ' \25B4'; }
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.6rem;
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 4px;
  box-shadow: 0 8px 24px var(--shadow);
  padding: 0.4rem 0;
  min-width: 210px;
  flex-direction: column;
  gap: 0;
  z-index: 200;
}
.has-dropdown.open .submenu { display: flex; }
.submenu li { width: 100%; }
.submenu a {
  display: block;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}
.submenu a:hover { background: var(--cream-deep); color: var(--accent); }

/* ---------- Layout ---------- */
main { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem 4rem; }
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink); margin-bottom: 0.4rem;
}
.muted { color: var(--ink-soft); margin-bottom: 1.6rem; font-size: 0.95rem; }

/* ---------- Toolbar / search ---------- */
.toolbar {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  align-items: center; margin-bottom: 1.5rem;
}
.toolbar input[type="search"], .toolbar select {
  font-family: 'Lora', serif; font-size: 0.95rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line); border-radius: 3px;
  background: var(--paper); color: var(--ink);
}
.toolbar input[type="search"] { flex: 1; min-width: 200px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; cursor: pointer;
  padding: 0.55rem 1.2rem;
  background: transparent; color: var(--accent-deep);
  border: 1px solid var(--accent); border-radius: 3px;
  font-family: 'Lora', serif; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s ease;
}
.btn:hover { background: var(--accent); color: var(--cream); }
.btn-primary { background: var(--accent); color: var(--cream); }
.btn-primary:hover { background: var(--accent-deep); color: var(--cream); }
.btn-quiet { border-color: var(--line); color: var(--ink-soft); }
.btn-quiet:hover { background: var(--cream-deep); color: var(--ink); }
.btn-small { padding: 0.3rem 0.7rem; font-size: 0.72rem; }

/* ---------- Table ---------- */
.table-wrap {
  overflow-x: auto; border-radius: 4px;
  box-shadow: 0 4px 20px var(--shadow);
}
table { width: 100%; border-collapse: collapse; background: var(--paper); }
thead th {
  background: var(--cream-deep); color: var(--accent-deep);
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 1rem; text-align: left;
  padding: 0.7rem 0.9rem; border-bottom: 2px solid var(--gold);
}
tbody td {
  padding: 0.6rem 0.9rem; border-bottom: 1px solid var(--line);
  font-size: 0.92rem; vertical-align: top;
}
tbody tr:hover { background: #fffdf8; }
td.name { font-weight: 600; white-space: nowrap; }
tr.is-deceased td.name { color: var(--ink-soft); font-style: italic; }
.empty { text-align: center; color: var(--ink-soft); padding: 2rem; font-style: italic; }
.dash { color: #bbae93; }
.private { color: var(--ink-soft); font-style: italic; font-size: 0.85rem; }

/* ---------- Badges ---------- */
.badge {
  display: inline-block; padding: 0.15rem 0.6rem;
  border-radius: 2rem; font-size: 0.72rem;
  letter-spacing: 0.04em; white-space: nowrap;
}
.badge-live { background: #e6ecdd; color: #4a5f33; }
.badge-dec  { background: #ece2d2; color: var(--accent-deep); }

/* ---------- Cards & forms ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 4px; padding: 1.8rem;
  box-shadow: 0 4px 20px var(--shadow); max-width: 760px;
}
.form-narrow { max-width: 380px; }
.card label {
  display: block; margin: 0.9rem 0 0.3rem;
  font-size: 0.82rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--accent-deep);
}
.card label.check {
  text-transform: none; letter-spacing: normal;
  color: var(--ink); font-size: 0.95rem;
  display: flex; align-items: center; gap: 0.5rem; margin-top: 0.9rem;
}
.card input[type="text"], .card input[type="email"],
.card input[type="password"], .card input[type="search"],
.card textarea, .card select {
  width: 100%; font-family: 'Lora', serif; font-size: 0.95rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line); border-radius: 3px;
  background: #fff; color: var(--ink);
}
.card input:focus, .card textarea:focus, .card select:focus {
  outline: none; border-color: var(--accent);
}
.card .check input[type="checkbox"] { width: auto; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.grid3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 0 1rem; }
.checks {
  display: flex; gap: 1rem; align-items: center;
  margin-top: 0.9rem; flex-wrap: wrap;
}
.checks input[type="text"] { flex: 1; min-width: 180px; }
.form-actions { margin-top: 1.5rem; display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* ---------- Notices ---------- */
.alert, .notice {
  padding: 0.8rem 1.1rem; border-radius: 3px;
  margin-bottom: 1.2rem; font-size: 0.92rem;
}
.alert  { background: #f3ddd6; border: 1px solid #d9a48f; color: #8a3c25; }
.notice { background: #e6ecdd; border: 1px solid #b3c79a; color: #45602f; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink); color: var(--cream-deep);
  text-align: center; padding: 2.2rem 2rem;
}
footer .ornament { color: var(--gold); letter-spacing: 0.5em; margin-bottom: 0.7rem; }
footer p { font-size: 0.88rem; opacity: 0.85; }
footer .small { font-size: 0.78rem; opacity: 0.6; margin-top: 0.4rem; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  nav { padding: 0.8rem 1rem; }
  main { padding: 2rem 1rem 3rem; }
  .grid2, .grid3 { grid-template-columns: 1fr; }

  /* show the hamburger; collapse the links behind it */
  .nav-toggle { display: flex; }
  nav ul#nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 0.8rem;
    border-top: 1px solid var(--line);
  }
  nav.nav-open ul#nav-menu { display: flex; }

  #nav-menu > li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  #nav-menu > li:last-child { border-bottom: none; }
  #nav-menu > li > a,
  #nav-menu > li > .dropdown-toggle {
    display: block;
    padding: 0.85rem 0.3rem;
    font-size: 0.95rem;
  }

  /* "PHS 1964" becomes an inline accordion inside the panel */
  .has-dropdown { position: static; }
  .submenu {
    position: static;
    margin: 0;
    min-width: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--cream-deep);
    padding: 0.2rem 0;
  }
  .has-dropdown.open .submenu { display: flex; }
  .submenu li { border-bottom: 1px solid var(--line); }
  .submenu li:last-child { border-bottom: none; }
  .submenu a { padding: 0.7rem 1.4rem; font-size: 0.9rem; }
}

/* ---------- Stat cards (responses dashboard) ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem; margin-bottom: 2rem;
}
.stat {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 4px; padding: 1.1rem 1.2rem;
  box-shadow: 0 4px 20px var(--shadow);
}
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 600; line-height: 1;
  color: var(--accent-deep);
}
.stat .lbl {
  font-size: 0.76rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-soft);
  margin-top: 0.35rem;
}

/* ---------- Panel + interest bars ---------- */
.panel {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 4px; padding: 1.4rem 1.6rem;
  box-shadow: 0 4px 20px var(--shadow); margin-bottom: 2rem;
}
.panel h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: 1.5rem; color: var(--ink); margin-bottom: 1rem;
}
.bar-row {
  display: grid; grid-template-columns: 1.4fr 2fr auto;
  gap: 0.9rem; align-items: center;
  margin-bottom: 0.55rem; font-size: 0.9rem;
}
.bar-track {
  background: var(--cream-deep); border-radius: 2rem;
  height: 14px; overflow: hidden;
}
.bar-fill {
  background: linear-gradient(90deg, var(--gold), var(--accent));
  height: 100%; border-radius: 2rem; min-width: 2px;
}
.bar-count { color: var(--ink-soft); font-size: 0.84rem; white-space: nowrap; }

/* ---------- List heading ---------- */
.list-head {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: 1.7rem; color: var(--ink); margin: 0.5rem 0 1rem;
}

/* ---------- Activity chips + attendance badges ---------- */
.chip {
  display: inline-block; background: var(--cream-deep);
  color: var(--accent-deep); padding: 0.12rem 0.4rem;
  border-radius: 2px; font-size: 0.68rem;
  letter-spacing: 0.05em; margin: 0.08rem 0;
}
.badge-yes   { background: #e6ecdd; color: #4a5f33; }
.badge-no    { background: #ece4e0; color: #7a5c4e; }
.badge-maybe { background: #f0e4c8; color: #7a5e22; }
td.comment { max-width: 340px; font-size: 0.85rem; color: var(--ink-soft); }

@media (max-width: 640px) {
  .bar-row { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ---------- In Memory page ---------- */
.memorial-head { text-align: center; margin-bottom: 2.5rem; }
.memorial-head .ornament-line {
  color: var(--gold); font-size: 1.4rem;
  letter-spacing: 0.4em; margin-bottom: 0.8rem;
}
.memorial-head h1 { margin-bottom: 0.6rem; }
.memorial-head .muted { max-width: 620px; margin: 0 auto; }

.memorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.2rem;
}
.memorial-card {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.6rem 1rem;
  text-align: center;
  box-shadow: 0 3px 14px var(--shadow);
}
.mc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--ink); line-height: 1.25;
}
.mc-divider {
  width: 36px; height: 1px;
  background: var(--gold);
  margin: 0.6rem auto;
}
.mc-date {
  font-style: italic; font-size: 0.9rem;
  color: var(--ink-soft);
}
.memorial-foot { text-align: center; margin-top: 2.5rem; }

/* ---------- Content / story pages ---------- */
.page-head { text-align: center; margin-bottom: 2rem; }
.page-head .ornament-line {
  color: var(--gold); font-size: 1.4rem;
  letter-spacing: 0.4em; margin-bottom: 0.7rem;
}
.page-head h1 { margin-bottom: 0.4rem; }
.page-head .tagline {
  font-style: italic; color: var(--ink-soft); font-size: 1.1rem;
}
.banner {
  width: 100%; display: block; border-radius: 6px;
  box-shadow: 0 6px 28px var(--shadow); margin: 0 0 2.5rem;
}
.story { max-width: 760px; margin: 0 auto; }
.story h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: 1.7rem; color: var(--accent-deep);
  margin: 2rem 0 0.7rem;
}
.story p {
  margin-bottom: 1.1rem; font-size: 1.05rem; color: var(--ink-soft);
}
.story .figure { margin: 2rem 0; }
.story .figure img {
  width: 100%; display: block; border-radius: 6px;
  box-shadow: 0 6px 24px var(--shadow);
}
.story .figure figcaption {
  text-align: center; font-style: italic;
  font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.6rem;
}
.callout {
  background: var(--cream-deep);
  border-left: 3px solid var(--gold);
  border-radius: 4px; padding: 1.3rem 1.5rem; margin: 2.2rem 0 0.5rem;
}
.callout p { margin: 0 0 0.9rem; color: var(--ink-soft); }
.story h2 .story-link {
  color: inherit; text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.story h2 .story-link:hover { color: var(--accent); border-bottom-color: var(--gold); }
.story-more { font-size: 0.95rem; }
.story-more a { text-decoration: none; letter-spacing: 0.03em; }
.story-more a:hover { text-decoration: underline; }

/* ---------- Family page ---------- */
.family-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.member {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1.7rem 1.6rem;
  box-shadow: 0 4px 20px var(--shadow);
}
.member h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 1.5rem; color: var(--ink); margin-bottom: 0.15rem;
}
.member .member-role {
  font-style: italic; color: var(--accent);
  font-size: 0.95rem; margin-bottom: 0.7rem;
}
.member .member-divider {
  width: 40px; height: 1px; background: var(--gold); margin-bottom: 0.8rem;
}
.member p { color: var(--ink-soft); font-size: 1rem; margin: 0; }
.member h2 .member-link {
  color: inherit; text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.member h2 .member-link:hover {
  color: var(--accent); border-bottom-color: var(--gold);
}
.member-more { margin-top: 0.9rem !important; font-size: 0.9rem; }
.member-more a { text-decoration: none; letter-spacing: 0.03em; }
.member-more a:hover { text-decoration: underline; }

/* ---------- Contact page ---------- */
.contact-map {
  width: 100%; height: 360px; border: 0;
  border-radius: 6px; box-shadow: 0 6px 28px var(--shadow);
  display: block; margin-bottom: 2.5rem;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.25fr;
  gap: 1.6rem; align-items: start;
}
.contact-h {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: 1.6rem; color: var(--ink); margin-bottom: 1.1rem;
}
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.2rem; }
.contact-item:last-child { margin-bottom: 0; }
.ci-label {
  flex: 0 0 54px; font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); padding-top: 0.15rem;
}
.contact-item > div:last-child { color: var(--ink-soft); line-height: 1.7; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Manage Accounts page ---------- */
.acct-section { margin-bottom: 2.4rem; }
.acct-section .table-wrap { max-width: 760px; }
form.inline { display: inline; margin: 0; }
.btn-danger { border-color: #d9a48f; color: #8a3c25; }
.btn-danger:hover { background: #8a3c25; color: var(--cream); border-color: #8a3c25; }

/* ---------- Classmate map ---------- */
.classmap {
  height: 540px; width: 100%;
  border: 1px solid var(--line); border-radius: 6px;
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: 1.2rem;
}
.map-pop { font-family: 'Lora', Georgia, serif; font-size: 0.9rem; line-height: 1.55; }
.map-pop strong {
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600;
  color: var(--accent-deep);
}
.map-pop-c {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--ink-soft); margin: 0.15rem 0 0.45rem;
}
.map-pop-mem { color: var(--accent); font-style: italic; }
@media (max-width: 640px) { .classmap { height: 420px; } }

/* ---------- Reunion photo gallery ---------- */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.8rem; margin-bottom: 1.5rem;
}
.thumb {
  aspect-ratio: 1 / 1; padding: 0;
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  cursor: pointer; background: var(--cream-deep);
  box-shadow: 0 3px 12px var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb:hover { transform: translateY(-3px); box-shadow: 0 6px 18px var(--shadow); }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(30, 20, 10, 0.93);
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lb-img {
  max-width: 90vw; max-height: 82vh;
  border-radius: 4px; box-shadow: 0 10px 44px rgba(0, 0, 0, 0.6);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute; cursor: pointer; line-height: 1;
  background: rgba(0, 0, 0, 0.45); color: #fff; border: none;
  transition: background 0.18s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(0, 0, 0, 0.8); }
.lb-close {
  top: 1rem; right: 1rem;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.7rem;
}
.lb-prev, .lb-next {
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 66px; border-radius: 4px; font-size: 2.4rem;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-caption {
  position: absolute; bottom: 1.1rem; left: 0; right: 0;
  text-align: center; color: var(--cream);
  font-size: 0.88rem; letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .lb-prev, .lb-next { width: 40px; height: 54px; font-size: 1.9rem; }
}

/* ---------- Classmate directory (expandable rows) ---------- */
.cm {
  border: 1px solid var(--line); border-radius: 5px;
  background: var(--paper); margin-bottom: 0.5rem;
  box-shadow: 0 2px 10px var(--shadow);
}
.cm-sum {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 1rem;
  padding: 0.7rem 1rem; font-size: 0.95rem;
}
.cm-sum::-webkit-details-marker { display: none; }
.cm-sum:hover { background: #fffdf8; }
.cm-caret {
  flex: 0 0 auto; color: var(--accent);
  font-size: 1.1rem; transition: transform 0.15s ease;
}
.cm[open] .cm-caret { transform: rotate(90deg); }
.cm-name { flex: 1 1 42%; font-weight: 600; }
.cm-loc  { flex: 1 1 30%; color: var(--ink-soft); }
.cm-stat { flex: 0 0 auto; }
.cm.is-deceased .cm-name { font-style: italic; color: var(--ink-soft); }
.cm-body { padding: 0.6rem 1rem 1.1rem; border-top: 1px solid var(--line); }
.cm-fields {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.6rem; margin: 0.9rem 0;
}
.cm-fields > div { display: flex; flex-direction: column; }
.cm-fields .cm-wide { grid-column: 1 / -1; }
.cm-fields dt {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--accent-deep); margin-bottom: 0.1rem;
}
.cm-fields dd { margin: 0; font-size: 0.95rem; color: var(--ink); }
.cm-note {
  font-size: 0.88rem; color: var(--ink-soft); font-style: italic;
  margin: 0.3rem 0 0.9rem;
}
@media (max-width: 640px) {
  .cm-sum { flex-wrap: wrap; gap: 0.4rem 0.8rem; }
  .cm-name { flex: 1 1 100%; }
  .cm-fields { grid-template-columns: 1fr; }
}
