@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Source+Sans+3:wght@400;600;700&display=swap');

/* Cumbria Trade Directory — shared stylesheet
   Palette: Cumbrian greens, slates, clean whites. Mobile-first.
   Cumbria flag accent colours (navy + gold) added as subtle touches. */

:root {
  --green: #2f5d3a;
  --green-dark: #244a2d;
  --slate: #3a4a52;
  --slate-light: #5b6b73;
  --bg: #f5f3ee;
  --card-bg: #ffffff;
  --border: #e2e6e1;
  --text: #20262a;
  --max-width: 1080px;

  /* Cumbria flag accents */
  --navy: #1B2A6B;
  --navy-dark: #111D4E;
  --gold: #E8A820;
  --gold-dark: #d2941a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0.45rem 0;
}
.site-header .container { display: flex; align-items: center; }
.site-logo { display: inline-flex; align-items: center; text-decoration: none; }
.site-logo img { height: 56px; width: auto; display: block; }
@media (max-width: 560px) { .site-logo img { height: 46px; } }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--slate-light);
  margin: 1.4rem 0 0.6rem;
}
.breadcrumb a { color: var(--green); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.35rem; }

/* Headings + intro */
h1 {
  font-size: 2rem;
  color: var(--slate);
  margin: 0.2rem 0 0.8rem;
}
.intro {
  font-size: 1.08rem;
  max-width: 760px;
  margin: 0 0 2rem;
}
h2 {
  font-size: 1.35rem;
  color: var(--slate);
  margin: 2rem 0 1rem;
}

/* Listings */
.listings { margin-bottom: 2.5rem; }
.placeholder-note {
  background: var(--card-bg);
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  color: var(--slate-light);
  font-style: italic;
  text-align: center;
}

/* Nearby towns */
.nearby-towns {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.nearby-towns a {
  display: inline-block;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.6rem 1rem;
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}
.nearby-towns a:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* CTA */
.cta {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2.5rem 0;
}
.cta h2 { margin-top: 0; }
.cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  text-decoration: none;
  padding: 0.7rem 1.3rem;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 0.5rem;
}
.cta-button:hover { background: var(--gold-dark); }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #cfd6da;
  padding: 2.6rem 0 1.4rem;
  margin-top: 3rem;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
@media (min-width: 560px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.5fr 1fr 0.9fr 1.8fr; } }
.footer-col h4 { color: #fff; font-size: 0.92rem; margin: 0 0 0.6rem; letter-spacing: 0.02em; }
.footer-col a { display: block; color: #cfd6da; text-decoration: none; margin: 0.25rem 0; font-size: 0.9rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-col p { margin: 0.3rem 0; font-size: 0.88rem; line-height: 1.55; color: #c2cace; }
.footer-col p a { display: inline; color: #9fd3ad; }
.footer-logo { font-weight: 700; color: #fff; font-size: 1.15rem; display: inline-block; margin-bottom: 0.3rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 1.8rem; padding-top: 1rem; }
.built-by { margin: 0; font-size: 0.9rem; }
.built-by a { color: var(--gold); font-weight: 600; text-decoration: none; }

/* Keep the hero curve seamless against the page background */
.page-hero .hero-curve path { fill: var(--bg); }

@media (min-width: 700px) {
  h1 { font-size: 2.4rem; }
}

/* ---- Homepage: hero + search ---- */
.hero {
  position: relative;
  color: #fff;
  padding: 3.2rem 0 5.5rem;
  overflow: hidden;
  background-color: #1a3326; /* dark fallback while photo loads */
  background-image:
    /* left-weighted scrim so left-aligned text stays crisp; fades to clear on the right */
    linear-gradient(90deg, rgba(8,18,12,0.74) 0%, rgba(8,18,12,0.34) 45%, rgba(8,18,12,0) 72%),
    /* gentle overall darkening for legibility on mobile/full-width */
    linear-gradient(180deg, rgba(8,18,12,0.22) 0%, rgba(8,18,12,0.06) 40%, rgba(8,18,12,0.14) 100%),
    url('/images/hero.jpg');
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
}
.hero .container { position: relative; z-index: 2; }

/* Two-column hero: text left, logo right (no separate header) */
.hero-grid { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.hero-text { flex: 1 1 460px; min-width: 0; }
.hero-logo { flex: 0 1 320px; display: flex; justify-content: center; }
.hero-logo a { display: block; width: 100%; max-width: 300px; }
.hero-logo img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.42);
  display: block;
}
@media (max-width: 760px) {
  .hero-grid { gap: 1.2rem; }
  .hero-logo { order: -1; flex-basis: 100%; }
  .hero-logo a { max-width: 190px; }
}

/* Compact hero band for inner pages (photo + curve + page heading) */
.page-hero { padding: 1.5rem 0 4.5rem; }
@media (min-width: 700px) { .page-hero { padding-bottom: 5.5rem; } }
.page-hero-bar { margin-bottom: 1rem; }
.hero-logo-link { display: inline-flex; }
.hero-logo-link img { height: 50px; width: auto; display: block; border-radius: 10px; box-shadow: 0 6px 20px rgba(0,0,0,0.32); }
.page-hero .breadcrumb { margin: 0 0 0.55rem; color: rgba(255,255,255,0.85); }
.page-hero .breadcrumb a { color: #fff; text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero .breadcrumb span { margin: 0 0.35rem; color: rgba(255,255,255,0.7); }
.page-hero h1 { color: #fff; margin: 0; }
.hero h1 { color: #fff; font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin: 0 0 0.6rem; max-width: 18ch; text-shadow: 0 2px 16px rgba(0,0,0,0.55); }
.hero-tagline { color: #fff; font-size: 1.1rem; margin: 0 0 1.6rem; text-shadow: 0 1px 10px rgba(0,0,0,0.55); }

/* Hero badge — text only, no card (bright white on the photo) */
.hero-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 0.85rem;
}
.hero-badge .b1 { font-weight: 800; letter-spacing: 0.08em; font-size: 0.9rem; text-transform: uppercase; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
.hero-badge .b2 { font-size: 0.95rem; color: #f4f8f5; text-shadow: 0 1px 9px rgba(0,0,0,0.6); }

/* Curved bottom edge (Nomads-style) */
.hero-curve { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 60px; display: block; z-index: 1; }
@media (min-width: 700px) { .hero-curve { height: 90px; } .hero { padding-bottom: 6rem; } }
.search-box {
  background: #fff;
  border-radius: 12px;
  padding: 0.9rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  max-width: 680px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}
.search-box select {
  flex: 1 1 190px;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  color: var(--text);
}
.search-box button {
  flex: 0 0 auto;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
}
.search-box button:hover { background: var(--green-dark); }

/* ---- Homepage: stat strip ---- */
.stat-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-strip .container { display: flex; gap: 2.2rem; justify-content: center; flex-wrap: wrap; padding: 1rem 1.25rem; }
.stat-strip .stat { color: var(--slate); font-weight: 600; font-size: 0.95rem; }
.stat-strip .stat strong { color: var(--green); font-size: 1.05rem; }

/* ---- Homepage: sections + grids ---- */
.home-section { padding: 2.4rem 0 0.3rem; }
.home-section > h2 { font-size: 1.55rem; margin-bottom: 0.2rem; }
.section-sub { color: var(--slate-light); margin: 0 0 1.2rem; }

.trade-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
@media (min-width: 640px) { .trade-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 920px) { .trade-grid { grid-template-columns: repeat(4, 1fr); } }
.trade-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.trade-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.10); }
.trade-card .tc-head {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--trade-colour, var(--green));
}
.trade-card .tc-body { padding: 0.8rem 1rem 1rem; }
.trade-card .tc-name { display: block; font-weight: 700; color: var(--slate); margin-bottom: 0.25rem; }
.trade-card .tc-link { color: var(--green); font-size: 0.85rem; font-weight: 600; }

.town-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
@media (min-width: 640px) { .town-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 920px) { .town-grid { grid-template-columns: repeat(4, 1fr); } }
.town-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--slate);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.town-card:hover { border-color: var(--green); color: var(--green); }
.town-card .tc-arrow { color: var(--green); }

/* ---- Homepage CTA band ---- */
.home-cta { background: #eef5ef; border: 1px solid #cfe3d4; border-radius: 10px; padding: 1.6rem; margin: 2.6rem 0 0; text-align: center; }
.home-cta h2 { margin-top: 0; }

/* ---- Trade-page content sections (price guide, FAQ, map, news, tradesperson) ---- */
.price-guide, .faqs, .map-embed, .local-news, .totm { margin: 2.4rem 0; }
.price-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; max-width: 560px; }
.price-list li { display: flex; justify-content: space-between; gap: 1rem; background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; padding: 0.6rem 0.9rem; }
.price-label { color: var(--slate); }
.price-range { font-weight: 700; color: var(--green); white-space: nowrap; }

.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; padding: 0 0.95rem; margin-bottom: 0.55rem; }
.faq-q { font-weight: 600; color: var(--slate); cursor: pointer; padding: 0.7rem 0; list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::before { content: "+ "; color: var(--green); font-weight: 700; }
.faq-item[open] .faq-q::before { content: "\2013 "; }
.faq-a { margin: 0 0 0.8rem; color: var(--text); }

.map-frame { position: relative; width: 100%; max-width: 760px; aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.totm-card { background: linear-gradient(135deg, #244a2d, #2f5d3a); color: #fff; border-radius: 12px; padding: 1.6rem 1.5rem; max-width: 760px; }
.totm-badge { display: inline-block; background: #e0a300; color: #2a2a2a; font-weight: 800; font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 6px; }
.totm-card h2 { color: #fff; margin: 0.7rem 0 0.4rem; }
.totm-card p { color: #e9f1eb; }
.totm-card .cta-button { background: #fff; color: var(--green); margin-top: 0.4rem; align-self: flex-start; }
.totm-card .cta-button:hover { background: #eef5ef; }
.totm-benefits { list-style: none; margin: 0.6rem 0 0.9rem; padding: 0; }
.totm-benefits li { position: relative; padding-left: 1.5rem; margin: 0.35rem 0; color: #e9f1eb; font-size: 0.92rem; }
.totm-benefits li::before { content: "✓"; position: absolute; left: 0; color: #e0a300; font-weight: 700; }

/* Price guide + Tradesperson of the Month side by side on desktop */
.guide-row { display: flex; gap: 1.4rem; align-items: stretch; flex-wrap: wrap; margin: 2.4rem 0; }
.guide-row .price-guide, .guide-row .totm { margin: 0; flex: 1 1 360px; min-width: 0; }
.guide-row .price-list { max-width: none; }
.guide-row .totm { display: flex; }
.guide-row .totm-card { max-width: none; width: 100%; display: flex; flex-direction: column; }
.guide-row .totm-card .cta-button { margin-top: auto; }

/* Centre the local map section */
.map-embed { text-align: center; }
.map-embed .map-frame { margin-left: auto; margin-right: auto; }

.news-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
@media (min-width: 640px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }
.news-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; padding: 1rem; }
.news-card .news-tag { display: inline-block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--slate-light); background: #eef1ee; border-radius: 4px; padding: 0.15rem 0.5rem; margin-bottom: 0.5rem; }
.news-card h3 { margin: 0.2rem 0 0.4rem; color: var(--slate); font-size: 1.05rem; }
.news-card p { margin: 0; color: var(--slate-light); font-size: 0.9rem; }
.news-card h3 a { color: inherit; text-decoration: none; }
.news-card h3 a:hover { color: var(--green); text-decoration: underline; }
.news-card .news-date { display: block; margin-top: 0.55rem; font-size: 0.78rem; color: var(--slate-light); }

/* ---- Pilot note ---- */
.pilot-note {
  font-size: 0.85rem;
  color: #7a6a3a;
  background: #fff6e5;
  border: 1px solid #f0e0b8;
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  margin: 0 0 1.3rem;
}

/* ---- Listing grid + cards ---- */
.listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 560px) { .listing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) { .listing-grid { grid-template-columns: repeat(3, 1fr); } }

.listing-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.listing-card:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.10); transform: translateY(-2px); }
.listing-card:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

.listing-tab {
  align-self: flex-start;
  background: var(--trade-colour, var(--green));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-bottom-right-radius: 8px;
}
.listing-body { padding: 0.85rem 1rem 1.1rem; }
.listing-name { margin: 0.25rem 0 0.5rem; font-size: 1.05rem; color: var(--slate); }
.listing-phone, .listing-town { margin: 0.15rem 0; font-size: 0.92rem; color: var(--text); }
.listing-status {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate-light);
  background: #eef1ee;
  border-radius: 4px;
  padding: 0.18rem 0.5rem;
}
/* Claimed listings stand out (used once a business claims) */
.listing-card.claimed {
  border-color: var(--green);
  box-shadow: inset 4px 0 0 var(--green), 0 4px 14px rgba(47,93,58,0.12);
}
.listing-card.claimed .listing-status { background: var(--green); color: #fff; }

.example-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: #b8860b;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.22rem 0.55rem;
  border-bottom-left-radius: 6px;
  z-index: 2;
}
.claimed-head { display: flex; gap: 0.6rem; align-items: center; margin-bottom: 0.55rem; }
.listing-logo {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.listing-rating { margin: 0.1rem 0 0; color: #e0a300; font-size: 0.9rem; letter-spacing: 1px; }
.listing-rating span { color: var(--slate-light); font-size: 0.8rem; letter-spacing: 0; }
.listing-web { margin: 0.15rem 0; font-size: 0.92rem; color: var(--green); }

/* Modal: claimed (unlocked) extras */
.modal-rating { margin: 0.2rem 0; color: #e0a300; letter-spacing: 1px; }
.modal-rating span { color: var(--slate-light); font-size: 0.85rem; letter-spacing: 0; }
.modal-unlocked {
  background: #eef5ef;
  border: 1px solid #cfe3d4;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  margin: 1.1rem 0;
}
.modal-unlocked p { margin: 0.2rem 0; font-size: 0.92rem; }
.modal-unlocked a { color: var(--green); font-weight: 600; }

/* Modal: unclaimed "claim to add" preview slots */
.modal-claim-title { margin: 1.15rem 0 0.5rem; font-weight: 600; color: var(--slate); font-size: 0.98rem; }
.modal-claim-preview { display: grid; gap: 0.6rem; }
.claim-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 0.93rem;
  color: var(--slate);
}
.claim-slot .slot-hint { color: var(--slate-light); font-size: 0.78rem; white-space: nowrap; }
.claim-slot .slot-arrow { color: var(--green); font-weight: 700; font-size: 1.1rem; }
.slot-ph { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; color: var(--slate-light); }
.logo-ph-box {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px dashed var(--slate-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--slate-light);
}
.modal-masked-url { font-family: ui-monospace, "Cascadia Code", Consolas, monospace; color: var(--slate); }
.modal-masked-note { margin: 0.6rem 0 0; font-size: 0.8rem; color: var(--slate-light); }

/* ---- Modal popup ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 25, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 100;
}
.modal-overlay[hidden] { display: none; }
.modal-card {
  background: #fff;
  border-radius: 12px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.9rem 1.9rem 1.7rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  border: none;
  background: transparent;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: var(--slate-light);
}
.modal-close:hover { color: var(--slate); }
.modal-tab {
  display: inline-block;
  background: var(--trade-colour, var(--green));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 5px;
}
.modal-card h2 { margin: 0.7rem 0 0.4rem; color: var(--slate); }
.modal-line { margin: 0.2rem 0; }
.modal-locked {
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  margin: 1.1rem 0;
}
.modal-locked-title { margin: 0 0 0.5rem; font-weight: 600; color: var(--slate); }
.modal-locked ul { margin: 0; padding-left: 1.15rem; color: var(--slate-light); font-size: 0.9rem; }
.modal-locked li { margin: 0.15rem 0; }

/* Legal + About content pages */
.legal { line-height: 1.65; color: var(--slate); }
.legal h2 { font-size: 1.2rem; margin: 1.8rem 0 0.6rem; }
.legal p { margin: 0 0 0.9rem; }
.legal ul { margin: 0 0 1rem; padding-left: 1.3rem; }
.legal li { margin: 0.3rem 0; }
.legal .cta-button { margin-top: 0.3rem; }
ul.about-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1.2rem;
}
ul.about-links li { margin: 0; }
@media (max-width: 560px) { ul.about-links { grid-template-columns: 1fr; } }
