:root {
  color-scheme: light;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f9fbff;
  --ink: #141820;
  --muted: #647084;
  --line: #e1e7f0;
  --blue: #2258f6;
  --green: #11815f;
  --coral: #c7553d;
  --gold: #b77a13;
  --shadow: 0 18px 50px rgba(24, 38, 67, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0, #f7f9fc 420px, var(--bg) 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(225, 231, 240, 0.92);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-weight: 900;
  min-width: 0;
  text-decoration: none;
}

.brand-title {
  color: var(--blue);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 720;
  min-width: 0;
}

.nav-links a {
  border-radius: 7px;
  padding: 7px 9px;
  max-width: 100%;
  text-decoration: none;
}

.nav-links a:hover {
  background: #eef3ff;
  color: var(--ink);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle:hover {
  background: #eef3ff;
}

.menu-toggle-box {
  position: relative;
  width: 20px;
  height: 14px;
}

.menu-toggle-box::before,
.menu-toggle-box::after,
.menu-toggle-line {
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle-box::before {
  content: "";
  top: 0;
}

.menu-toggle-line {
  top: 6px;
}

.menu-toggle-box::after {
  content: "";
  bottom: 0;
}

.nav.is-open .menu-toggle-box::before {
  transform: translateY(6px) rotate(45deg);
}

.nav.is-open .menu-toggle-line {
  opacity: 0;
}

.nav.is-open .menu-toggle-box::after {
  transform: translateY(-6px) rotate(-45deg);
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 34px;
  align-items: center;
  padding: 46px 0 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.1rem, 3.6vw, 3.55rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

h3 {
  font-size: 1.1rem;
}

.lede {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 15px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(22, 26, 33, 0.04);
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.button:hover {
  transform: translateY(-1px);
}

.visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 18px;
}

.panel-head {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.panel-head strong {
  max-width: 340px;
  font-size: 1.28rem;
  line-height: 1.18;
}

.panel-kicker {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-links {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.quick-links a {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 12px;
  text-decoration: none;
}

.quick-links a:hover {
  border-color: rgba(30, 94, 255, 0.42);
  background: #f3f6ff;
}

.quick-links span {
  font-weight: 850;
}

.quick-links small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.panel-note {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 11px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.visual-top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  min-height: 190px;
}

.visual-photo {
  background:
    linear-gradient(135deg, rgba(30, 94, 255, 0.18), rgba(24, 143, 106, 0.18)),
    url("https://findspreadsheet.com/uploads/allimg/20260319/1-260319153159600.webp");
  background-position: center;
  background-size: cover;
}

.visual-stats {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 18px;
  background: #101820;
  color: #fff;
}

.stat strong {
  display: block;
  font-size: 1.5rem;
}

.stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.sheet-preview {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.sheet-row {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.sheet-row span {
  overflow: hidden;
  border-radius: 6px;
  background: #eef1f4;
  padding: 8px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sheet-row.head span {
  background: #e1e7ff;
  color: #183a92;
  font-weight: 800;
}

.section {
  padding: 26px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.section-head p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  min-height: 148px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(24, 38, 67, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.category-card:hover {
  border-color: rgba(34, 88, 246, 0.36);
  box-shadow: 0 12px 30px rgba(24, 38, 67, 0.08);
  transform: translateY(-1px);
}

.category-art {
  height: 100%;
  min-height: 148px;
  background-color: #dfe7e7;
  background-position: center;
  background-size: cover;
}

.art-shoes {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-26031910292L61.webp");
}

.art-hoodies {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260318/1-26031Q12ZD51.webp");
}

.art-bags {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-260319144PH39.webp");
}

.art-qc {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-26031910292L61.webp");
}

.art-tees {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-26031915254QX.webp");
}

.art-jackets {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-260319152350518.webp");
}

.art-coupons {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-260319151R0937.webp");
}

.art-guide {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-260319152004134.webp");
}

.art-pants {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-260319153159600.webp");
}

.art-headwear {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-26031915214B17.webp");
}

.art-accessories {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-260319152Z2T0.webp");
}

.art-jersey {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260318/1-26031Q4423B48.webp");
}

.art-electronics {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260318/1-26031Q534033K.webp");
}

.art-other {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-260319152Z2T0.webp");
}

.home-art-shoes {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-26031910292L61.webp");
}

.home-art-hoodies {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260318/1-26031Q12ZD51.webp");
}

.home-art-tshirts {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-26031915254QX.webp");
}

.home-art-jackets {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-260319152350518.webp");
}

.home-art-pants {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-260319153159600.webp");
}

.home-art-headwear {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-26031915214B17.webp");
}

.home-art-accessories {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-260319152Z2T0.webp");
}

.home-art-jersey {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260318/1-26031Q4423B48.webp");
}

.home-art-electronics {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260318/1-26031Q534033K.webp");
}

.home-art-other {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-260319152Z2T0.webp");
}

.home-art-bags,
.home-art-qc,
.home-art-all,
.home-art-use,
.home-art-coupon,
.home-art-full {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-2603191431255I.webp");
}

.home-art-legit {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-26031910292L61.webp");
}

.home-art-review {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-260319153159600.webp");
}

.home-art-shipping {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-260319152Z2T0.webp");
}

.home-art-fee {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-260319151R0937.webp");
}

.home-art-coupon-2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-260319144PH39.webp");
}

.home-art-w2c {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-26031915254QX.webp");
}

.home-art-qc-checker {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260319/1-2603191431255I.webp");
}

.home-art-compare {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)), url("https://findspreadsheet.com/uploads/allimg/20260318/1-26031Q4423B48.webp");
}

.category-body {
  display: grid;
  align-content: start;
  padding: 18px;
}

.category-body p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.48;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 22px;
  align-items: start;
  padding: 30px 0;
}

.article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 28px;
  box-shadow: 0 8px 30px rgba(24, 38, 67, 0.06);
}

.article h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.article h2 {
  margin-top: 28px;
  font-size: 1.48rem;
}

.article h3 {
  margin-top: 22px;
}

.article p,
.article li {
  color: #374151;
}

.article > .category-art {
  width: min(100%, 420px);
  min-height: 0;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  margin-top: 22px;
  background-color: #f6f8fb;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.article ul,
.article ol {
  padding-left: 22px;
}

.article li {
  margin: 8px 0;
}

.sidebar {
  position: sticky;
  top: 82px;
  display: grid;
  gap: 14px;
}

.side-box,
.cta-band {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 18px;
}

.side-box h2,
.side-box h3 {
  font-size: 1.05rem;
}

.side-box ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill {
  border-radius: 999px;
  background: #eef1f4;
  padding: 6px 10px;
  color: #394150;
  font-size: 0.83rem;
  font-weight: 700;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 24px 0 0;
  background: #101820;
  color: #fff;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cta-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.button.dark-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.step {
  border-left: 4px solid var(--green);
  background: #f3faf7;
  padding: 14px 16px;
}

.faq {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.qc-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 6px;
}

.qc-photo-strip figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.qc-photo-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f3f6fb;
}

.qc-photo-strip figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 14px 16px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 10px 0 0;
}

.site-footer {
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding: 24px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-inner a {
  color: var(--ink);
}

@media (max-width: 900px) {
  .hero,
  .content-layout,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    overflow: visible;
  }

  .nav {
    position: relative;
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }

  .brand-title {
    font-size: clamp(1.28rem, 7vw, 1.85rem);
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 30;
    grid-template-columns: 1fr;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    box-shadow: 0 18px 50px rgba(24, 38, 67, 0.14);
    overflow: visible !important;
    width: 100%;
    padding: 10px;
    white-space: normal !important;
  }

  .nav.is-open .nav-links {
    display: grid;
  }

  .nav-links a {
    display: block;
    flex: none;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    padding: 11px 12px;
    font-size: 0.94rem;
    overflow-wrap: anywhere;
  }

  .hero {
    gap: 22px;
    padding-top: 30px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    text-align: center;
  }

  .hero-actions .button.primary {
    grid-column: 1 / -1;
  }

  h1 {
    font-size: 2.08rem;
  }

  .lede {
    font-size: 1rem;
  }

  .hero-panel {
    padding: 13px;
  }

  .panel-head strong {
    font-size: 1rem;
    line-height: 1.25;
  }

  .panel-kicker {
    font-size: 0.7rem;
  }

  .quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 12px;
  }

  .quick-links a {
    padding: 10px;
  }

  .quick-links span {
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .quick-links small {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .panel-note {
    display: none;
  }

  .visual-top {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    grid-template-columns: 108px minmax(0, 1fr);
    min-height: 136px;
  }

  .category-art {
    min-height: 136px;
  }

  .category-body {
    padding: 14px;
  }

  #categories .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #categories .category-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  #categories .category-art {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1.25;
  }

  #categories .category-body {
    padding: 11px;
  }

  #categories .category-body h3 {
    font-size: 0.98rem;
    line-height: 1.18;
  }

  #categories .category-body p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  #guides .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #guides .category-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  #guides .category-art {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1.18;
  }

  #guides .category-body {
    padding: 11px;
  }

  #guides .category-body h3 {
    font-size: 0.96rem;
    line-height: 1.18;
  }

  #guides .category-body p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.76rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .qc-photo-strip {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .article {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .quick-links {
    grid-template-columns: 1fr;
  }

  .quick-links a {
    min-height: 0;
  }

  #categories .grid {
    gap: 8px;
  }

  #categories .category-body {
    padding: 10px;
  }

  #categories .category-body h3 {
    font-size: 0.92rem;
  }

  #categories .category-body p {
    font-size: 0.74rem;
  }

  #guides .grid {
    gap: 8px;
  }

  #guides .category-body {
    padding: 10px;
  }

  #guides .category-body h3 {
    font-size: 0.9rem;
  }

  #guides .category-body p {
    font-size: 0.72rem;
  }
}
