:root {
  --ink: #173042;
  --muted: #5f7180;
  --paper: #fbf8f1;
  --white: #ffffff;
  --navy: #17486a;
  --blue: #2372a3;
  --sky: #d9edf7;
  --mint: #d9efe2;
  --gold: #d99b2b;
  --coral: #c95f4b;
  --line: rgba(23, 48, 66, 0.14);
  --shadow: 0 22px 60px rgba(23, 48, 66, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 155, 43, 0.18), transparent 32rem),
    linear-gradient(180deg, #f7fbfd 0%, var(--paper) 42%, #eef8f2 100%);
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 248, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner,
.footer-grid,
.hero-grid,
.split,
.contact-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.header-inner {
  grid-template-columns: 1fr auto;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.logo-mark {
  display: block;
  width: 54px;
  height: 54px;
  padding: 3px;
  border-radius: 14px;
  background: #f7fbfd;
  box-shadow: 0 10px 24px rgba(23, 72, 106, 0.18);
  filter: hue-rotate(126deg) saturate(0.82) brightness(0.82);
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text span,
.small-note,
.center-note,
.section-intro {
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--navy);
  background: var(--sky);
}

.nav .nav-cta {
  color: var(--white);
  background: var(--coral);
}

.hero {
  overflow: hidden;
  padding: 90px 0 76px;
  background:
    linear-gradient(135deg, rgba(23, 72, 106, 0.95), rgba(35, 114, 163, 0.82)),
    linear-gradient(90deg, var(--navy), var(--blue));
  color: var(--white);
}

.hero-grid,
.split,
.contact-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 8vw, 5.75rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 26px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #1f2d36;
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(217, 155, 43, 0.34);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.btn-full {
  width: 100%;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card,
.info-panel,
.stats-panel,
.card,
.comparison-box,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  color: var(--ink);
}

.logo-placeholder {
  display: grid;
  aspect-ratio: 3 / 2;
  min-height: 180px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  overflow: hidden;
}

.logo-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.content-section {
  padding: 82px 0;
}

.content-section.alt {
  background: rgba(255, 255, 255, 0.48);
}

.reverse {
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}

.reverse > :first-child {
  grid-column: 2;
}

.reverse > :last-child {
  grid-column: 1;
  grid-row: 1;
}

.info-panel,
.stats-panel,
.contact-form {
  padding: 28px;
}

.info-panel {
  background: linear-gradient(180deg, var(--white), var(--mint));
}

.info-panel ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.stats-panel {
  display: grid;
  gap: 14px;
  background: var(--navy);
  color: var(--white);
}

.stats-panel div {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.stats-panel strong,
.stats-panel span {
  display: block;
}

.stats-panel span {
  color: rgba(255, 255, 255, 0.76);
}

.card-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.card,
.comparison-box {
  padding: 24px;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.options-grid {
  align-items: stretch;
}

.options-grid .card {
  display: grid;
  align-content: start;
  min-height: 190px;
}

.card:nth-child(1) {
  border-top: 5px solid var(--blue);
}

.card:nth-child(2) {
  border-top: 5px solid var(--gold);
}

.card:nth-child(3) {
  border-top: 5px solid var(--coral);
}

.card:nth-child(4) {
  border-top: 5px solid var(--mint);
}

.card:nth-child(5) {
  border-top: 5px solid var(--navy);
}

.card:nth-child(6) {
  border-top: 5px solid var(--sky);
}

.comparison-grid {
  grid-template-columns: repeat(2, 1fr);
}

.comparison-box {
  background: linear-gradient(180deg, var(--white), #f4fbff);
}

.carrier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.carrier-card {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(217, 237, 247, 0.52)),
    var(--white);
  box-shadow: 0 14px 34px rgba(23, 48, 66, 0.1);
}

.carrier-card h3 {
  color: var(--navy);
}

.carrier-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 600;
}

.center-note {
  margin: 22px auto 0;
  text-align: center;
}

.blog-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(217, 237, 247, 0.72), rgba(255, 255, 255, 0.82) 58%, rgba(217, 239, 226, 0.7));
}

.blog-section::before {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 260px;
  height: 260px;
  border: 38px solid rgba(217, 155, 43, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.blog-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.blog-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 700;
}

.text-link,
.article-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.text-link {
  padding-bottom: 7px;
  border-bottom: 2px solid var(--gold);
}

.text-link span,
.article-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span,
.article-link:hover span,
.article-link:focus-visible span {
  transform: translateX(4px);
}

.blog-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.45fr 0.78fr;
  gap: 18px;
}

.blog-card {
  display: grid;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(23, 48, 66, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(23, 48, 66, 0.16);
}

.blog-card-featured {
  grid-row: span 2;
  grid-template-columns: minmax(190px, 0.78fr) minmax(0, 1.22fr);
}

.blog-card-accent {
  background: var(--navy);
  color: var(--white);
}

.blog-card-wide {
  grid-column: 1 / -1;
  min-height: 220px;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.96), rgba(217, 239, 226, 0.78));
}

.blog-card-wide .blog-card-content {
  max-width: 850px;
}

.blog-card-content {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.blog-card h3 {
  margin-bottom: 14px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  line-height: 1.08;
}

.blog-card p:not(.blog-meta) {
  color: var(--muted);
}

.blog-card-accent p:not(.blog-meta) {
  color: rgba(255, 255, 255, 0.74);
}

.blog-card .article-link {
  margin-top: auto;
}

.blog-card-accent .article-link {
  color: var(--gold);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card-accent .blog-meta {
  color: var(--gold);
}

.blog-art {
  position: relative;
  display: grid;
  min-height: 290px;
  padding: 28px;
  align-content: end;
  overflow: hidden;
  color: var(--white);
  background: var(--coral);
}

.blog-art::before,
.blog-art::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.blog-art::before {
  top: -34px;
  right: -40px;
  width: 150px;
  height: 150px;
  border: 28px solid rgba(255, 255, 255, 0.22);
}

.blog-art::after {
  bottom: 52px;
  left: -44px;
  width: 128px;
  height: 128px;
  background: rgba(217, 155, 43, 0.54);
}

.blog-art-enrollment {
  background:
    linear-gradient(155deg, rgba(23, 72, 106, 0.18), transparent 55%),
    var(--coral);
}

.blog-art-enrollment .art-number {
  font-size: clamp(3.5rem, 7vw, 5.8rem);
  letter-spacing: -0.07em;
}

.art-number,
.art-caption {
  position: relative;
  z-index: 1;
  display: block;
}

.art-number {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.72;
}

.art-caption {
  margin-top: 22px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-page-main {
  padding-bottom: 90px;
}

.blog-hero {
  padding: 82px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 30%, rgba(217, 155, 43, 0.24), transparent 18rem),
    linear-gradient(135deg, #173042, #17486a);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
  gap: 70px;
  align-items: end;
}

.blog-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3.3rem, 8vw, 6.6rem);
}

.blog-hero p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.blog-hero-note {
  padding: 22px 0 4px 24px;
  border-left: 2px solid var(--gold);
}

.blog-hero-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
}

.topic-directory {
  position: relative;
  padding: 72px 0 76px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(217, 237, 247, 0.52)),
    var(--paper);
}

.topic-directory::after {
  position: absolute;
  right: -84px;
  bottom: -150px;
  width: 330px;
  height: 330px;
  border: 48px solid rgba(217, 155, 43, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.topic-directory-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 34px;
}

.topic-directory-heading h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.topic-directory-heading > p {
  margin-bottom: 2px;
  color: var(--muted);
}

.topic-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.topic-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 128px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(23, 48, 66, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.topic-card:hover,
.topic-card:focus-visible {
  border-color: rgba(35, 114, 163, 0.42);
  box-shadow: 0 20px 42px rgba(23, 48, 66, 0.14);
  transform: translateY(-4px);
}

.topic-number {
  align-self: start;
  color: var(--coral);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.topic-card-copy {
  display: grid;
  gap: 4px;
}

.topic-card-copy strong {
  color: var(--navy);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.05;
}

.topic-card-copy small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.topic-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--sky);
  font-size: 1.2rem;
  transition: transform 180ms ease, background 180ms ease;
}

.topic-card:hover .topic-arrow,
.topic-card:focus-visible .topic-arrow {
  background: var(--gold);
  transform: translateX(3px);
}

.topic-card-compare,
.topic-card-prescriptions {
  transform: translateY(18px);
}

.topic-card-compare:hover,
.topic-card-compare:focus-visible,
.topic-card-prescriptions:hover,
.topic-card-prescriptions:focus-visible {
  transform: translateY(14px);
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 74px;
  justify-content: center;
  align-items: start;
  padding-top: 84px;
}

.article-index {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
}

.article-index p {
  margin-bottom: 4px;
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-index a {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  padding: 10px 12px;
  border-left: 2px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.article-index a span {
  color: var(--coral);
  font-family: "Newsreader", Georgia, serif;
  font-size: 0.9rem;
}

.article-index a:hover,
.article-index a:focus-visible {
  border-color: var(--gold);
  color: var(--navy);
  background: rgba(217, 237, 247, 0.5);
}

.article-stack {
  display: grid;
  gap: 34px;
}

.full-article {
  scroll-margin-top: 110px;
  padding: 42px clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 50px rgba(23, 48, 66, 0.09);
}

.featured-article {
  position: relative;
  border-top: 6px solid var(--gold);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(217, 237, 247, 0.34)),
    var(--white);
}

.featured-article::before {
  position: absolute;
  top: 28px;
  right: clamp(24px, 5vw, 54px);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(217, 155, 43, 0.2);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  content: "New this week";
}

.featured-article .blog-meta {
  padding-right: 110px;
}

.full-article h2 {
  max-width: 680px;
  font-family: "Newsreader", Georgia, serif;
}

.full-article h3 {
  margin-top: 28px;
  color: var(--navy);
}

.full-article p,
.full-article li {
  color: #4d6270;
}

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

.full-article li + li {
  margin-top: 10px;
}

.article-callout {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  background: var(--sky);
}

.article-callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
}

.enrollment-window {
  border-left-color: var(--coral);
  background: linear-gradient(100deg, rgba(217, 237, 247, 0.92), rgba(217, 239, 226, 0.72));
}

.article-sources {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.article-sources strong {
  color: var(--navy);
}

.article-sources a {
  width: fit-content;
  color: var(--blue);
  font-weight: 700;
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 54px;
  padding: 32px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.article-cta h2,
.article-cta p {
  margin-bottom: 0;
}

.article-cta h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-section {
  color: var(--white);
  background: linear-gradient(135deg, #173042, #17486a);
}

.contact-section .section-label {
  color: var(--gold);
}

.contact-section a,
.contact-section p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-details {
  margin-top: 24px;
}

.contact-form {
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 48, 66, 0.2);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(35, 114, 163, 0.16);
}

.hidden {
  display: none;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #102a3d;
}

.footer-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-note {
  font-size: 0.9rem;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  padding: 40px 20px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #173042, #17486a);
}

.thanks-panel {
  width: min(760px, 100%);
}

.thanks-panel h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.thanks-panel p:not(.section-label) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
}

@media (max-width: 880px) {
  .header-inner,
  .hero-grid,
  .split,
  .reverse,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .reverse > :first-child,
  .reverse > :last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .nav {
    flex-wrap: wrap;
    padding-bottom: 16px;
  }

  .card-grid,
  .comparison-grid,
  .carrier-grid {
    grid-template-columns: 1fr;
  }

  .blog-heading,
  .blog-grid,
  .blog-card-featured,
  .blog-hero-grid,
  .topic-directory-heading,
  .article-layout,
  .article-cta {
    grid-template-columns: 1fr;
  }

  .blog-card-featured {
    grid-row: auto;
  }

  .blog-card-wide {
    grid-column: auto;
  }

  .blog-art {
    min-height: 240px;
  }

  .article-layout {
    gap: 34px;
  }

  .topic-directory-heading {
    gap: 20px;
  }

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

  .topic-card-compare,
  .topic-card-prescriptions {
    transform: none;
  }

  .topic-card-compare:hover,
  .topic-card-compare:focus-visible,
  .topic-card-prescriptions:hover,
  .topic-card-prescriptions:focus-visible {
    transform: translateY(-4px);
  }

  .article-index {
    position: static;
    grid-template-columns: repeat(4, 1fr);
  }

  .article-index p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero,
  .content-section {
    padding: 58px 0;
  }

  .topic-directory {
    padding: 56px 0;
  }

  .topic-card {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 0;
    padding: 20px;
  }

  .topic-arrow {
    display: none;
  }

  .brand-text span {
    font-size: 0.8rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

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

  .article-index p {
    grid-column: auto;
  }

  .full-article {
    padding: 30px 22px;
  }

  .featured-article::before {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }

  .featured-article .blog-meta {
    padding-right: 0;
  }
}
