:root {
  --ink: #0b1e33;
  --blue: #063d78;
  --saffron: #ffb20c;
  --vermilion: #c94331;
  --cloud: #f6f8fb;
  --slate: #6c7b8b;
  --slate-text: #596b7c;
  --white: #ffffff;
  --line: #dbe2ea;
  --soft-blue: #e9f0f8;
  --max: 1440px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cloud);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  transform: translateY(-200%);
  background: var(--saffron);
  color: var(--ink);
  padding: .7rem 1rem;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .7rem var(--gutter);
  border-bottom: 1px solid transparent;
  background: rgb(246 248 251 / .92);
  backdrop-filter: blur(14px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgb(11 30 51 / .06); }
.brand { display: block; width: 11rem; flex: none; }
.brand img { width: 100%; height: 3.25rem; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.5rem); }
.site-nav > a { text-decoration: none; font-size: .85rem; font-weight: 750; }
.site-nav > a:hover { color: var(--blue); }
.menu-button { display: none; border: 0; background: none; font-weight: 800; cursor: pointer; }

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  padding: .85rem 1.2rem;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 850;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 2.75rem; padding: .65rem 1rem; }
.button--ink { background: var(--ink); color: var(--white); }
.button--ink:hover { background: var(--blue); }
.button--signal { background: var(--saffron); color: var(--ink); }
.button--signal:hover { background: #ffc13c; }
.button--light { background: var(--white); color: var(--ink); }
.button--light:hover { background: var(--saffron); }
.text-link, .card-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: .45rem 0 .3rem;
  background: transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.text-link span, .card-link span { transition: transform .2s var(--ease); }
.text-link:hover span, .card-link:hover span { transform: translate(.18rem, -.18rem); }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--vermilion);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow--light { color: var(--saffron); }

.hero {
  min-height: calc(100svh - 5rem);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(32rem, 7fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 7rem);
  padding: clamp(3.5rem, 7vw, 7.5rem) var(--gutter) clamp(4rem, 8vw, 8rem);
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1, .section-heading h2, .route-intro h2, .cta-copy h2, .dialog-header h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .88;
}
.hero h1 { font-size: clamp(4.3rem, 8.1vw, 8.75rem); }
.hero h1 span { color: var(--blue); }
.hero-lede {
  max-width: 35rem;
  margin: clamp(2rem, 3vw, 3rem) 0 0;
  font-size: clamp(1.08rem, 1.6vw, 1.4rem);
  line-height: 1.5;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.1rem 1.6rem; margin-top: 2.2rem; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: clamp(2.8rem, 5vw, 5rem) 0 0; border-top: 1px solid var(--line); }
.hero-facts div { padding: 1rem .85rem .2rem 0; border-right: 1px solid var(--line); }
.hero-facts div + div { padding-left: .85rem; }
.hero-facts div:last-child { border-right: 0; }
.hero-facts dt { color: var(--slate-text); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-facts dd { margin: .35rem 0 0; font-size: .9rem; font-weight: 850; }

.hero-visual {
  position: relative;
  min-height: min(69vw, 47rem);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 0 5% 12%;
  background: var(--saffron);
}
.hero-tile { position: absolute; margin: 0; overflow: hidden; background: var(--white); box-shadow: 0 30px 70px rgb(11 30 51 / .16); }
.hero-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.hero-tile:hover img { transform: scale(1.025); }
.hero-tile figcaption {
  position: absolute;
  left: .65rem;
  bottom: .65rem;
  padding: .42rem .55rem;
  background: var(--cloud);
  color: var(--ink);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-tile--primary { inset: 4% 8% 0 22%; }
.hero-tile--primary img { object-position: center 45%; }
.hero-tile--top { width: 43%; height: 36%; left: 0; top: 0; }
.hero-tile--top img { object-position: center 62%; }
.hero-tile--bottom { width: 47%; height: 31%; right: 0; bottom: 6%; }
.hero-tile--bottom img { object-position: center; }
.hero-index {
  position: absolute;
  z-index: 3;
  right: -1.25rem;
  top: 8%;
  color: var(--blue);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.5;
  text-align: center;
}

.proof-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem var(--gutter);
  background: var(--blue);
  color: var(--white);
  font-size: .75rem;
}
.proof-bar p { flex: none; margin: 0; color: var(--saffron); font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.proof-bar ul { width: 100%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 0; padding: 0; list-style: none; }
.proof-bar li { border-left: 1px solid rgb(255 255 255 / .25); padding-left: 1rem; font-weight: 750; }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(5rem, 9vw, 9rem) var(--gutter); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr); gap: clamp(2rem, 7vw, 8rem); align-items: end; margin-bottom: clamp(2.7rem, 5vw, 5rem); }
.section-heading h2, .route-intro h2, .cta-copy h2 { font-size: clamp(3rem, 6.2vw, 6.75rem); }
.section-heading > p { max-width: 35rem; margin: 0; color: var(--slate-text); font-size: clamp(1rem, 1.35vw, 1.2rem); }
.section-heading--compact { grid-template-columns: 1fr; }

.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; }
.filter {
  min-height: 2.75rem;
  border: 1px solid var(--line);
  background: transparent;
  padding: .65rem 1rem;
  font-size: .75rem;
  font-weight: 850;
  cursor: pointer;
}
.filter:hover, .filter.is-active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.collection-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
.product-card { grid-column: span 4; display: flex; flex-direction: column; min-width: 0; background: var(--white); }
.product-card--wide { grid-column: span 8; }
.product-card[hidden] { display: none; }
.product-image { position: relative; aspect-ratio: 5 / 4; overflow: hidden; background: #e5e9ed; }
.product-card--wide .product-image { aspect-ratio: 16 / 8.5; }
.product-card--tall .product-image { aspect-ratio: 4 / 5; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.product-card:hover .product-image img { transform: scale(1.025); }
.product-code { position: absolute; top: .75rem; left: .75rem; padding: .4rem .5rem; background: var(--cloud); font-size: .62rem; font-weight: 900; letter-spacing: .1em; }
.product-copy { flex: 1; display: flex; flex-direction: column; align-items: flex-start; padding: 1.35rem; }
.product-copy h3 { margin: 0; font-size: 1.28rem; letter-spacing: -.025em; }
.product-copy p { margin: .7rem 0 1.4rem; color: var(--slate-text); }
.card-link { margin-top: auto; color: var(--blue); font-size: .78rem; }

.trade-route {
  display: grid;
  grid-template-columns: minmax(19rem, 4fr) minmax(30rem, 6fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  background: var(--ink);
  color: var(--white);
}
.route-intro { align-self: center; max-width: 40rem; }
.route-intro h2 { letter-spacing: -.065em; }
.route-intro > p:not(.eyebrow) { max-width: 34rem; margin: 1.8rem 0 2rem; color: #b9c7d5; }
.route-list { margin: 0; padding: 0; border-top: 1px solid rgb(255 255 255 / .23); list-style: none; }
.route-list li { display: grid; grid-template-columns: 3.5rem 1fr auto; align-items: start; gap: 1.2rem; padding: 1.65rem 0; border-bottom: 1px solid rgb(255 255 255 / .23); }
.route-number { color: var(--saffron); font-family: var(--display); font-size: 1.4rem; font-weight: 900; }
.route-list h3 { margin: 0; font-size: 1.15rem; }
.route-list p { margin: .3rem 0 0; color: #b9c7d5; }
.route-status { align-self: center; border: 1px solid rgb(255 255 255 / .3); padding: .35rem .55rem; color: var(--saffron); font-size: .6rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }

.buyer-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.buyer-grid article { min-height: 24rem; display: flex; flex-direction: column; padding: clamp(1.5rem, 3vw, 3rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.buyer-grid article > span { color: var(--vermilion); font-size: .66rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.buyer-grid h3 { max-width: 13rem; margin: 2rem 0 1rem; font-family: var(--display); font-size: clamp(2rem, 3vw, 3.2rem); letter-spacing: -.055em; line-height: .95; }
.buyer-grid p { color: var(--slate-text); }
.buyer-grid ul { display: flex; flex-wrap: wrap; gap: .45rem; margin: auto 0 0; padding: 0; list-style: none; }
.buyer-grid li { border: 1px solid var(--line); padding: .35rem .5rem; font-size: .68rem; font-weight: 800; }

.cta-section {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  margin: 0 var(--gutter) clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 7vw, 7rem);
  background: var(--soft-blue);
  border-left: .7rem solid var(--saffron);
}
.cta-copy { max-width: 58rem; }
.cta-copy h2 { color: var(--blue); }
.cta-copy > p:last-child { max-width: 42rem; margin: 1.5rem 0 0; color: var(--slate-text); font-size: 1.12rem; }
.cta-actions { min-width: 14rem; display: flex; flex-direction: column; align-items: stretch; gap: 1rem; }
.cta-actions .text-link { align-self: flex-start; }

.site-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter) 2rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.footer-brand img { width: 13rem; height: 5rem; object-fit: contain; object-position: left; }
.footer-brand p { margin: .4rem 0 0; color: var(--blue); font-weight: 850; }
.footer-label { margin: 0 0 1rem; color: var(--slate-text); font-size: .65rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.site-footer > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: .6rem; }
.site-footer a, .site-footer button { border: 0; background: none; padding: 0; font-size: .83rem; font-weight: 750; text-decoration: none; cursor: pointer; }
.site-footer a:hover, .site-footer button:hover { color: var(--blue); text-decoration: underline; }
.footer-note { grid-column: 1 / -1; margin: 2rem 0 0; padding-top: 1.2rem; border-top: 1px solid var(--line); color: var(--slate-text); font-size: .72rem; }

.enquiry-dialog {
  width: min(48rem, calc(100% - 2rem));
  max-height: calc(100dvh - 2rem);
  margin: auto;
  padding: 0;
  border: 0;
  background: var(--cloud);
  color: var(--ink);
  box-shadow: 0 30px 120px rgb(0 0 0 / .35);
}
.enquiry-dialog::backdrop { background: rgb(11 30 51 / .75); backdrop-filter: blur(4px); }
.dialog-header { display: flex; justify-content: space-between; gap: 2rem; padding: 2rem 2rem 1rem; }
.dialog-header h2 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.close-button { width: 2.7rem; height: 2.7rem; flex: none; border: 1px solid var(--line); background: var(--white); font-size: 1.8rem; line-height: 1; cursor: pointer; }
.enquiry-dialog form { padding: 1rem 2rem 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.enquiry-dialog label { display: grid; gap: .45rem; margin-bottom: 1rem; color: var(--ink); font-size: .72rem; font-weight: 850; }
.enquiry-dialog input, .enquiry-dialog select, .enquiry-dialog textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; background: var(--white); color: var(--ink); padding: .85rem; }
.enquiry-dialog textarea { resize: vertical; }
.form-note { margin: .25rem 0 1.2rem; color: var(--slate-text); font-size: .72rem; }
.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem; }
.noscript { position: fixed; z-index: 90; right: 1rem; bottom: 1rem; max-width: 24rem; margin: 0; padding: 1rem; background: var(--saffron); color: var(--ink); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero h1 { font-size: clamp(4rem, 9.5vw, 6.5rem); }
  .hero-visual { min-height: 38rem; }
  .product-card { grid-column: span 6; }
  .product-card--wide { grid-column: span 12; }
  .trade-route { grid-template-columns: 1fr 1.15fr; gap: 4rem; }
  .cta-section { grid-template-columns: 1fr; align-items: start; }
  .cta-actions { align-items: flex-start; }
}

@media (max-width: 760px) {
  .site-header { min-height: 4.4rem; }
  .brand { width: 9.5rem; }
  .brand img { height: 2.9rem; }
  .menu-button { display: inline-flex; align-items: center; gap: .65rem; }
  .menu-icon, .menu-icon::before, .menu-icon::after { width: 1.2rem; height: 2px; display: block; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-icon { position: relative; }
  .menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; }
  .menu-icon::before { top: -.38rem; }
  .menu-icon::after { top: .38rem; }
  .menu-button[aria-expanded="true"] .menu-icon { background: transparent; }
  .menu-button[aria-expanded="true"] .menu-icon::before { top: 0; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-icon::after { top: 0; transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 4.4rem 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: .75rem var(--gutter) 1.2rem;
    border-bottom: 1px solid var(--line);
    background: var(--cloud);
  }
  .site-nav.is-open { display: grid; }
  .site-nav > a { padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .site-nav .button { margin-top: 1rem; }

  .hero { min-height: 0; grid-template-columns: 1fr; gap: 3rem; padding-top: 4.5rem; }
  .hero h1 { font-size: clamp(4rem, 18vw, 6.2rem); }
  .hero-lede { max-width: 31rem; }
  .hero-facts { margin-top: 3rem; }
  .hero-visual { min-height: min(116vw, 42rem); }
  .hero-index { right: -.3rem; }
  .proof-bar { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .proof-bar ul { grid-template-columns: 1fr 1fr; }

  .section-heading { grid-template-columns: 1fr; align-items: start; gap: 1.5rem; }
  .section-heading h2, .route-intro h2, .cta-copy h2 { font-size: clamp(3.15rem, 13vw, 5.5rem); }
  .product-card, .product-card--wide, .product-card--tall { grid-column: span 12; }
  .product-card--wide .product-image { aspect-ratio: 5 / 4; }
  .trade-route { grid-template-columns: 1fr; gap: 4rem; }
  .buyer-grid { grid-template-columns: 1fr; }
  .buyer-grid article { min-height: 20rem; }
  .cta-section { margin-inline: 0; padding: 4rem var(--gutter); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 460px) {
  .hero h1 { font-size: 3.9rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts div, .hero-facts div + div { padding: .85rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-facts div:last-child { border-bottom: 0; }
  .hero-tile--primary { inset: 6% 3% 0 17%; }
  .hero-tile--top { width: 44%; height: 31%; }
  .hero-tile--bottom { width: 52%; height: 28%; bottom: 7%; }
  .proof-bar ul { grid-template-columns: 1fr; }
  .route-list li { grid-template-columns: 2.6rem 1fr; }
  .route-status { grid-column: 2; justify-self: start; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand, .footer-note { grid-column: 1; }
  .dialog-header, .enquiry-dialog form { padding-left: 1.2rem; padding-right: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Crawlable authority pages */
.seo-article { max-width: 1080px; margin: 0 auto; padding: clamp(3.5rem, 8vw, 7rem) var(--gutter) clamp(4rem, 8vw, 7rem); }
.seo-hero { max-width: 52rem; border-bottom: 1px solid var(--line); padding-bottom: clamp(2rem, 4vw, 3.5rem); }
.seo-hero h1, .seo-detail h2, .seo-cta h2 { margin: 0; font-family: var(--display); font-weight: 900; letter-spacing: -.06em; line-height: .93; }
.seo-hero h1 { font-size: clamp(3.5rem, 7vw, 7rem); }
.seo-intro { margin: 1.6rem 0 0; color: var(--slate-text); font-size: clamp(1.12rem, 2vw, 1.42rem); line-height: 1.55; }
.seo-byline { margin: 1.25rem 0 0; color: var(--slate-text); font-size: .75rem; font-weight: 750; }
.seo-page-image { margin: clamp(2rem, 5vw, 4rem) 0 0; background: var(--white); }
.seo-page-image img { width: 100%; max-height: 34rem; object-fit: cover; }
.seo-page-image figcaption { padding: .75rem 1rem; color: var(--slate-text); font-size: .72rem; }
.seo-content { max-width: 46rem; margin: clamp(2.8rem, 6vw, 5rem) 0 0; }
.seo-detail { padding: 0 0 2.5rem; margin: 0 0 2.5rem; border-bottom: 1px solid var(--line); }
.seo-detail h2 { font-size: clamp(2.1rem, 4vw, 3.5rem); }
.seo-detail p, .seo-detail li { color: var(--slate-text); }
.seo-detail p { margin: 1.1rem 0 0; }
.seo-detail a { color: var(--blue); font-weight: 800; }
.seo-detail ul, .seo-detail ol { display: grid; gap: .7rem; margin: 1.25rem 0 0; padding-left: 1.25rem; }
.seo-detail strong { color: var(--ink); }
.contact-profile { margin-top: 1.5rem; padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid var(--line); border-top: .35rem solid var(--saffron); background: var(--white); }
.contact-profile__role, .contact-profile__location { color: var(--slate-text); font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.contact-profile h3 { margin: .35rem 0 0; font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.05em; line-height: .95; }
.contact-profile__location { margin: .75rem 0 0; }
.contact-profile__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.25rem; margin-top: 1.5rem; }
.seo-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.seo-card-grid article { padding: 1.35rem; background: var(--white); border-top: .3rem solid var(--saffron); }
.seo-card-grid h3 { margin: 0; font-size: 1.2rem; letter-spacing: -.025em; }
.seo-card-grid p { margin: .55rem 0 0; }
.seo-cta { max-width: 58rem; padding: clamp(2rem, 5vw, 4rem); background: var(--soft-blue); border-left: .7rem solid var(--saffron); }
.seo-cta h2 { color: var(--blue); font-size: clamp(2.5rem, 5vw, 4.5rem); }
.seo-cta > p:not(.eyebrow) { max-width: 38rem; color: var(--slate-text); }
.seo-home-authority { padding-top: 0; }
.seo-home-authority .seo-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.seo-home-authority .seo-card-grid article { min-height: 16rem; display: flex; flex-direction: column; align-items: flex-start; }
.seo-home-authority .seo-card-grid .text-link { margin-top: auto; }

@media (max-width: 760px) {
  .seo-card-grid, .seo-home-authority .seo-card-grid { grid-template-columns: 1fr; }
}
