:root {
  --brand: #47ab38;
  --brand-dark: #348d2a;
  --brand-deep: #256d20;
  --brand-soft: #eef7e9;
  --ink: #20241f;
  --muted: #697068;
  --line: #e1e6df;
  --surface: #f7f8f5;
  --paper: #fff;
  --dark: #273028;
  --shadow: 0 18px 46px rgba(30, 52, 31, .10);
  --shadow-soft: 0 9px 28px rgba(30, 52, 31, .07);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(71, 171, 56, .35); outline-offset: 3px; }
.blog-wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

/* Header: the same dark, high-contrast brand treatment as the main-site hero. */
.blog-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(39, 48, 40, .98);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}
.blog-header__inner { min-height: 78px; display: flex; align-items: center; gap: 26px; }
.blog-logo { display: flex; align-items: center; flex: 0 0 auto; }
.blog-logo img { width: 154px; }
.blog-nav { margin-left: auto; display: flex; align-items: center; gap: 25px; }
.blog-nav a {
  position: relative;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: color .2s ease;
}
.blog-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transition: right .2s ease;
}
.blog-nav a:hover,
.blog-nav a[aria-current="page"] { color: #a9e89f; }
.blog-nav a:hover::after,
.blog-nav a[aria-current="page"]::after { right: 0; }
.blog-phone { color: #fff; font-size: 13px; font-weight: 850; text-decoration: none; white-space: nowrap; }
.blog-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 7px 18px rgba(71, 171, 56, .22);
  transition: background .2s ease, transform .2s ease;
}
.blog-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }
.blog-menu-btn {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  font-size: 0;
  cursor: pointer;
}
.blog-menu-btn::before { content: "☰"; font-size: 21px; line-height: 1; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-block: 24px 10px;
  color: #7a8079;
  font-size: 12px;
}
.breadcrumbs a { color: #606860; text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand-dark); }
.breadcrumbs span:last-child { min-width: 0; }
.breadcrumbs--hub { padding-bottom: 0; }

/* Blog hub: intentionally calm and close to the supplied reference. */
.blog-hero { background: #fff; }
.blog-hero__inner { display: block; padding-block: 40px 22px; }
.blog-hero__inner > img,
.blog-hero__stats { display: none; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.blog-hero h1,
.article-hero h1,
.category-hero h1 {
  max-width: 920px;
  margin: 15px 0 18px;
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.blog-hero p,
.category-hero p { max-width: 790px; margin: 0; color: var(--muted); font-size: 17px; }
.blog-main { padding-block: 24px 82px; }
.blog-controls {
  display: grid;
  grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.blog-controls input,
.blog-search input {
  width: 100%;
  height: 46px;
  padding: 0 16px 0 43px;
  border: 1px solid #d7ded5;
  border-radius: 13px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23697068' stroke-width='1.7' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 15px 50%;
  color: var(--ink);
  font-size: 13px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.blog-controls input:focus,
.blog-search input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(71, 171, 56, .10); }
.category-chips,
.blog-filters { display: flex; gap: 9px; overflow-x: auto; padding: 2px 1px 5px; scrollbar-width: thin; }
.category-chips button,
.blog-filter {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #d9ded7;
  border-radius: 10px;
  background: #fff;
  color: #5e655d;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.category-chips button:hover,
.category-chips button.is-active,
.blog-filter:hover,
.blog-filter.is-active { border-color: var(--brand); background: var(--brand); color: #fff; }
.topic-hubs { display: none; }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin: 38px 0 22px; }
.section-heading h2 { margin: 10px 0 0; font-size: 32px; line-height: 1.1; letter-spacing: -.035em; }

/* Cards */
.articles-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.article-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.article-card:hover { border-color: #c4d9bf; box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.article-card__media { aspect-ratio: 16 / 9; overflow: hidden; background: #edf1ea; }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.article-card:hover .article-card__media img { transform: scale(1.025); }
.article-card__body { display: flex; flex: 1; flex-direction: column; padding: 20px 22px 21px; }
.article-card__cat {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 7px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.article-card h3 { margin: 0 0 10px; font-size: 18px; line-height: 1.32; letter-spacing: -.018em; }
.article-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #edf0eb;
  color: #858b84;
  font-size: 11px;
}
.article-card__more { color: var(--brand-dark); font-weight: 850; }
.no-results { display: none; margin-top: 20px; padding: 28px; border: 1px dashed #cad4c7; border-radius: 16px; background: var(--surface); color: var(--muted); text-align: center; }
.no-results.is-visible { display: block; }

/* Compatibility for the earlier hub template retained in the CMS. */
.blog-section { padding-block: 54px; }
.blog-section--soft { border-block: 1px solid var(--line); background: var(--surface); }
.blog-section__head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.blog-section__head h2 { margin: 0; font-size: 32px; letter-spacing: -.035em; }
.blog-section__head p { margin: 7px 0 0; color: var(--muted); }
.blog-search { width: 300px; }
.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.category-card {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.category-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.category-card__icon { display: grid; width: 42px; height: 42px; margin-bottom: 16px; place-items: center; border-radius: 12px; background: var(--brand-soft); }
.category-card h3 { margin: 0 0 7px; font-size: 18px; }
.category-card p { margin: 0; color: var(--muted); font-size: 13px; }
.category-card__count { display: inline-block; margin-top: 12px; color: var(--brand-dark); font-size: 12px; font-weight: 800; }
.blog-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.blog-benefit { padding: 24px; border-radius: 20px; background: var(--dark); color: #fff; }
.blog-benefit b { display: block; margin-bottom: 6px; }
.blog-benefit p { margin: 0; color: #d3dcd3; font-size: 13px; }

/* Category pages */
.category-hero { padding-block: 28px 40px; border-bottom: 1px solid var(--line); background: #fff; }
.category-hero h1 { margin-bottom: 15px; font-size: clamp(38px, 4.5vw, 56px); }
.category-hero .sidebar-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.category-hero .sidebar-links a {
  padding: 8px 11px;
  border: 1px solid #dbe3d8;
  border-radius: 9px;
  background: var(--surface);
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

/* Article pages */
.article-hero { padding-block: 20px 38px; border-bottom: 1px solid var(--line); }
.article-hero__layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 405px); align-items: center; gap: 48px; }
.article-hero h1 { margin-top: 14px; font-size: clamp(38px, 4.4vw, 58px); }
.article-deck { max-width: 800px; margin: 0 0 20px; color: #596159; font-size: 18px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: #788078; font-size: 11px; font-weight: 700; }
.article-hero__img { width: 100%; aspect-ratio: 4 / 3; border-radius: 24px; object-fit: cover; box-shadow: var(--shadow); }
.article-main { padding-block: 48px 76px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 790px) 300px; justify-content: space-between; align-items: start; gap: 52px; }
.article-content { min-width: 0; }
.article-content p { margin: 0 0 18px; color: #343a34; font-size: 16px; }
.article-content h2 { margin: 46px 0 16px; font-size: 29px; line-height: 1.2; letter-spacing: -.027em; scroll-margin-top: 105px; }
.article-content h3 { line-height: 1.3; }
.article-content ul,
.article-content ol { margin: 0 0 23px; padding-left: 23px; }
.article-content li { margin: 8px 0; color: #343a34; font-size: 15px; }
.article-content a { text-underline-offset: 3px; }
.article-quick { margin-bottom: 30px; padding: 22px 24px; border: 1px solid #cee4c9; border-radius: 18px; background: var(--brand-soft); }
.article-quick strong { display: block; margin-bottom: 5px; color: var(--brand-deep); font-size: 11px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.article-quick p { margin: 0; color: #303a30; font-size: 16px; font-weight: 650; }
.article-toc { margin-bottom: 34px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.article-toc b { display: block; margin-bottom: 9px; }
.article-toc ol { margin: 0; padding-left: 21px; }
.article-toc li { margin-block: 5px; font-size: 13px; }
.article-toc a { color: #397234; text-decoration: none; }
.article-note { margin: 22px 0 26px; padding: 17px 19px; border-left: 4px solid var(--brand); border-radius: 0 14px 14px 0; background: #f4f8f2; }
.article-note strong { display: block; margin-bottom: 5px; }
.article-note p { margin: 0; font-size: 14px; }
.article-inline-figure { margin: 26px 0; }
.article-inline-figure img { width: 100%; border: 1px solid var(--line); border-radius: 18px; }
.table-scroll { overflow-x: auto; margin: 21px 0 28px; border: 1px solid var(--line); border-radius: 15px; }
.article-table { width: 100%; min-width: 560px; border-collapse: collapse; background: #fff; }
.article-table th,
.article-table td { padding: 13px 14px; border-bottom: 1px solid #e7ebe5; font-size: 13px; text-align: left; vertical-align: top; }
.article-table th { background: #f3f6f1; font-size: 12px; }
.article-table tr:last-child td { border-bottom: 0; }
.article-cta-box { margin: 42px 0; padding: 28px; border-radius: 22px; background: linear-gradient(135deg, var(--dark), #1f2720); color: #fff; }
.article-cta-box h3 { margin: 0 0 8px; font-size: 23px; }
.article-cta-box p { margin: 0 0 18px; color: #d9e1d9; font-size: 14px; }
.article-cta-box a { display: inline-flex; padding: 11px 16px; border-radius: 999px; background: var(--brand); color: #fff; font-size: 12px; font-weight: 850; text-decoration: none; }
.article-faq { margin-top: 47px; }
.article-faq h2 { margin-top: 0; }
.faq-item { padding-block: 18px; border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0 0 8px; font-size: 16px; }
.faq-item p { margin: 0; color: #596159; font-size: 14px; }
.author-box { display: flex; align-items: center; gap: 15px; margin-top: 36px; padding: 19px; border-radius: 17px; background: var(--surface); }
.author-mark { display: grid; flex: 0 0 auto; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--dark); color: #fff; font-weight: 850; }
.author-box b,
.author-box span { display: block; }
.author-box span { margin-top: 3px; color: var(--muted); font-size: 12px; }
.author-box a { display: inline-block; margin-top: 4px; color: var(--brand-deep); font-size: 12px; }
.author-box small { display: block; margin-top: 3px; color: var(--brand-deep); font-weight: 800; }
.author-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 7px; }
.article-author-link { color: var(--brand-deep); font-weight: 800; text-decoration: none; }
.expert-note { margin: 28px 0; padding: 20px 22px; border: 1px solid #b9ddc2; border-left: 5px solid var(--brand); border-radius: 14px; background: #f2faf4; }
.expert-note strong { display: block; margin-bottom: 6px; }
.expert-profile { padding: 54px 0 90px; background: linear-gradient(145deg, #eef6f0, #fff 55%); }
.expert-profile__grid { display: grid; grid-template-columns: 180px minmax(0, 760px); gap: 44px; align-items: start; }
.expert-profile__mark { width: 180px; height: 180px; border-radius: 34px; display: grid; place-items: center; background: #173e2b; color: #fff; font-size: 58px; font-weight: 900; box-shadow: 0 18px 48px #173e2b28; }
.expert-profile h1 { margin: 10px 0 12px; font-size: clamp(42px, 7vw, 72px); line-height: 1; }
.expert-profile__role { color: var(--brand-deep); font-size: 21px; font-weight: 800; }
.expert-profile__principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 30px 0; }
.expert-profile__principles div { padding: 18px; border: 1px solid #dce9df; border-radius: 14px; background: #fff; }
.expert-profile__principles b,
.expert-profile__principles span { display: block; }
.expert-profile__principles span { margin-top: 6px; color: #5e6c64; font-size: 14px; }
.expert-profile__note { padding: 16px 18px; border-radius: 12px; background: #fff7dc; color: #6b5710; }
.expert-profile__button { display: inline-flex; margin-top: 22px; padding: 13px 18px; border-radius: 10px; background: var(--brand); color: #fff; font-weight: 800; text-decoration: none; }
.expert-strip { border-block: 1px solid #d8e6dc; background: #f4faf5; }
.expert-strip__inner { min-height: 110px; display: grid; grid-template-columns: 64px 1fr auto; gap: 18px; align-items: center; }
.expert-strip__mark { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; background: var(--dark); color: #fff; font-size: 22px; font-weight: 900; }
.expert-strip span,
.expert-strip b,
.expert-strip p { display: block; margin: 0; }
.expert-strip span { color: var(--brand-deep); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.expert-strip b { margin-top: 2px; font-size: 20px; }
.expert-strip p { margin-top: 3px; color: var(--muted); font-size: 13px; }
.expert-strip a { padding: 11px 15px; border: 1px solid #b9d7c0; border-radius: 10px; color: var(--dark); font-weight: 800; text-decoration: none; }
.article-sidebar { position: sticky; top: 102px; }
.sidebar-box { margin-bottom: 16px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.sidebar-box h3 { margin: 0 0 11px; font-size: 16px; }
.sidebar-links { display: flex; flex-direction: column; gap: 9px; }
.sidebar-links a { padding-bottom: 9px; border-bottom: 1px solid #edf0eb; color: #377232; font-size: 12px; text-decoration: none; }
.sidebar-links a:last-child { padding-bottom: 0; border: 0; }
.sidebar-cta { border-color: #cee3c9; background: var(--brand-soft); }
.sidebar-cta p { color: #596259; font-size: 13px; }
.sidebar-cta a { display: block; margin-top: 12px; padding: 10px; border-radius: 999px; background: var(--brand); color: #fff; font-size: 12px; font-weight: 850; text-align: center; text-decoration: none; }
.article-sources { margin: 32px 0; padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; background: #f8faf7; }
.article-sources h2 { margin-top: 0; }
.article-sources ul { margin: 0; padding-left: 22px; }
.article-sources li { margin-block: 8px; }
.article-sources a { color: var(--brand-deep); }
.related { padding-block: 54px; border-top: 1px solid var(--line); background: var(--surface); }
.related h2 { margin: 0 0 22px; font-size: 30px; letter-spacing: -.03em; }

/* Footer */
.blog-footer { padding-block: 42px 28px; background: var(--dark); color: #fff; }
.blog-footer__grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; gap: 36px; }
.blog-footer img { width: 160px; }
.blog-footer p { max-width: 470px; margin-bottom: 0; color: #cbd4cc; font-size: 12px; }
.blog-footer h3 { margin: 0 0 11px; font-size: 13px; }
.blog-footer a { display: block; margin-block: 7px; color: #e6ece6; font-size: 12px; text-decoration: none; }
.blog-footer a:hover { color: #a9e89f; }
.blog-footer__bottom { margin-top: 27px; padding-top: 17px; border-top: 1px solid rgba(255, 255, 255, .11); color: #9ea99f; font-size: 11px; }
.hidden { display: none !important; }

@media (max-width: 1040px) {
  .blog-nav { gap: 17px; }
  .blog-phone { display: none; }
  .article-hero__layout { grid-template-columns: minmax(0, 1fr) 340px; gap: 34px; }
}

@media (max-width: 920px) {
  .blog-nav,
  .blog-header .blog-cta { display: none; }
  .blog-menu-btn { display: block; }
  .blog-nav.is-open {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: flex;
    margin: 0;
    padding: 18px 20px 23px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: var(--dark);
    box-shadow: 0 18px 25px rgba(0, 0, 0, .16);
  }
  .blog-controls { grid-template-columns: 1fr; }
  .articles-grid,
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-hero__layout,
  .article-layout { grid-template-columns: 1fr; }
  .article-hero__img { max-width: 720px; aspect-ratio: 16 / 9; }
  .article-sidebar { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
  .sidebar-box { margin: 0; }
}

@media (max-width: 640px) {
  .blog-wrap { width: min(var(--max), calc(100% - 28px)); }
  .blog-header__inner { min-height: 70px; }
  .blog-logo img { width: 134px; }
  .blog-nav.is-open { top: 70px; }
  .breadcrumbs { padding-top: 18px; white-space: nowrap; overflow: hidden; }
  .breadcrumbs span:last-child { overflow: hidden; text-overflow: ellipsis; }
  .blog-hero__inner { padding-block: 30px 16px; }
  .blog-hero h1,
  .article-hero h1,
  .category-hero h1 { font-size: 35px; line-height: 1.08; }
  .blog-hero p,
  .category-hero p,
  .article-deck { font-size: 15px; }
  .blog-main { padding-block: 20px 58px; }
  .blog-controls { gap: 13px; padding-bottom: 26px; }
  .category-chips { margin-right: -14px; padding-right: 14px; }
  .section-heading { margin-block: 30px 18px; }
  .section-heading h2 { font-size: 28px; }
  .articles-grid,
  .category-grid,
  .blog-benefits { grid-template-columns: 1fr; gap: 18px; }
  .article-card { border-radius: 18px; }
  .article-card__body { padding: 18px 19px 20px; }
  .category-hero { padding-block: 20px 30px; }
  .category-hero .sidebar-links { flex-direction: row; overflow-x: auto; flex-wrap: nowrap; }
  .category-hero .sidebar-links a { flex: 0 0 auto; }
  .article-hero { padding-block: 12px 27px; }
  .article-hero__layout { gap: 25px; }
  .article-meta { gap: 7px; }
  .article-main { padding-block: 32px 58px; }
  .article-content h2 { margin-top: 38px; font-size: 25px; }
  .article-content p { font-size: 15px; }
  .article-quick { padding: 18px 19px; }
  .article-quick p { font-size: 15px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .article-cta-box { padding: 22px; }
  .related { padding-block: 42px; }
  .blog-footer__grid { grid-template-columns: 1fr; gap: 27px; }
  .expert-profile__grid { grid-template-columns: 1fr; gap: 24px; }
  .expert-profile__mark { width: 104px; height: 104px; border-radius: 22px; font-size: 38px; }
  .expert-profile__principles { grid-template-columns: 1fr; }
  .expert-strip__inner { grid-template-columns: 54px 1fr; padding-block: 18px; }
  .expert-strip__mark { width: 54px; height: 54px; border-radius: 15px; }
  .expert-strip a { grid-column: 1 / -1; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
