/*
Theme Name: Weight Loss Comparison
Theme URI: https://weightlosscomparison.co.uk
Author: Weight Loss Comparison
Description: Lightweight custom theme for a UK weight-loss treatment comparison hub.
Version: 0.1.0
Requires at least: 6.5
Requires PHP: 8.3
Text Domain: weightlosscomparison
*/

:root {
  --wlc-ink: #0d1b2a;
  --wlc-muted: #5b677a;
  --wlc-border: rgba(13, 27, 42, 0.12);
  --wlc-soft: #f2f4f7;
  --wlc-panel: #ffffff;
  --wlc-primary: #10b5a5;
  --wlc-primary-dark: #0d8f83;
  --wlc-accent: #132e4f;
  --wlc-accent-soft: #e6f7f5;
  --wlc-warn: #7c5a12;
  --wlc-radius: 8px;
  --wlc-shadow: 0 16px 38px rgba(13, 27, 42, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--wlc-ink);
  background: #ffffff;
  font-family: "Poppins", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--wlc-primary); }
a:hover { color: var(--wlc-primary-dark); }
img { max-width: 100%; height: auto; }

.wlc-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  overflow-x: clip;
  border-bottom: 1px solid rgba(13, 27, 42, 0.10);
  background:
    linear-gradient(90deg, rgba(16, 181, 165, 0.08), rgba(255, 250, 243, 0.82), rgba(16, 181, 165, 0.06)),
    rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.04);
  backdrop-filter: blur(12px);
}

.wlc-site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--wlc-accent), var(--wlc-primary), #7fd8c9);
}

.wlc-header-inner,
.wlc-container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.wlc-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 54px);
}

.wlc-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--wlc-ink);
  text-decoration: none;
}

.wlc-brand img {
  display: block;
  width: clamp(220px, 19vw, 280px);
  height: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wlc-primary-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(13, 27, 42, 0.05);
}

.wlc-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 800;
}

.wlc-nav li {
  position: relative;
  margin: 0;
}

.wlc-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--wlc-ink);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.wlc-nav a:hover,
.wlc-nav a:focus,
.wlc-nav .current-menu-item > a,
.wlc-nav .current-menu-ancestor > a {
  background: var(--wlc-accent-soft);
  color: var(--wlc-primary-dark);
  box-shadow: inset 0 0 0 1px rgba(16, 181, 165, 0.18);
}

.wlc-nav .menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.wlc-nav .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 246px;
  margin: 0;
  padding: 12px;
  list-style: none;
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 48px rgba(13, 27, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.wlc-nav .sub-menu::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 0;
  width: 100%;
  height: 12px;
}

.wlc-nav .sub-menu a {
  display: flex;
  min-height: 0;
  justify-content: flex-start;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--wlc-ink);
  white-space: nowrap;
}

.wlc-nav li:hover > .sub-menu,
.wlc-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.wlc-nav > li:last-child > .sub-menu,
.wlc-nav > li:nth-last-child(2) > .sub-menu {
  left: auto;
  right: 0;
  transform: translateY(8px);
}

.wlc-nav > li:last-child:hover > .sub-menu,
.wlc-nav > li:last-child:focus-within > .sub-menu,
.wlc-nav > li:nth-last-child(2):hover > .sub-menu,
.wlc-nav > li:nth-last-child(2):focus-within > .sub-menu {
  transform: translateY(0);
}

.wlc-nav-toggle {
  display: none;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--wlc-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--wlc-ink);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.wlc-main { min-height: 70vh; }
.wlc-section { padding: 64px 0; }
.wlc-section--soft { background: var(--wlc-soft); }
.wlc-section--warm {
  background:
    linear-gradient(180deg, #fffaf3 0%, #ffffff 86%);
}

.wlc-hero {
  padding: 36px 0 46px;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 196, 119, 0.22), transparent 30%),
    linear-gradient(180deg, #e8f9f6 0%, #fffaf3 58%, #ffffff 100%);
}

.wlc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: 48px;
  align-items: start;
}

.wlc-hero-grid > *,
.wlc-editorial-split > *,
.wlc-content article {
  min-width: 0;
}

.wlc-hero-aside {
  display: grid;
  gap: 16px;
}

.wlc-hero-copy {
  padding-top: 0;
}

.wlc-home-visual {
  position: relative;
}

.wlc-lifestyle-image {
  position: relative;
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.10);
  border-radius: var(--wlc-radius);
  background: var(--wlc-accent-soft);
  box-shadow: 0 14px 30px rgba(13, 27, 42, 0.08);
}

.wlc-lifestyle-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.04), rgba(16, 181, 165, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(13, 27, 42, 0.04));
}

.wlc-lifestyle-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(0.98);
}

.wlc-lifestyle-image--hero {
  aspect-ratio: 16 / 9.4;
  margin-bottom: 0;
  border-color: rgba(16, 181, 165, 0.22);
  box-shadow: 0 22px 44px rgba(13, 27, 42, 0.12);
}

.wlc-lifestyle-image--hero::after {
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.18), rgba(16, 181, 165, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(13, 27, 42, 0.10));
}

.wlc-lifestyle-image--hero img {
  filter: saturate(0.96) contrast(0.98);
  object-position: center 58%;
}

.wlc-lifestyle-image--page {
  float: right;
  width: min(38%, 380px);
  aspect-ratio: 4 / 3;
  margin: 4px 0 22px 26px;
}

.wlc-lifestyle-image--page img {
  object-position: center;
}

.wlc-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.62fr);
  gap: 30px;
  align-items: center;
  margin: 4px 0 34px;
  padding: 28px;
  border: 1px solid rgba(16, 181, 165, 0.18);
  border-radius: var(--wlc-radius);
  background:
    radial-gradient(circle at 92% 10%, rgba(16, 181, 165, 0.13), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f3fbf9 58%, #fffaf3 100%);
  box-shadow: 0 18px 44px rgba(13, 27, 42, 0.07);
}

.wlc-page-hero__copy {
  min-width: 0;
}

.wlc-page-hero h1 {
  max-width: 780px;
  margin-bottom: 16px;
}

.wlc-page-hero .wlc-lead {
  max-width: 740px;
}

.wlc-page-hero__media {
  align-self: stretch;
  min-height: 100%;
  min-width: 0;
}

.wlc-lifestyle-image--page-hero {
  width: 100%;
  height: 100%;
  min-height: 270px;
  max-height: 390px;
  aspect-ratio: 4 / 3;
}

.wlc-lifestyle-image--page-hero img {
  object-position: center;
}

.page-weight-loss-injections .wlc-lifestyle-image--page-hero img {
  object-position: center 54%;
}

.page-online-weight-loss-clinics .wlc-lifestyle-image--page-hero img {
  object-position: center 44%;
}

.wlc-page-body {
  clear: both;
}

.wlc-editorial-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  align-items: center;
  margin: 18px auto 22px;
}

.wlc-editorial-split .wlc-lifestyle-image {
  aspect-ratio: 4 / 3;
  margin: 0;
}

.wlc-visual-note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: min(270px, calc(100% - 32px));
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 4px solid var(--wlc-primary);
  border-radius: var(--wlc-radius);
  background: rgba(13, 27, 42, 0.82);
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.24);
  backdrop-filter: blur(10px);
}

.wlc-visual-note strong,
.wlc-visual-note span {
  display: block;
}

.wlc-visual-note strong {
  color: #ffffff;
  font-size: 14px;
}

.wlc-visual-note span {
  margin-top: 4px;
  color: #dbe7f1;
  font-size: 12px;
  line-height: 1.4;
}

.wlc-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(16, 181, 165, 0.28);
  border-radius: 999px;
  color: #0b6f66;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 { font-size: 54px; max-width: 850px; }
h2 { font-size: 36px; }
h3 { font-size: 20px; }
p { margin: 0 0 16px; color: var(--wlc-muted); }

.wlc-lead {
  max-width: 760px;
  font-size: 18px;
  color: #3e4e60;
}

.wlc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.wlc-actions--center {
  justify-content: center;
}

.wlc-start-chooser {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(16, 181, 165, 0.20);
  border-radius: var(--wlc-radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.045);
}

.wlc-start-chooser p {
  margin-bottom: 10px;
  color: var(--wlc-ink);
  font-size: 14px;
  font-weight: 900;
}

.wlc-start-chooser div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wlc-start-chooser a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(16, 181, 165, 0.26);
  border-radius: 999px;
  background: #ffffff;
  color: #0b6f66;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
}

.wlc-start-chooser a:hover {
  border-color: rgba(16, 181, 165, 0.52);
  background: var(--wlc-accent-soft);
  color: var(--wlc-primary-dark);
}

.wlc-hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.wlc-hero-proof div {
  padding: 13px 12px;
  border: 1px solid rgba(13, 27, 42, 0.10);
  border-radius: var(--wlc-radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.045);
}

.wlc-hero-proof strong,
.wlc-hero-proof span {
  display: block;
}

.wlc-hero-proof strong {
  color: var(--wlc-ink);
  font-size: 22px;
  line-height: 1.1;
}

.wlc-hero-proof span {
  margin-top: 4px;
  color: #516276;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.wlc-provider-strip {
  margin-top: 34px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(13, 27, 42, 0.10);
}

.wlc-provider-strip p {
  margin-bottom: 12px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wlc-provider-strip p::after {
  content: " - not a full provider ranking";
  color: #7a8799;
  font-weight: 700;
  text-transform: none;
}

.wlc-provider-strip div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 720px;
}

.wlc-provider-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 9px 12px;
  border: 1px solid rgba(13, 27, 42, 0.10);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  color: #223149;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(13, 27, 42, 0.045);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.wlc-provider-tile img {
  display: block;
  width: auto;
  max-width: 112px;
  max-height: 30px;
  object-fit: contain;
}

.wlc-provider-tile:hover {
  border-color: rgba(16, 181, 165, 0.42);
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.07);
  color: #0d1b2a;
  transform: translateY(-1px);
}

.wlc-provider-strip small {
  display: block;
  max-width: 720px;
  margin-top: 10px;
  color: #6b778b;
  font-size: 11px;
  line-height: 1.45;
}

.wlc-button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--wlc-primary);
  border-radius: var(--wlc-radius);
  background: var(--wlc-primary);
  color: #062a27;
  font-weight: 800;
  text-decoration: none;
}

.wlc-button:hover { background: var(--wlc-primary-dark); color: #ffffff; }
.wlc-button--secondary {
  background: #ffffff;
  color: #0b6f66;
}
.wlc-button--secondary:hover {
  background: var(--wlc-accent-soft);
  color: var(--wlc-primary-dark);
}

.wlc-panel,
.wlc-card {
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: var(--wlc-panel);
  box-shadow: var(--wlc-shadow);
}

.wlc-panel { padding: 22px; }
.wlc-card { padding: 20px; box-shadow: none; }
.wlc-card h3 a { color: var(--wlc-ink); text-decoration: none; }
.wlc-card h3 a:hover { color: var(--wlc-primary); }

a.wlc-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

a.wlc-card:hover {
  border-color: rgba(16, 181, 165, 0.45);
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.08);
  color: inherit;
  transform: translateY(-1px);
}

a.wlc-card h3::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: -4px;
  background: url("/wp-content/uploads/wlc-brand/icons/ui/svg/icon-compare.svg") center / contain no-repeat;
}

a.wlc-card[href*="injections"] h3::before { background-image: url("/wp-content/uploads/wlc-brand/icons/ui/svg/icon-injection.svg"); }
a.wlc-card[href*="tablets"] h3::before,
a.wlc-card[href*="pills"] h3::before { background-image: url("/wp-content/uploads/wlc-brand/icons/ui/svg/icon-tablet.svg"); }
a.wlc-card[href*="clinics"] h3::before,
a.wlc-card[href*="providers"] h3::before { background-image: url("/wp-content/uploads/wlc-brand/icons/ui/svg/icon-clinic.svg"); }

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

.wlc-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.wlc-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.wlc-section-heading {
  max-width: 820px;
  margin-bottom: 26px;
}

.wlc-section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.wlc-section-heading--center .wlc-kicker {
  margin-right: auto;
  margin-left: auto;
}

.wlc-section-heading--center .wlc-lead {
  margin-right: auto;
  margin-left: auto;
}

.wlc-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.wlc-trust-item {
  position: relative;
  padding: 15px;
  padding-left: 48px;
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: #ffffff;
}

.wlc-trust-item::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 17px;
  width: 22px;
  height: 22px;
  background: url("/wp-content/uploads/wlc-brand/icons/ui/svg/icon-trusted.svg") center / contain no-repeat;
}

.wlc-trust-item:nth-child(2)::before { background-image: url("/wp-content/uploads/wlc-brand/icons/ui/svg/icon-compare.svg"); }
.wlc-trust-item:nth-child(3)::before { background-image: url("/wp-content/uploads/wlc-brand/icons/ui/svg/icon-support.svg"); }
.wlc-trust-item:nth-child(4)::before { background-image: url("/wp-content/uploads/wlc-brand/icons/ui/svg/icon-online.svg"); }

.wlc-trust-item strong {
  display: block;
  color: var(--wlc-ink);
  font-size: 14px;
}

.wlc-trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--wlc-muted);
  font-size: 13px;
}

.wlc-authority-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(13, 27, 42, 0.10);
  border-radius: var(--wlc-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(230, 247, 245, 0.72)),
    #ffffff;
  box-shadow: 0 18px 44px rgba(13, 27, 42, 0.08);
}

.wlc-authority-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wlc-authority-copy h2 {
  max-width: 560px;
  font-size: 30px;
}

.wlc-authority-copy p {
  max-width: 620px;
}

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

.wlc-source-map article {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-top: 4px solid var(--wlc-primary);
  border-radius: var(--wlc-radius);
  background: rgba(255, 255, 255, 0.94);
}

.wlc-source-card--wego {
  border-top-color: #0e9e90;
}

.wlc-source-card--jaro {
  border-top-color: #0a6fb2;
}

.wlc-source-card--tablets {
  border-top-color: #4c7a5b;
}

.wlc-source-card-logo {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(230, 247, 245, 0.5)),
    #ffffff;
}

.wlc-source-card-logo img {
  display: block;
  width: auto;
  max-width: 155px;
  max-height: 42px;
  object-fit: contain;
}

.wlc-source-card--tablets .wlc-source-card-logo {
  border-color: rgba(13, 27, 42, 0.18);
  background:
    linear-gradient(135deg, rgba(18, 45, 58, 0.98), rgba(33, 79, 72, 0.94)),
    #142d3a;
}

.wlc-source-map strong,
.wlc-source-map span,
.wlc-source-map a {
  display: block;
}

.wlc-source-map strong {
  color: var(--wlc-ink);
  font-size: 15px;
}

.wlc-source-map span {
  flex: 1 1 auto;
  margin-top: 8px;
  color: var(--wlc-muted);
  font-size: 13px;
  line-height: 1.45;
}

.wlc-source-map a {
  margin-top: 14px;
  color: #0b6f66;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.wlc-source-map .wlc-source-card-url {
  width: fit-content;
  margin-top: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(16, 181, 165, 0.28);
  border-radius: 999px;
  background: var(--wlc-accent-soft);
  color: #0b6f66;
  font-size: 12px;
}

.wlc-source-map .wlc-source-card-local {
  margin-top: 10px;
  color: var(--wlc-ink);
  font-size: 12px;
}

.wlc-source-map a:hover {
  color: var(--wlc-primary-dark);
  text-decoration: underline;
}

.wlc-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: #ffffff;
}

.wlc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.wlc-content article > .wlc-table {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: #ffffff;
}

.wlc-table th,
.wlc-table td {
  padding: 14px;
  border-bottom: 1px solid var(--wlc-border);
  text-align: left;
  vertical-align: top;
}

.wlc-table th {
  color: var(--wlc-ink);
  background: #f8fbfb;
  font-size: 13px;
}

.wlc-table td {
  color: var(--wlc-muted);
  font-size: 14px;
  line-height: 1.45;
}

.wlc-table td strong {
  color: var(--wlc-ink);
}

.wlc-table td span {
  color: #607085;
  font-size: 13px;
}

.wlc-table .wlc-button {
  white-space: nowrap;
}

.wlc-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}

.wlc-filterbar label {
  display: grid;
  gap: 5px;
  color: var(--wlc-ink);
  font-size: 13px;
  font-weight: 800;
}

.wlc-filterbar select,
.wlc-filterbar input[type="search"] {
  min-width: 180px;
  min-height: 40px;
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: #ffffff;
  color: var(--wlc-ink);
  padding: 0 10px;
}

.wlc-directory-group {
  margin-top: 32px;
}

.wlc-directory-group h2 {
  margin-bottom: 14px;
}

.wlc-provider-card {
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--wlc-primary);
}

.wlc-provider-card__top {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.wlc-provider-logo-frame--directory {
  width: 86px;
  height: 64px;
  padding: 10px;
}

.wlc-provider-price-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wlc-provider-price-card {
  border-top: 4px solid var(--wlc-primary);
}

.wlc-provider-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--wlc-accent-soft);
  color: #0b6f66;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.wlc-provider-badge--online-doctor {
  background: #eef4ff;
  color: #24508f;
}

.wlc-provider-badge--programme-led {
  background: #fff3ea;
  color: #8c4a18;
}

.wlc-provider-badge--clinic-led {
  background: #f2efff;
  color: #5940a8;
}

.wlc-provider-badge--tablet-pharmacy {
  background: #eef9ef;
  color: #256b35;
}

.wlc-provider-treatments {
  margin-bottom: 12px;
  color: #3e4e60;
  font-weight: 800;
}

.wlc-provider-summary {
  flex: 1 1 auto;
}

.wlc-provider-source {
  margin-top: 8px;
  color: #607085;
  font-size: 14px;
  font-weight: 700;
}

.wlc-entry-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 4px;
}

.wlc-entry-choice-grid a {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(16, 181, 165, 0.22);
  border-top: 4px solid var(--wlc-primary);
  border-radius: var(--wlc-radius);
  background: linear-gradient(135deg, #ffffff 0%, #effbf9 100%);
  color: inherit;
  text-decoration: none;
}

.wlc-entry-choice-grid a:hover {
  border-color: rgba(16, 181, 165, 0.48);
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.07);
  transform: translateY(-1px);
}

.wlc-entry-choice-grid strong {
  color: var(--wlc-ink);
  font-size: 16px;
}

.wlc-entry-choice-grid span {
  color: var(--wlc-muted);
  font-size: 13px;
  line-height: 1.45;
}

.wlc-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.wlc-fact-grid--compact {
  margin-top: 18px;
}

.wlc-fact-grid div {
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: var(--wlc-soft);
  padding: 14px;
}

.wlc-fact-grid strong,
.wlc-fact-grid span {
  display: block;
}

.wlc-fact-grid strong {
  color: var(--wlc-ink);
  font-size: 12px;
}

.wlc-fact-grid span {
  color: var(--wlc-muted);
  font-size: 13px;
  margin-top: 6px;
}

.wlc-directory-groups + .wlc-no-results {
  margin-top: 20px;
}

.wlc-show-more {
  margin-top: 22px;
}

.single-provider .wlc-content .wlc-notice:first-of-type {
  margin-bottom: 18px;
}

.single-provider .wlc-panel + .wlc-panel {
  margin-top: 22px;
}

.wlc-provider-profile article {
  max-width: 100%;
}

.wlc-provider-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
  padding: 28px;
  border: 1px solid rgba(13, 27, 42, 0.10);
  border-radius: var(--wlc-radius);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 196, 119, 0.20), transparent 28%),
    linear-gradient(135deg, #e8f9f6 0%, #fffaf3 100%);
  box-shadow: 0 16px 38px rgba(13, 27, 42, 0.08);
}

.wlc-provider-hero h1 {
  max-width: 760px;
}

.wlc-provider-hero .wlc-lead {
  margin-bottom: 16px;
}

.wlc-provider-hero-card {
  padding: 20px;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: var(--wlc-radius);
  background: rgba(255, 255, 255, 0.88);
}

.wlc-provider-hero-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--wlc-ink);
  font-size: 16px;
}

.wlc-provider-hero-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: var(--wlc-muted);
}

.wlc-provider-intro {
  max-width: 860px;
  margin-bottom: 22px;
}

.wlc-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 26px;
  padding: 28px;
  border: 1px solid rgba(13, 27, 42, 0.10);
  border-radius: var(--wlc-radius);
  background:
    radial-gradient(circle at 90% 6%, rgba(16, 181, 165, 0.14), transparent 30%),
    linear-gradient(135deg, #f8fbfb 0%, #fffaf3 100%);
  box-shadow: 0 16px 38px rgba(13, 27, 42, 0.07);
}

.wlc-detail-hero h1 {
  max-width: 780px;
}

.wlc-detail-card {
  padding: 20px;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: var(--wlc-radius);
  background: rgba(255, 255, 255, 0.9);
}

.wlc-detail-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--wlc-ink);
  font-size: 16px;
}

.wlc-detail-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: var(--wlc-muted);
}

.wlc-detail-body {
  max-width: none;
}

.wlc-detail-body .wlc-table {
  display: table;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  table-layout: fixed;
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: #ffffff;
}

.wlc-detail-body .wlc-table td,
.wlc-detail-body .wlc-table th {
  overflow-wrap: anywhere;
}

.wlc-mobile-cards {
  display: none;
  gap: 14px;
}

.wlc-mobile-cards .wlc-card {
  gap: 9px;
}

.wlc-mobile-cards .wlc-card p {
  margin: 0;
  color: var(--wlc-muted);
}

.wlc-mobile-cards .wlc-card p strong {
  color: var(--wlc-ink);
}

.wlc-no-results {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: #f8fbfd;
  color: var(--wlc-muted);
  font-weight: 700;
}

.wlc-notice {
  padding: 14px 16px;
  border: 1px solid #eadcae;
  border-radius: var(--wlc-radius);
  background: #fff9e8;
  color: var(--wlc-warn);
}

.wlc-review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
}

.wlc-review-meta__item {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.wlc-review-meta strong {
  color: var(--wlc-ink);
}

.wlc-faq-item {
  border-top: 1px solid var(--wlc-border);
  padding: 14px 0;
}

.wlc-faq-item summary {
  cursor: pointer;
  color: var(--wlc-ink);
  font-weight: 800;
}

.wlc-faq-item p {
  margin-top: 10px;
}

.wlc-source-list {
  display: grid;
  gap: 14px;
}

.wlc-source-item {
  padding: 16px;
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: #f8fbfb;
}

.wlc-provider-routes-panel > p,
.wlc-provider-prices-panel > p,
.wlc-provider-next-panel > p,
.wlc-source-notes-panel > p {
  max-width: 820px;
  color: var(--wlc-muted);
}

.wlc-provider-route-card {
  gap: 14px;
}

.wlc-provider-route-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.wlc-provider-route-card dl > div {
  padding-top: 10px;
  border-top: 1px solid rgba(13, 27, 42, 0.08);
}

.wlc-provider-route-card dt,
.wlc-source-meta strong {
  display: block;
  color: var(--wlc-ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.wlc-provider-route-card dd {
  margin: 3px 0 0;
  color: var(--wlc-muted);
}

.wlc-provider-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.wlc-provider-next-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(16, 181, 165, 0.26);
  border-top: 4px solid var(--wlc-primary);
  border-radius: var(--wlc-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(230, 247, 245, 0.58)),
    #ffffff;
  color: inherit;
  text-decoration: none;
}

.wlc-provider-next-card:hover {
  border-color: rgba(16, 181, 165, 0.46);
  box-shadow: 0 14px 30px rgba(13, 27, 42, 0.08);
  transform: translateY(-1px);
}

.wlc-provider-next-card span {
  color: #0b6f66;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.wlc-provider-next-card strong {
  color: var(--wlc-ink);
  font-size: 18px;
}

.wlc-provider-next-card small {
  color: var(--wlc-muted);
  font-size: 14px;
  line-height: 1.45;
}

.wlc-source-notes-panel {
  background:
    radial-gradient(circle at 92% 10%, rgba(16, 181, 165, 0.08), transparent 30%),
    #ffffff;
}

.wlc-source-item {
  display: grid;
  gap: 10px;
}

.wlc-source-item h3,
.wlc-source-item p {
  margin: 0;
}

.wlc-source-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wlc-source-meta span {
  display: grid;
  gap: 3px;
  min-width: 150px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 181, 165, 0.18);
  border-radius: 8px;
  background: rgba(230, 247, 245, 0.52);
  color: var(--wlc-muted);
}

.wlc-source-label {
  color: var(--wlc-muted);
}

.wlc-related-panel {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 196, 119, 0.14), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f3fbfa 100%);
}

.wlc-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.wlc-related-card {
  display: grid;
  gap: 8px;
  min-height: 122px;
  padding: 16px;
  border: 1px solid rgba(13, 27, 42, 0.10);
  border-left: 4px solid var(--wlc-primary);
  border-radius: var(--wlc-radius);
  background: rgba(255, 255, 255, 0.92);
  color: inherit;
  text-decoration: none;
}

.wlc-related-card:hover {
  border-color: rgba(16, 181, 165, 0.42);
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.08);
  transform: translateY(-1px);
}

.wlc-related-card strong {
  color: var(--wlc-ink);
  font-size: 16px;
}

.wlc-related-card span {
  color: var(--wlc-muted);
  font-size: 14px;
  line-height: 1.45;
}

.wlc-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.wlc-content {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
}

.wlc-content--wide {
  width: min(1160px, calc(100% - 32px));
}

.wlc-content--wide article > p,
.wlc-content--wide article > .wlc-notice {
  max-width: 860px;
}

.wlc-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.wlc-route-spotlight {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 22px;
}

/* Support split "intro + card grid" blocks inside route spotlight sections. */
.wlc-route-spotlight > div:first-child {
  grid-column: span 1;
}

.wlc-route-spotlight > div:last-child {
  grid-column: span 2;
}

.wlc-route-spotlight > div:last-child .wlc-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wlc-route-spotlight > div:last-child.wlc-grid--four,
.wlc-route-spotlight > .wlc-grid--four:last-child {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wlc-route-spotlight article {
  padding: 18px;
  border: 1px solid rgba(13, 27, 42, 0.10);
  border-left: 4px solid var(--wlc-primary);
  border-radius: var(--wlc-radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.045);
}

.wlc-route-spotlight span,
.wlc-route-spotlight strong {
  display: block;
}

.wlc-route-spotlight span {
  margin-bottom: 7px;
  color: #0b6f66;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.wlc-route-spotlight strong {
  color: var(--wlc-ink);
  font-size: 15px;
  line-height: 1.35;
}

.wlc-feature-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wlc-feature-card,
.wlc-check-grid article {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.055);
}

.wlc-feature-card {
  display: flex;
  flex-direction: column;
  border-top: 4px solid rgba(16, 181, 165, 0.72);
}

.wlc-feature-card p {
  flex: 1 1 auto;
}

.wlc-feature-card a {
  color: #0b6f66;
  font-weight: 800;
  text-decoration: none;
}

.wlc-feature-card a:hover {
  color: var(--wlc-primary-dark);
  text-decoration: underline;
}

.wlc-specialist-grid {
  align-items: stretch;
}

.wlc-specialist-card {
  display: flex;
  flex-direction: column;
}

.wlc-specialist-logo {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 181, 165, 0.24);
  border-radius: var(--wlc-radius);
  background:
    linear-gradient(135deg, rgba(16, 181, 165, 0.12), rgba(255, 255, 255, 0.96)),
    #ffffff;
  color: var(--wlc-ink);
  text-decoration: none;
}

.wlc-specialist-logo img {
  display: block;
  width: auto;
  max-width: 170px;
  max-height: 44px;
  object-fit: contain;
}

.wlc-specialist-card--tablets .wlc-specialist-logo {
  border-color: rgba(13, 27, 42, 0.18);
  background:
    linear-gradient(135deg, rgba(18, 45, 58, 0.98), rgba(33, 79, 72, 0.94)),
    #142d3a;
}

.wlc-specialist-domain {
  display: inline-flex;
  width: fit-content;
  margin: 2px 0 18px;
  padding: 6px 10px;
  border: 1px solid rgba(16, 181, 165, 0.28);
  border-radius: 999px;
  background: var(--wlc-accent-soft);
  color: #0b6f66;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.wlc-specialist-domain:hover,
.wlc-specialist-logo:hover {
  border-color: rgba(16, 181, 165, 0.52);
  color: var(--wlc-primary-dark);
  text-decoration: none;
}

.wlc-specialist-card .wlc-button {
  margin-top: auto;
}

.wlc-editorial-split--large {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
}

.wlc-editorial-split--reverse {
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
  gap: 34px;
}

.wlc-lifestyle-image--editorial {
  aspect-ratio: 4 / 3;
  margin: 0;
}

.wlc-editorial-split--large .wlc-lifestyle-image--editorial img {
  object-position: 100% center;
}

.wlc-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 22px;
}

.wlc-mini-stats div {
  padding: 14px;
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: #f8fbfb;
}

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

.wlc-mini-stats strong {
  color: var(--wlc-ink);
  font-size: 24px;
  line-height: 1.1;
}

.wlc-mini-stats span {
  margin-top: 4px;
  color: var(--wlc-muted);
  font-size: 13px;
}

.wlc-check-list {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--wlc-muted);
}

.wlc-check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.wlc-check-grid article {
  border-top: 4px solid var(--wlc-primary);
}

.wlc-content h1 { font-size: 46px; }
.wlc-content ul { color: var(--wlc-muted); }

.wlc-treatment-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
  margin: 8px 0 34px;
  padding: 30px;
  border: 1px solid rgba(16, 181, 165, 0.20);
  border-radius: var(--wlc-radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(16, 181, 165, 0.15), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f0fbf9 100%);
}

.wlc-treatment-hero h1 {
  margin-bottom: 14px;
}

.wlc-treatment-hero .wlc-lead {
  max-width: 680px;
}

.wlc-treatment-hero__actions,
.wlc-route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.wlc-treatment-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(13, 27, 42, 0.10);
  border-radius: var(--wlc-radius);
  background: var(--wlc-accent-soft);
  box-shadow: 0 18px 42px rgba(13, 27, 42, 0.12);
}

.wlc-treatment-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.08), rgba(16, 181, 165, 0.14)),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(13,27,42,0.08));
  pointer-events: none;
}

.wlc-treatment-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 46%;
  filter: saturate(0.98) contrast(1.02);
}

.wlc-route-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
  margin: 28px 0 34px;
}

.wlc-route-intro__panel,
.wlc-treatment-table-intro,
.wlc-next-route-panel {
  padding: 24px;
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(13, 27, 42, 0.06);
}

.wlc-route-intro__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wlc-route-intro__panel h2 {
  font-size: 32px;
}

.wlc-route-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wlc-route-list li {
  padding: 16px;
  border: 1px solid rgba(13, 27, 42, 0.10);
  border-top: 3px solid rgba(16, 181, 165, 0.72);
  border-radius: var(--wlc-radius);
  background: #fbfdfd;
  color: var(--wlc-muted);
}

.wlc-route-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--wlc-ink);
}

.wlc-treatment-matrix {
  display: grid;
  gap: 12px;
  margin: 22px 0 34px;
}

.wlc-treatment-matrix article {
  display: grid;
  grid-template-columns: minmax(170px, 0.55fr) minmax(0, 1fr) minmax(180px, 0.55fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.05);
}

.wlc-treatment-matrix h3 {
  margin: 0 0 6px;
}

.wlc-treatment-matrix p {
  margin: 0;
}

.wlc-treatment-matrix__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wlc-treatment-matrix__meta span,
.wlc-table-pill,
.wlc-table-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.wlc-treatment-matrix__meta span,
.wlc-table-pill {
  background: var(--wlc-accent-soft);
  color: #0b6f66;
}

.wlc-table-tag {
  background: #edf2f7;
  color: #304256;
}

.wlc-treatment-table-intro {
  margin: 34px 0 0;
}

.wlc-treatment-table-intro h2 {
  margin-top: 0;
}

.wlc-comparison-module {
  margin: 18px 0 38px;
}

.wlc-comparison-module__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 14px;
  padding: 22px;
  border: 1px solid rgba(16, 181, 165, 0.20);
  border-radius: var(--wlc-radius);
  background: linear-gradient(135deg, #ffffff 0%, #f0fbf9 100%);
}

.wlc-comparison-module__summary h3 {
  margin: 6px 0 8px;
  font-size: 26px;
}

.wlc-comparison-module__summary p {
  max-width: 720px;
}

.wlc-comparison-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.wlc-comparison-stats div {
  padding: 14px;
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: rgba(255, 255, 255, 0.86);
}

.wlc-comparison-stats dt {
  color: var(--wlc-ink);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.wlc-comparison-stats dd {
  margin: 6px 0 0;
  color: var(--wlc-muted);
  font-size: 12px;
  font-weight: 700;
}

.wlc-comparison-module .wlc-filterbar {
  margin: 14px 0 16px;
  padding: 16px;
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.045);
}

.wlc-comparison-module .wlc-filterbar label {
  flex: 1 1 210px;
}

.wlc-comparison-module .wlc-filterbar select {
  width: 100%;
}

.wlc-comparison-view-toggle {
  display: inline-flex;
  gap: 6px;
  margin: 2px 0 16px;
  padding: 5px;
  border: 1px solid var(--wlc-border);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.045);
}

.wlc-comparison-view-toggle button {
  min-height: 38px;
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--wlc-muted);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.wlc-comparison-view-toggle button.is-active {
  background: var(--wlc-primary);
  color: var(--wlc-ink);
}

.wlc-comparison-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wlc-comparison-card[hidden],
.wlc-comparison-module .wlc-table tr[hidden] {
  display: none !important;
}

.wlc-comparison-module.is-table-view .wlc-comparison-cards {
  display: none;
}

.wlc-comparison-module.is-card-view .wlc-comparison-table-panel {
  display: none;
}

.wlc-comparison-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--wlc-border);
  border-top: 4px solid var(--wlc-primary);
  border-radius: var(--wlc-radius);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(13, 27, 42, 0.065);
}

.wlc-comparison-card__top {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.wlc-provider-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 72px;
  padding: 12px;
  border: 1px solid rgba(16, 181, 165, 0.22);
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #effbf9 100%);
}

.wlc-provider-logo-frame img {
  display: block;
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
}

.wlc-provider-logo-frame--small {
  width: 54px;
  height: 40px;
  padding: 7px;
  border-radius: 8px;
}

.wlc-provider-logo-frame--small img {
  max-height: 26px;
}

.wlc-provider-logo-fallback {
  color: #0b6f66;
  font-size: 20px;
  font-weight: 950;
}

.wlc-provider-logo-frame--small .wlc-provider-logo-fallback {
  font-size: 14px;
}

.wlc-comparison-card h3 {
  margin: 8px 0 6px;
  font-size: 22px;
  line-height: 1.12;
}

.wlc-comparison-card p {
  margin: 0;
  color: var(--wlc-muted);
  font-size: 14px;
  line-height: 1.55;
}

.wlc-comparison-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.wlc-comparison-card__facts div {
  min-width: 0;
  padding: 12px;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  background: #fbfdfd;
}

.wlc-comparison-card__facts dt {
  color: #607086;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wlc-comparison-card__facts dd {
  margin: 4px 0 0;
  color: var(--wlc-ink);
  font-weight: 850;
  line-height: 1.35;
}

.wlc-comparison-card__facts span {
  display: block;
  margin-top: 4px;
  color: var(--wlc-muted);
  font-size: 12px;
  line-height: 1.4;
}

.wlc-comparison-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.wlc-comparison-card__text-link {
  color: #0b6f66;
  font-weight: 900;
  text-decoration: none;
}

.wlc-comparison-card__text-link:hover {
  text-decoration: underline;
}

.wlc-comparison-module .wlc-table-wrap {
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(13, 27, 42, 0.06);
}

.wlc-comparison-module .wlc-table th {
  background: #edf8f7;
  color: #17394a;
  font-size: 12px;
  text-transform: uppercase;
}

.wlc-comparison-module .wlc-table {
  min-width: 1040px;
}

.wlc-comparison-module .wlc-table td {
  color: #526176;
  font-size: 13px;
}

.wlc-comparison-module .wlc-table-provider {
  max-width: 210px;
}

.wlc-table-provider__brand {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.wlc-comparison-module .wlc-table-provider strong,
.wlc-comparison-module .wlc-table-provider span,
.wlc-table-price strong,
.wlc-table-price span {
  display: block;
}

.wlc-comparison-module .wlc-table-provider span,
.wlc-table-price span {
  margin-top: 4px;
  color: #66758a;
  font-size: 12px;
  line-height: 1.4;
}

.wlc-table-price strong {
  font-size: 16px;
}

.wlc-source-date {
  display: inline-flex;
  width: max-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.wlc-comparison-module .wlc-table tbody tr:nth-child(even) {
  background: #fbfdfd;
}

.wlc-comparison-module .wlc-table tbody tr:hover {
  background: #f0fbf9;
}

.wlc-mobile-comparison-card {
  border-top: 4px solid var(--wlc-primary);
}

.wlc-mobile-comparison-card dl {
  display: grid;
  gap: 8px;
  margin: 6px 0 14px;
}

.wlc-mobile-comparison-card dl div {
  padding-top: 8px;
  border-top: 1px solid var(--wlc-border);
}

.wlc-mobile-comparison-card dt {
  color: var(--wlc-ink);
  font-size: 12px;
  font-weight: 900;
}

.wlc-mobile-comparison-card dd {
  margin: 2px 0 0;
  color: var(--wlc-muted);
  font-size: 14px;
}

.wlc-snapshot-panel {
  margin: 0 0 2rem;
  background: linear-gradient(180deg, rgba(234, 247, 244, 0.9) 0%, #fff 100%);
  border: 1px solid rgba(90, 196, 184, 0.22);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.wlc-snapshot-panel__header {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.wlc-comparison-stats--snapshot {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wlc-snapshot-grid,
.wlc-snapshot-pair-grid {
  display: grid;
  gap: 1rem;
}

.wlc-snapshot-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.wlc-snapshot-pair-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wlc-snapshot-card,
.wlc-snapshot-pair-card {
  background: #ffffff;
  border: 1px solid var(--wlc-border);
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
  padding: 1.25rem;
}

.wlc-snapshot-card__top {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  margin-bottom: 1rem;
}

.wlc-snapshot-card__top h3,
.wlc-snapshot-pair-card h3 {
  margin: 0.3rem 0 0.35rem;
}

.wlc-snapshot-pair-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wlc-snapshot-pair-card__header {
  display: grid;
  gap: 0.45rem;
}

.wlc-snapshot-card__top p,
.wlc-snapshot-pair-card p {
  margin: 0;
  color: var(--wlc-muted);
}

.wlc-snapshot-card__facts,
.wlc-snapshot-pair-card__facts {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.wlc-snapshot-card__facts {
  grid-template-columns: 1fr;
}

.wlc-snapshot-pair-card__facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.wlc-snapshot-card__facts div,
.wlc-snapshot-pair-card__facts div {
  padding-top: 0.75rem;
  border-top: 1px solid var(--wlc-border);
}

.wlc-snapshot-pair-card__facts div {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(239, 250, 248, 0.62) 100%);
}

.wlc-snapshot-card__facts dt,
.wlc-snapshot-pair-card__facts dt {
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.22rem;
  text-transform: uppercase;
}

.wlc-snapshot-card__facts dd,
.wlc-snapshot-pair-card__facts dd {
  color: var(--wlc-ink);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.wlc-snapshot-pair-card__facts dd {
  font-size: 1.4rem;
  line-height: 1.1;
}

.wlc-snapshot-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.wlc-snapshot-pair-card .wlc-snapshot-card__actions {
  margin-top: auto;
}

.wlc-snapshot-panel__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--wlc-border);
}

.wlc-snapshot-panel__footer p,
.wlc-snapshot-pair-card__note {
  margin: 0;
  color: var(--wlc-muted);
}

.wlc-snapshot-card--medication .wlc-snapshot-card__top {
  grid-template-columns: 1fr;
}

.wlc-snapshot-card--medication .wlc-table-pill {
  margin-bottom: 0.35rem;
}

.wlc-next-route-panel {
  margin: 34px 0 10px;
  background: linear-gradient(135deg, #ffffff 0%, #fffaf3 100%);
}

.wlc-site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--wlc-border);
  background: var(--wlc-ink);
  color: #ffffff;
}

.wlc-footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
}

.wlc-footer-brand {
  display: inline-flex;
  margin-bottom: 16px;
}

.wlc-footer-brand img {
  display: block;
  width: min(300px, 80vw);
  height: auto;
}

.wlc-footer-inner p,
.wlc-footer-inner a { color: #dbe7f1; }

.wlc-content--article {
  width: min(860px, calc(100% - 32px));
}

.wlc-editorial-hero,
.wlc-archive-hero {
  padding: clamp(38px, 6vw, 78px) 0 28px;
}

.wlc-editorial-hero h1,
.wlc-archive-hero h1 {
  max-width: 820px;
  margin: 12px 0 16px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
}

.wlc-editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.wlc-editorial-meta span,
.wlc-editorial-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(16, 181, 165, 0.26);
  border-radius: 999px;
  background: rgba(230, 247, 245, 0.82);
  color: #24766f;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  padding: 7px 10px;
}

.wlc-editorial-disclaimer {
  display: grid;
  gap: 4px;
  margin: 0 0 28px;
  border: 1px solid rgba(124, 90, 18, 0.22);
  border-radius: var(--wlc-radius);
  background: #fff8e7;
  color: var(--wlc-warn);
  padding: 16px 18px;
}

.wlc-editorial-body {
  border-top: 1px solid var(--wlc-border);
  padding-top: 22px;
}

.wlc-editorial-body h2 {
  margin-top: 34px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.16;
}

.wlc-editorial-body h3 {
  margin-top: 26px;
}

.wlc-editorial-body ul,
.wlc-editorial-body ol {
  padding-left: 1.25rem;
}

.wlc-editorial-body li + li {
  margin-top: 8px;
}

.wlc-editorial-body blockquote {
  margin: 26px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--wlc-primary);
  border-radius: 0 14px 14px 0;
  background: rgba(230, 247, 245, 0.58);
  color: var(--wlc-ink);
}

.wlc-editorial-section {
  margin: 42px 0;
  border: 1px solid rgba(16, 181, 165, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(230, 247, 245, 0.84), rgba(255, 255, 255, 0.92)),
    #ffffff;
  padding: clamp(22px, 4vw, 34px);
}

.wlc-editorial-section__heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.wlc-editorial-section__footer {
  margin-top: 22px;
}

.wlc-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wlc-editorial-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.06);
  padding: 20px;
}

.wlc-editorial-card__media {
  margin: -20px -20px 2px;
  overflow: hidden;
  border-bottom: 1px solid var(--wlc-border);
  border-radius: 14px 14px 0 0;
}

.wlc-editorial-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.wlc-editorial-card h2,
.wlc-editorial-card h3 {
  margin: 2px 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.wlc-editorial-card a {
  color: var(--wlc-ink);
  text-decoration: none;
}

.wlc-editorial-card a:hover {
  color: var(--wlc-primary-dark);
}

.wlc-editorial-card p {
  margin: 0;
  color: var(--wlc-muted);
}

.wlc-editorial-card small {
  margin-top: auto;
  color: var(--wlc-muted);
  font-weight: 700;
}

.wlc-editorial-featured {
  display: grid;
  gap: 22px;
  border: 1px solid rgba(16, 181, 165, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(230, 247, 245, 0.78), rgba(255, 255, 255, 0.98)),
    #ffffff;
  box-shadow: 0 18px 38px rgba(13, 27, 42, 0.08);
  padding: clamp(24px, 4vw, 38px);
}

.wlc-editorial-featured__media {
  overflow: hidden;
  border: 1px solid rgba(16, 181, 165, 0.18);
  border-radius: 16px;
}

.wlc-editorial-featured__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.wlc-editorial-featured__content {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.wlc-editorial-featured__content h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.wlc-editorial-featured__content p {
  margin: 0;
  color: var(--wlc-muted);
}

.wlc-editorial-story-image-wrap {
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid rgba(16, 181, 165, 0.18);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.06);
}

.wlc-editorial-story-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.wlc-editorial-topics {
  margin: 42px 0;
}

.wlc-editorial-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wlc-editorial-topic-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--wlc-border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.06);
  padding: 20px;
  color: var(--wlc-ink);
  text-decoration: none;
}

.wlc-editorial-topic-card:hover {
  border-color: rgba(16, 181, 165, 0.42);
  transform: translateY(-2px);
}

.wlc-editorial-topic-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(16, 181, 165, 0.26);
  border-radius: 999px;
  background: rgba(230, 247, 245, 0.82);
  color: #24766f;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  padding: 7px 10px;
}

.wlc-editorial-topic-card strong {
  font-size: 17px;
}

.wlc-editorial-topic-card p {
  margin: 0;
  color: var(--wlc-muted);
}

.wlc-faq-section {
  margin: 38px 0 0;
  padding: 24px;
  border: 1px solid rgba(16, 181, 165, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(250, 255, 255, 0.96), rgba(241, 250, 249, 0.9));
}

.wlc-faq-section > h2 {
  margin-top: 0;
}

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

.wlc-faq-item {
  border: 1px solid var(--wlc-border);
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.wlc-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 800;
  color: var(--wlc-ink);
}

.wlc-faq-item summary::-webkit-details-marker {
  display: none;
}

.wlc-faq-item[open] summary {
  border-bottom: 1px solid var(--wlc-border);
  background: rgba(230, 247, 245, 0.45);
}

.wlc-faq-item__answer {
  padding: 16px 20px 20px;
  color: var(--wlc-muted);
}

.wlc-editorial-highlight {
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid rgba(16, 181, 165, 0.18);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(230, 247, 245, 0.72), rgba(255, 255, 255, 0.95));
}

.wlc-editorial-highlight strong {
  display: block;
  margin-bottom: 6px;
  color: #0b6f66;
}

.wlc-editorial-related {
  margin-top: 42px;
  padding: 24px;
  border: 1px solid rgba(16, 181, 165, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 196, 119, 0.12), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f3fbfa 100%);
}

.wlc-editorial-related__intro {
  max-width: 760px;
}

.wlc-editorial-related__intro h2 {
  margin: 8px 0 10px;
}

.wlc-editorial-related__intro p {
  margin: 0;
  color: var(--wlc-muted);
}

.wlc-editorial-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.wlc-editorial-related__card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.10);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(13, 27, 42, 0.06);
}

.wlc-editorial-related__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(13, 27, 42, 0.10);
}

.wlc-editorial-related__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8f7f4;
}

.wlc-editorial-related__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wlc-editorial-related__body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.wlc-editorial-related__category {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e7f8f5;
  color: #0b6f66;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wlc-editorial-related__body strong {
  color: var(--wlc-ink);
  font-size: 22px;
  line-height: 1.18;
}

.wlc-editorial-related__body span:not(.wlc-editorial-related__category) {
  color: var(--wlc-muted);
  font-size: 14px;
  line-height: 1.55;
}

.wlc-editorial-related__body small {
  color: #5b6a7b;
  font-size: 12px;
  font-weight: 700;
}

.wlc-editorial-footer {
  margin-top: 46px;
  border-top: 1px solid var(--wlc-border);
  padding-top: 26px;
}

.wlc-specialist-bridge {
  display: grid;
  gap: 18px;
}

.wlc-specialist-bridge__intro {
  max-width: 760px;
}

.wlc-specialist-bridge__intro h2 {
  margin: 8px 0 10px;
}

.wlc-specialist-bridge__intro p {
  margin: 0;
  color: var(--wlc-muted);
}

.wlc-related-card--specialist {
  min-height: 168px;
  border-left-width: 5px;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 251, 250, 0.9));
}

.wlc-related-card--specialist small {
  margin-top: auto;
  color: #0b6f66;
  font-size: 12px;
  font-weight: 800;
}

.wlc-specialist-bridge__note {
  margin: 0;
  color: var(--wlc-muted);
  font-size: 14px;
  line-height: 1.65;
}

.wlc-specialist-bridge__note a {
  color: #0b6f66;
  font-weight: 800;
  text-underline-offset: 3px;
}

.wlc-home-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.wlc-home-decision-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--wlc-border);
  border-radius: var(--wlc-radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.06);
}

.wlc-home-decision-grid--authority .wlc-home-decision-card {
  border-top: 4px solid var(--wlc-primary);
}

.wlc-home-decision-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--wlc-accent-soft);
  color: #0b6f66;
  font-size: 12px;
  font-weight: 800;
}

.wlc-home-decision-card p {
  flex: 1 1 auto;
}

@media (max-width: 900px) {
  .wlc-hero-grid,
  .wlc-editorial-split,
  .wlc-treatment-hero,
  .wlc-page-hero,
  .wlc-route-intro,
  .wlc-comparison-module__summary,
  .wlc-editorial-split--large,
  .wlc-editorial-split--reverse,
  .wlc-home-decision-grid,
  .wlc-feature-grid,
  .wlc-feature-grid--three,
  .wlc-check-grid,
  .wlc-grid,
  .wlc-grid--four,
  .wlc-grid--two,
	  .wlc-trust-strip,
	  .wlc-fact-grid,
	  .wlc-authority-band,
	  .wlc-source-map,
	  .wlc-route-spotlight,
	  .wlc-provider-hero,
	  .wlc-detail-hero {
	    grid-template-columns: 1fr;
	  }

  .wlc-route-spotlight > div:first-child,
  .wlc-route-spotlight > div:last-child {
    grid-column: auto;
  }

  .wlc-route-spotlight > div:last-child .wlc-grid--four {
    grid-template-columns: 1fr;
  }

  .wlc-route-spotlight > div:last-child.wlc-grid--four,
  .wlc-route-spotlight > .wlc-grid--four:last-child {
    grid-template-columns: 1fr;
  }

  .wlc-header-inner {
    min-height: 66px;
    justify-content: space-between;
    gap: 14px;
  }

  .wlc-brand img {
    width: clamp(210px, 58vw, 260px);
  }

  .wlc-nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .wlc-primary-navigation {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    z-index: 40;
    display: none;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    padding: 10px;
    border: 1px solid var(--wlc-border);
    border-radius: var(--wlc-radius);
    background: #ffffff;
    box-shadow: var(--wlc-shadow);
  }

  .wlc-site-header.is-open .wlc-primary-navigation {
    display: block;
  }

  .wlc-nav {
    display: grid;
    gap: 4px;
    font-size: 14px;
  }

  .wlc-nav a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 0;
    padding: 10px 12px;
    border-radius: 6px;
  }

  .wlc-nav .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  .wlc-nav .sub-menu::before {
    display: none;
  }

  .wlc-nav .sub-menu a {
    padding: 8px 12px;
    color: var(--wlc-muted);
    white-space: normal;
  }

  .wlc-section { padding: 44px 0; }

  .wlc-hero {
    padding: 28px 0 38px;
  }

  .wlc-hero-copy {
    padding-top: 0;
  }

  .wlc-lifestyle-image--hero,
  .wlc-editorial-split .wlc-lifestyle-image {
    aspect-ratio: 16 / 10;
  }

  .wlc-lifestyle-image--page {
    float: none;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin: 18px 0 24px;
  }

  .wlc-page-hero {
    gap: 20px;
    padding: 20px;
  }

  .wlc-page-hero__media {
    order: -1;
  }

  .wlc-lifestyle-image--page-hero {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  .wlc-treatment-hero,
  .wlc-route-intro__panel,
  .wlc-treatment-table-intro,
  .wlc-next-route-panel {
    padding: 20px;
  }

  .wlc-treatment-matrix article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wlc-comparison-module__summary h3 {
    font-size: 23px;
  }

  .wlc-comparison-stats {
    grid-template-columns: 1fr;
  }

  .wlc-comparison-stats--snapshot,
  .wlc-snapshot-pair-card__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wlc-comparison-cards {
    grid-template-columns: 1fr;
  }

  .wlc-provider-price-cards {
    grid-template-columns: 1fr;
  }

  .wlc-provider-next-grid,
  .wlc-related-grid {
    grid-template-columns: 1fr;
  }

  .wlc-editorial-related {
    padding: 20px;
  }

  .wlc-editorial-related__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wlc-editorial-related__body strong {
    font-size: 20px;
  }

  .wlc-snapshot-pair-grid {
    grid-template-columns: 1fr;
  }

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

  .wlc-editorial-featured__image,
  .wlc-editorial-story-image {
    aspect-ratio: 16 / 10;
  }

  .wlc-provider-card__top {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .wlc-provider-logo-frame--directory {
    width: 74px;
    height: 58px;
  }

  .wlc-comparison-card__top,
  .wlc-comparison-card__facts {
    grid-template-columns: 1fr;
  }

  .wlc-provider-logo-frame {
    width: 100%;
    max-width: 180px;
  }

  .wlc-snapshot-card__top {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .wlc-comparison-module.is-card-view .wlc-table-wrap { display: none; }
  .wlc-comparison-module.is-table-view .wlc-table-wrap { display: block; overflow-x: auto; }
  .wlc-mobile-cards { display: grid; }

  h1,
  .wlc-content h1 {
    width: min(100%, calc(100vw - 32px));
    max-width: 100%;
    font-size: 30px;
    overflow-wrap: break-word;
  }

  h2 { font-size: 28px; }

  .wlc-lead {
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    font-size: 17px;
    overflow-wrap: break-word;
  }

  .wlc-visual-note {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

	  .wlc-provider-strip {
	    margin-top: 22px;
	    padding-top: 16px;
	  }

	  .wlc-provider-strip div {
	    grid-template-columns: repeat(3, minmax(0, 1fr));
	  }

	  .wlc-entry-choice-grid {
	    grid-template-columns: 1fr;
	  }

	  .wlc-hero-proof {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

	  .wlc-authority-band {
	    padding: 20px;
	  }

	  .wlc-source-map article {
	    min-height: 0;
	  }

  .wlc-home-decision-card {
    min-height: 0;
    padding: 20px;
  }

  .wlc-mini-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .wlc-header-inner,
  .wlc-container,
  .wlc-footer-inner {
    width: min(358px, calc(100vw - 32px));
    max-width: min(358px, calc(100vw - 32px));
    margin-left: 16px;
    margin-right: 16px;
  }

  h1,
  .wlc-content h1,
  .wlc-lead {
    width: 100%;
    max-width: 100%;
  }

  .wlc-section { padding: 36px 0; }

  .wlc-hero {
    padding: 22px 0 32px;
  }

  .wlc-start-chooser {
    margin-top: 18px;
    padding: 13px;
  }

  .wlc-start-chooser div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wlc-start-chooser a {
    min-height: 34px;
    padding: 7px 10px;
  }

	  .wlc-provider-strip div {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

	  .wlc-provider-strip div .wlc-provider-tile:nth-child(n+7) {
	    display: none;
	  }

  .wlc-provider-tile {
    min-height: 44px;
    padding: 7px 9px;
  }

  .wlc-provider-tile img {
    max-width: 88px;
    max-height: 24px;
  }

  .wlc-source-map,
  .wlc-home-decision-grid,
  .wlc-feature-grid,
  .wlc-check-grid,
  .wlc-editorial-grid,
  .wlc-editorial-topic-grid {
    gap: 12px;
  }

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

  .wlc-editorial-card {
    min-height: auto;
  }

	  .wlc-hero-proof {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	    gap: 8px;
	  }

	  .wlc-hero-proof div {
	    padding: 11px;
	  }

	  .wlc-hero-proof strong {
	    font-size: 19px;
	  }

	  .wlc-hero-proof span {
	    font-size: 11px;
	  }

	  .wlc-authority-copy h2 {
	    font-size: 25px;
	  }
}

@media (max-width: 640px) {
  .wlc-snapshot-panel__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .wlc-comparison-stats--snapshot,
  .wlc-snapshot-pair-card__facts {
    grid-template-columns: 1fr;
  }

  .wlc-snapshot-pair-card__facts dd {
    font-size: 1.15rem;
  }
}

@media (max-width: 720px) {
  .wlc-table-wrap:not(.wlc-comparison-table-panel) {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table {
    display: block;
    width: 100%;
    min-width: 0;
    border-collapse: separate;
  }

  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table thead {
    display: none;
  }

  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table tbody,
  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table tr,
  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table th,
  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table td {
    display: block;
    width: 100%;
  }

  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table tr {
    overflow: hidden;
    margin: 0 0 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
  }

  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table th,
  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table td {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 12px 14px;
    font-size: 0.96rem;
  }

  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table tr > th:first-child,
  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table tr > td:first-child {
    background: #eefbf8;
    color: var(--wlc-ink);
    font-weight: 800;
  }

  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table td::before,
  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table th[data-label]::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 5px;
    color: var(--wlc-primary-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table tr > th:first-child::before,
  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table tr > td:first-child::before {
    color: #476171;
  }

  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table td:last-child,
  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table th:last-child {
    border-bottom: 0;
  }

  .wlc-table-wrap:not(.wlc-comparison-table-panel) .wlc-table .wlc-button {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

.wlc-provider-hero-logo {
  align-items: center;
  background: #f7fbfa;
  border: 1px solid rgba(43, 184, 169, 0.28);
  border-radius: 14px;
  display: grid;
  gap: 8px;
  justify-items: center;
  margin: 0 0 18px;
  padding: 16px;
  text-align: center;
}

.wlc-provider-hero-logo img {
  display: block;
  max-height: 48px;
  max-width: 180px;
  object-fit: contain;
}

.wlc-provider-hero-logo small {
  color: #667085;
  font-size: 0.78rem;
  line-height: 1.35;
}

.wlc-provider-editorial-note {
  margin: 28px 0;
}

.wlc-provider-editorial-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.wlc-provider-editorial-grid article {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  padding: 18px;
}

.wlc-provider-editorial-grid h2,
.wlc-provider-editorial-grid h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0 0 10px;
}

.wlc-provider-editorial-grid p {
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 860px) {
  .wlc-provider-editorial-grid {
    grid-template-columns: 1fr;
  }
}
