/* Redstone SEO blog home — selected editorial concept */
.blog-index-page {
  --blog-max: 1260px;
  --blog-canvas: #fcfbfa;
  --blog-header: #fdfcfc;
  --blog-surface: #faf9f6;
  --blog-card: #fff;
  --blog-ink: #121314;
  --blog-text: #4b4744;
  --blog-muted: #66615e;
  --blog-red: #a70911;
  --blog-red-hover: #82070d;
  --blog-teal: #2b6b6c;
  --blog-teal-hover: #20585a;
  --blog-line: #ede6e0;
  --blog-icon-bg: #f8f3ee;
  --blog-radius: 6px;
  background: var(--blog-canvas);
  color: var(--blog-text);
}

.blog-index-page .container {
  width: min(var(--blog-max), calc(100% - 112px));
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
}

.blog-index-page .site-header {
  height: 80px;
  background: rgba(253, 252, 252, .98);
  border-bottom: 1px solid var(--blog-line);
  box-shadow: none;
}

.blog-index-page .nav {
  width: 100%;
  max-width: 1400px;
  min-height: 80px;
  padding: 0 30px;
}

.blog-index-page .nav > .brand {
  gap: 12px;
  min-height: 44px;
  color: #b30b14;
  font-size: 25px;
  line-height: 1.1;
}

.blog-index-page .nav .brand-mark {
  width: 40px;
  height: 40px;
}

.blog-index-page .nav-menu {
  flex: 1;
  gap: 12px;
  margin-left: 88px;
}

.blog-index-page .nav-menu a {
  min-height: 44px;
  padding: 10px 9px;
  border-radius: 5px;
  color: var(--blog-ink);
  font-size: 14px;
  font-weight: 600;
}

.blog-index-page .nav-menu .nav-cta {
  min-width: 154px;
  min-height: 46px;
  margin-left: auto;
  padding: 12px 20px;
  color: #fff;
  background: var(--blog-red);
  border-radius: 5px;
  box-shadow: none;
}

.blog-index-page .nav-menu .nav-cta:hover {
  color: #fff;
  background: var(--blog-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(130, 7, 13, .16);
}

.blog-index-page .nav-menu a:not(.btn-primary)::after {
  bottom: 4px;
  height: 1px;
}

.blog-index-page main {
  overflow: clip;
}

.blog-index-page .blog-home-hero {
  min-height: 436px;
  padding: 36px 0 44px;
  overflow: visible;
  text-align: left;
  background: var(--blog-canvas);
}

.blog-index-page .blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 519px) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.blog-index-page .blog-hero-copy {
  grid-column: 1;
  grid-row: 1;
}

.blog-index-page .blog-hero-panel {
  grid-column: 2;
  grid-row: 1;
}

.blog-index-page .blog-hero-copy,
.blog-index-page .blog-hero-panel,
.blog-index-page .blog-topic-strip {
  min-width: 0;
}

.blog-index-page .blog-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 17px;
  color: var(--blog-red);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.blog-index-page .blog-hero-eyebrow::before {
  width: 26px;
  height: 4px;
  flex: 0 0 auto;
  background: var(--blog-red);
  content: "";
}

.blog-index-page .blog-hero-copy h1 {
  max-width: 520px;
  margin: 0 0 18px;
  color: var(--blog-ink);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.34;
  letter-spacing: -.025em;
}

.blog-index-page .blog-hero-copy > p {
  max-width: 510px;
  margin: 0;
  color: var(--blog-text);
  font-size: 16px;
  line-height: 1.75;
}

.blog-index-page .blog-hero-actions {
  display: flex;
  align-items: center;
  gap: 44px;
  margin: 30px 0 0;
}

.blog-index-page .blog-primary-action {
  display: inline-flex;
  width: 269px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 24px;
  border: 1px solid var(--blog-red);
  border-radius: 5px;
  background: var(--blog-red);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(130, 7, 13, .1);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.blog-index-page .blog-primary-action:hover {
  border-color: var(--blog-red-hover);
  background: var(--blog-red-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(130, 7, 13, .16);
}

.blog-index-page .blog-text-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid currentColor;
  color: var(--blog-teal);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.blog-index-page .blog-text-action:hover {
  color: var(--blog-teal-hover);
}

.blog-index-page .blog-primary-action span,
.blog-index-page .blog-text-action span,
.blog-index-page .blog-hero-read span,
.blog-index-page .blog-all-toggle span:last-child,
.blog-index-page .blog-topic-link b {
  transition: transform .2s ease;
}

.blog-index-page .blog-primary-action:hover span,
.blog-index-page .blog-text-action:hover span,
.blog-index-page .blog-hero-read:hover span,
.blog-index-page .blog-all-toggle:hover span:last-child,
.blog-index-page .blog-topic-link:hover b {
  transform: translateX(4px);
}

.blog-index-page .blog-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  min-height: 356px;
  overflow: hidden;
  border: 1px solid var(--blog-line);
  border-radius: var(--blog-radius);
  background: var(--blog-surface);
  box-shadow: none;
}

.blog-index-page .blog-hero-panel-body {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 37px 0 31px 38px;
}

.blog-index-page .blog-hero-kicker {
  display: block;
  min-height: 0;
  margin: 0 0 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blog-red);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.blog-index-page .blog-hero-panel h2 {
  margin: 0 0 16px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.018em;
}

.blog-index-page .blog-hero-panel h2 a {
  color: var(--blog-ink);
}

.blog-index-page .blog-hero-panel h2 a > span {
  display: block;
  white-space: nowrap;
}

.blog-index-page .blog-hero-panel h2 a:hover {
  color: var(--blog-red);
}

.blog-index-page .blog-hero-panel p {
  display: -webkit-box;
  max-width: 305px;
  margin: 0;
  overflow: hidden;
  color: var(--blog-text);
  font-size: 14px;
  line-height: 1.72;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-index-page .blog-hero-meta {
  order: 4;
  display: flex;
  gap: 14px;
  margin: auto 0 12px;
  color: var(--blog-muted);
  font-size: 13px;
  line-height: 1.4;
}

.blog-index-page .blog-hero-meta span {
  display: none;
}

.blog-index-page .blog-hero-read {
  order: 5;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: var(--blog-red);
  font-size: 14px;
  font-weight: 700;
}

.blog-index-page .blog-hero-read:hover {
  color: var(--blog-red-hover);
}

.blog-index-page .blog-hero-illustration {
  display: flex;
  min-width: 0;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  padding: 16px 18px 14px 0;
  background: transparent;
}

.blog-index-page .blog-hero-illustration img {
  width: 100%;
  height: 100%;
  max-height: 326px;
  object-fit: contain;
}

.blog-index-page .blog-index-section {
  padding: 0;
  background: var(--blog-canvas);
}

.blog-index-page .blog-rd-content-flow {
  display: flex;
  flex-direction: column;
}

.blog-index-page .blog-topic-strip {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 2;
  display: block;
  min-height: 232px;
  margin: 0;
  padding: 37px 0 15px;
  border: 0;
  border-top: 1px solid var(--blog-line);
  border-bottom: 1px solid var(--blog-line);
  border-radius: 0;
  background: transparent;
  scroll-margin-top: 96px;
}

.blog-index-page .blog-topic-copy {
  position: absolute;
  top: -17px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

.blog-index-page .blog-topic-copy .eyebrow {
  display: none;
}

.blog-index-page .blog-topic-copy h2 {
  margin: 0;
  padding: 0 22px;
  background: var(--blog-canvas);
  color: var(--blog-ink);
  font-size: 21px;
  font-weight: 700;
  line-height: 34px;
}

.blog-index-page .blog-topic-links {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  height: 100%;
}

.blog-index-page .blog-topic-link {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 176px;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 8px;
  border: 0;
  border-right: 1px solid var(--blog-line);
  border-radius: 0;
  background: transparent;
  color: var(--blog-ink);
  box-shadow: none;
  text-align: center;
  transition: color .2s ease, background-color .2s ease;
}

.blog-index-page .blog-topic-link:last-child {
  border-right: 0;
}

.blog-index-page .blog-topic-link:hover {
  border-color: var(--blog-line);
  background: rgba(248, 243, 238, .5);
  color: var(--blog-red);
  box-shadow: none;
  transform: none;
}

.blog-index-page .blog-topic-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  border-radius: 50%;
  background: var(--blog-icon-bg);
  color: var(--blog-red);
}

.blog-index-page .blog-topic-link:nth-child(even) .blog-topic-icon {
  color: var(--blog-teal);
}

.blog-index-page .blog-topic-icon img {
  width: 30px;
  height: 30px;
  filter: invert(13%) sepia(78%) saturate(4208%) hue-rotate(349deg) brightness(75%) contrast(105%);
}

.blog-index-page .blog-topic-link:nth-child(even) .blog-topic-icon img {
  filter: invert(35%) sepia(20%) saturate(1187%) hue-rotate(132deg) brightness(91%) contrast(89%);
}

.blog-index-page .blog-topic-link strong {
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.blog-index-page .blog-topic-link > span:not(.blog-topic-icon) {
  display: -webkit-box;
  max-width: 166px;
  margin: 0;
  overflow: hidden;
  color: #595451;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-index-page .blog-topic-link b {
  display: inline-flex;
  min-width: 44px;
  min-height: 37px;
  align-items: flex-end;
  justify-content: center;
  margin-top: auto;
  color: var(--blog-ink);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.blog-index-page .blog-layout {
  display: block;
  padding: 16px 0 74px;
  scroll-margin-top: 96px;
}

.blog-index-page .blog-main {
  min-width: 0;
}

.blog-index-page .blog-section-head {
  display: flex;
  max-width: none;
  min-height: 39px;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin: 0 0 14px;
}

.blog-index-page .blog-section-head > div {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.blog-index-page .blog-section-head .eyebrow,
.blog-index-page .blog-section-head p {
  display: none;
}

.blog-index-page .blog-section-head h2 {
  position: relative;
  margin: 0;
  padding-left: 26px;
  color: var(--blog-ink);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.45;
}

.blog-index-page .blog-section-head h2::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 4px;
  background: var(--blog-red);
  content: "";
}

.blog-index-page .blog-all-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 15px;
  padding: 0 2px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--blog-teal);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.blog-index-page .blog-all-toggle[hidden] {
  display: none;
}

.blog-index-page .blog-all-toggle:hover {
  color: var(--blog-teal-hover);
}

.blog-index-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-index-page .blog-grid[data-collapsed="true"] .blog-card:nth-child(n+4) {
  display: none;
}

.blog-index-page .blog-card {
  position: relative;
  min-width: 0;
  min-height: 313px;
  overflow: hidden;
  border: 1px solid var(--blog-line);
  border-radius: var(--blog-radius);
  background: var(--blog-card);
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.blog-index-page .blog-card[hidden] {
  display: none;
}

.blog-index-page .blog-card:hover {
  border-color: #d8ccc3;
  box-shadow: 0 10px 26px rgba(18, 19, 20, .08);
  transform: translateY(-3px);
}

.blog-index-page .blog-cover {
  display: block;
  height: 162px;
  aspect-ratio: auto;
  overflow: hidden;
  border-bottom: 1px solid var(--blog-line);
  background: var(--blog-surface);
}

.blog-index-page .blog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.blog-index-page .blog-card:hover .blog-cover img {
  transform: scale(1.025);
}

.blog-index-page .blog-body {
  display: flex;
  min-height: 150px;
  flex: 1;
  flex-direction: column;
  padding: 14px 48px 15px 20px;
}

.blog-index-page .blog-body h3 {
  display: -webkit-box;
  min-height: 45px;
  margin: 0 0 5px;
  overflow: hidden;
  color: var(--blog-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-index-page .blog-body h3 a {
  color: var(--blog-ink);
}

.blog-index-page .blog-body h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.blog-index-page .blog-body h3 a:hover {
  color: var(--blog-red);
}

.blog-index-page .blog-body p {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: #595451;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-index-page .blog-meta {
  order: 3;
  display: flex;
  gap: 0;
  margin: auto 0 0;
  color: #66605d;
  font-size: 13px;
  line-height: 1.4;
}

.blog-index-page .blog-meta > *:not(:nth-child(2)) {
  display: none;
}

.blog-index-page .blog-read {
  position: absolute;
  right: 16px;
  bottom: 12px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  color: transparent;
  font-size: 0;
}

.blog-index-page .blog-read::after {
  color: var(--blog-ink);
  content: "→";
  font-size: 20px;
  line-height: 1;
  transition: color .2s ease, transform .2s ease;
}

.blog-index-page .blog-read:hover::after {
  color: var(--blog-red);
  transform: translateX(3px);
}

.blog-index-page .sidebar {
  display: none;
}

.blog-index-page .topic-cluster-map {
  margin: 0 0 72px;
  padding: 32px;
  border: 1px solid var(--blog-line);
  border-radius: var(--blog-radius);
  background: var(--blog-surface);
  box-shadow: none;
}

.blog-index-page .topic-cluster-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.blog-index-page .topic-cluster-head .eyebrow {
  margin-bottom: 5px;
  color: var(--blog-red);
  font-size: 13px;
}

.blog-index-page .topic-cluster-head h2 {
  margin: 0 0 8px;
  color: var(--blog-ink);
  font-size: 24px;
}

.blog-index-page .topic-cluster-head p {
  color: var(--blog-muted);
  font-size: 15px;
  line-height: 1.7;
}

.blog-index-page .topic-cluster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.blog-index-page .topic-cluster {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--blog-line);
  border-radius: var(--blog-radius);
  background: var(--blog-card);
}

.blog-index-page .topic-cluster h3 {
  margin-bottom: 8px;
  color: var(--blog-ink);
  font-size: 16px;
}

.blog-index-page .topic-cluster a {
  display: block;
  min-height: 44px;
  padding: 10px 0;
  color: var(--blog-text);
  font-size: 13px;
  line-height: 1.45;
}

.blog-index-page .topic-cluster a:hover {
  color: var(--blog-red);
}

.blog-index-page .blog-home-cta {
  padding: 68px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: var(--blog-ink);
}

.blog-index-page .blog-home-cta h2,
.blog-index-page .blog-home-cta p {
  color: #fff;
}

.blog-index-page .blog-home-cta h2 {
  font-size: 30px;
}

.blog-index-page .blog-home-cta p {
  margin: 8px 0 22px;
  color: rgba(255, 255, 255, .75);
}

.blog-index-page .blog-home-cta .btn-wa {
  min-height: 52px;
  background: var(--blog-red);
  box-shadow: none;
}

.blog-index-page .blog-home-cta .btn-wa:hover {
  background: #c1121b;
}

/* The selected editorial concept has no persistent floating controls. The
   conversion links remain available in the hero, CTA band and footer. */
.blog-index-page .floating-actions {
  display: none !important;
}

.blog-index-page :where(.blog-primary-action, .blog-text-action, .blog-hero-panel a, .blog-topic-link, .blog-all-toggle, .blog-card a):active {
  transform: translateY(1px);
}

@media (max-width: 1180px) {
  .blog-index-page .container {
    width: calc(100% - 56px);
  }

  .blog-index-page .nav-menu {
    gap: 4px;
    margin-left: 42px;
  }

  .blog-index-page .blog-hero-grid {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 32px;
  }

  .blog-index-page .blog-hero-copy h1 {
    font-size: 39px;
  }

  .blog-index-page .blog-hero-actions {
    gap: 28px;
  }

  .blog-index-page .blog-primary-action {
    width: 238px;
  }

  .blog-index-page .blog-topic-link {
    padding-inline: 12px;
  }
}

@media (max-width: 980px) {
  .blog-index-page .blog-home-hero {
    padding: 46px 0 52px;
  }

  .blog-index-page .blog-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .blog-index-page .blog-hero-copy,
  .blog-index-page .blog-topic-strip,
  .blog-index-page .blog-hero-panel {
    grid-column: 1;
    grid-row: auto;
  }

  .blog-index-page .blog-hero-copy {
    max-width: 700px;
  }

  .blog-index-page .blog-hero-copy h1,
  .blog-index-page .blog-hero-copy > p {
    max-width: 680px;
  }

  .blog-index-page .blog-hero-panel {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  }

  .blog-index-page .blog-topic-strip {
    min-height: 414px;
    padding-top: 42px;
  }

  .blog-index-page .blog-topic-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-index-page .blog-topic-link {
    min-height: 178px;
    border-bottom: 1px solid var(--blog-line);
  }

  .blog-index-page .blog-topic-link:nth-child(3) {
    border-right: 0;
  }

  .blog-index-page .blog-topic-link:nth-child(n+4) {
    border-bottom: 0;
    padding-top: 14px;
  }

  .blog-index-page .blog-grid,
  .blog-index-page .topic-cluster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .blog-index-page .container {
    width: calc(100% - 40px);
  }

  .blog-index-page .site-header,
  .blog-index-page .nav {
    height: 68px;
    min-height: 68px;
  }

  .blog-index-page .nav {
    padding-inline: 20px;
  }

  .blog-index-page .nav > .brand {
    font-size: 19px;
  }

  .blog-index-page .nav .brand-mark {
    width: 34px;
    height: 34px;
  }

  .blog-index-page .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .blog-index-page .nav-menu {
    margin-left: 0;
  }

  .blog-index-page .nav-menu a {
    min-height: 46px;
  }

  .blog-index-page .blog-home-hero {
    min-height: 0;
    padding: 38px 0 44px;
  }

  .blog-index-page .blog-hero-grid {
    gap: 32px;
  }

  .blog-index-page .blog-hero-eyebrow {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .blog-index-page .blog-hero-copy h1 {
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 1.25;
  }

  .blog-index-page .blog-hero-copy h1 br {
    display: none;
  }

  .blog-index-page .blog-hero-copy > p {
    font-size: 16px;
  }

  .blog-index-page .blog-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
  }

  .blog-index-page .blog-primary-action {
    width: 100%;
    min-height: 56px;
  }

  .blog-index-page .blog-text-action {
    width: fit-content;
    min-height: 48px;
  }

  .blog-index-page .blog-hero-panel {
    grid-template-columns: 1fr;
  }

  .blog-index-page .blog-hero-panel-body {
    min-height: 292px;
    padding: 26px 24px 20px;
  }

  .blog-index-page .blog-hero-panel h2 {
    font-size: 23px;
  }

  .blog-index-page .blog-hero-panel p {
    max-width: none;
  }

  .blog-index-page .blog-hero-illustration {
    min-height: 230px;
    padding: 0 18px 18px;
  }

  .blog-index-page .blog-topic-strip {
    min-height: 576px;
    padding-top: 42px;
  }

  .blog-index-page .blog-topic-copy h2 {
    padding-inline: 14px;
    font-size: 18px;
  }

  .blog-index-page .blog-topic-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-index-page .blog-topic-link {
    min-height: 176px;
    padding-inline: 10px;
  }

  .blog-index-page .blog-topic-link:nth-child(3) {
    border-right: 1px solid var(--blog-line);
  }

  .blog-index-page .blog-topic-link:nth-child(even) {
    border-right: 0;
  }

  .blog-index-page .blog-topic-link:nth-child(n+4) {
    padding-top: 0;
  }

  .blog-index-page .blog-topic-link:nth-child(n+3) {
    padding-top: 12px;
  }

  .blog-index-page .blog-topic-link:nth-child(4) {
    border-bottom: 1px solid var(--blog-line);
  }

  .blog-index-page .blog-topic-link:nth-child(n+5) {
    border-bottom: 0;
  }

  .blog-index-page .blog-topic-link strong {
    font-size: 15px;
  }

  .blog-index-page .blog-layout {
    padding: 30px 0 60px;
  }

  .blog-index-page .blog-section-head {
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 18px;
  }

  .blog-index-page .blog-section-head h2 {
    padding-left: 18px;
    font-size: 20px;
  }

  .blog-index-page .blog-all-toggle {
    flex: 0 0 auto;
    font-size: 13px;
  }

  .blog-index-page .blog-grid,
  .blog-index-page .topic-cluster-grid {
    grid-template-columns: 1fr;
  }

  .blog-index-page .blog-card {
    min-height: 0;
  }

  .blog-index-page .blog-cover {
    height: auto;
    aspect-ratio: 2.35 / 1;
  }

  .blog-index-page .topic-cluster-map {
    margin-bottom: 56px;
    padding: 24px 20px;
  }

  .blog-index-page .topic-cluster-head h2 {
    font-size: 22px;
  }

  .blog-index-page .blog-home-cta {
    padding: 54px 0;
  }

  .blog-index-page .blog-home-cta h2 {
    font-size: 26px;
  }

}

@media (max-width: 400px) {
  .blog-index-page .container {
    width: calc(100% - 32px);
  }

  .blog-index-page .nav {
    padding-inline: 16px;
  }

  .blog-index-page .blog-hero-copy h1 {
    font-size: 30px;
  }

  .blog-index-page .blog-hero-panel-body {
    padding-inline: 20px;
  }

  .blog-index-page .blog-topic-link {
    padding-inline: 7px;
  }

  .blog-index-page .blog-topic-link > span:not(.blog-topic-icon) {
    font-size: 13px;
  }

  .blog-index-page .blog-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .blog-index-page .blog-all-toggle {
    margin-left: 18px;
  }
}

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