:root {
  --bg: #eef5fb;
  --panel: #ffffff;
  --panel-soft: #f4f9fe;
  --ink: #0c2b3f;
  --muted: #5b7482;
  --line: #d6e6f1;
  --green: #12557f;
  --mint: #bfe0f2;
  --mint-strong: #7fc4e6;
  --sage: #d9ecf7;
  --logo-blue: #2d8ec1;
  --logo-blue-dark: #176f9d;
  --logo-blue-soft: #e7f5fb;
  --warm: #fff7e8;
  --shadow: 0 24px 70px rgba(15, 58, 86, 0.13);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#top {
  scroll-margin-top: 130px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(191, 224, 242, 0.45), transparent 32rem),
    linear-gradient(180deg, #f4f9fe 0%, var(--bg) 42%, #f5faff 100%);
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 18px auto 0;
  padding: 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(214, 230, 241, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(15, 58, 86, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 25%, rgba(45, 142, 193, 0.16), transparent 46%),
    linear-gradient(145deg, #ffffff, var(--logo-blue-soft));
  border: 1px solid rgba(45, 142, 193, 0.22);
  box-shadow:
    0 10px 24px rgba(18, 85, 127, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.brand-mark img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: #eef6fc;
}

.main-nav a {
  padding: 11px 15px;
  border-radius: 999px;
  color: #42606f;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--logo-blue-dark);
  background: var(--logo-blue-soft);
  box-shadow: inset 0 0 0 1px rgba(45, 142, 193, 0.12);
}

.header-cta,
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta,
.btn.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(18, 85, 127, 0.22);
}

.btn.ghost {
  color: var(--green);
  background: #fff;
  border: 1px solid var(--line);
}

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

.header-cta:hover,
.header-cta:focus-visible,
.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--logo-blue);
  box-shadow: 0 14px 34px rgba(45, 142, 193, 0.24);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  color: var(--logo-blue-dark);
  border-color: rgba(45, 142, 193, 0.28);
  background: var(--logo-blue-soft);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.92fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 92px);
  padding-top: 104px;
}

.rating-pill,
.section-label {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint-strong);
}

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

h1 {
  max-width: 660px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 4.55vw, 4.75rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 30px;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-tag {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(15, 58, 86, 0.07);
}

.hero-tag span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  padding: 0;
  border-radius: 42px;
  background: linear-gradient(145deg, #e4f2fb, #ffffff 58%, #d6ebf6);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: center bottom;
  padding: 0;
  border-radius: 42px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: #fff;
  outline: 0;
}

input,
select {
  height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--mint-strong);
  box-shadow: 0 0 0 4px rgba(127, 196, 230, 0.24);
}

.form-note {
  display: block;
  min-height: 19px;
  margin-top: 10px;
  color: var(--green);
  font-weight: 700;
}

.stats-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -32px auto 0;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 54px rgba(15, 58, 86, 0.09);
}

.stat-card {
  position: relative;
  min-height: 112px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(214, 230, 241, 0.95);
  border-radius: 18px;
  background: var(--panel-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.stat-card::after {
  content: none;
}

.stat-icon {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--green);
  font-size: 0.94rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(18, 85, 127, 0.14);
}

.stats-strip strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 5px;
  font-size: clamp(2rem, 3.35vw, 3.35rem);
  line-height: 0.95;
}

.stat-card > span:last-child {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.35;
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  font-weight: 800;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.45fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.split-heading p {
  margin-bottom: 22px;
}

.text-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--green);
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--logo-blue-dark);
  border-color: rgba(45, 142, 193, 0.28);
  background: var(--logo-blue-soft);
  transform: translateY(-2px);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.3fr;
  gap: 18px;
}

.why-card,
.doctor-card,
.service-card,
.process-grid article,
.testimonial-card,
.blog-card,
.feature-grid article,
.mini-card,
.faq details,
.contact,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: 0 18px 54px rgba(15, 58, 86, 0.08);
}

.why-card {
  min-height: 320px;
  padding: 28px;
}

.why-card span,
.process-grid span,
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 42px;
  border-radius: 50%;
  color: var(--green);
  background: var(--sage);
  font-weight: 800;
}

.why-card.accent {
  background: var(--green);
}

.why-card.accent h3,
.why-card.accent p,
.why-card.accent span {
  color: #fff;
}

.why-card.accent span {
  background: rgba(255, 255, 255, 0.14);
}

.doctor-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  min-height: 320px;
}

.doctor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-card div {
  padding: 30px;
  align-self: end;
}

.doctor-card p {
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 800;
}

.doctor-card span {
  color: var(--muted);
  line-height: 1.6;
}

.video-library {
  padding-top: 54px;
}

.video-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.video-player {
  position: relative;
  min-height: 520px;
  background: #09263a;
}

.video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-list {
  display: grid;
  align-content: start;
  max-height: 520px;
  overflow: auto;
  border-left: 1px solid var(--line);
  background: #fff;
}

.video-list-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 22px;
  color: #fff;
  background: var(--green);
}

.play-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  font-size: 1rem;
}

.video-list-head strong,
.video-list-head small {
  display: block;
}

.video-list-head strong {
  font-size: 1.15rem;
}

.video-list-head small {
  margin-top: 4px;
  opacity: 0.8;
}

.video-item {
  display: grid;
  grid-template-columns: 28px 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 16px 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.video-item:hover,
.video-item.is-active {
  background: var(--panel-soft);
}

.video-item:hover strong,
.video-item:focus-visible strong,
.video-item.is-active strong {
  color: var(--logo-blue-dark);
}

.video-item span {
  color: var(--muted);
  font-weight: 800;
}

.video-item img {
  width: 96px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.video-item strong {
  display: block;
  line-height: 1.35;
}

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

.service-card {
  min-height: 305px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.service-card p {
  margin-bottom: 24px;
}

.service-card a {
  width: max-content;
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
  transition: color 180ms ease;
}

.service-card a:hover,
.service-card a:focus-visible {
  color: var(--logo-blue-dark);
}

.condition-focus {
  padding-top: 34px;
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.condition-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 254, 0.94)),
    var(--panel);
  box-shadow: 0 16px 42px rgba(15, 58, 86, 0.07);
}

.condition-grid span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--green);
  background: var(--sage);
  font-size: 0.86rem;
  font-weight: 800;
}

.condition-grid h3 {
  max-width: 280px;
}

.condition-grid p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.62;
}

.second-opinion {
  padding-top: 26px;
}

.second-opinion-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.48fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(214, 230, 241, 0.9);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 92% 10%, rgba(191, 224, 242, 0.28), transparent 17rem),
    var(--green);
  box-shadow: var(--shadow);
}

.second-opinion-card .section-label {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.second-opinion-card h2 {
  max-width: 720px;
  color: #fff;
}

.second-opinion-card p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.opinion-actions {
  display: grid;
  gap: 20px;
  justify-items: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.opinion-actions ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.opinion-actions li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.opinion-actions li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mint);
  font-weight: 800;
}

.opinion-actions .btn.primary {
  color: var(--green);
  background: #fff;
  box-shadow: none;
}

.opinion-actions .btn.primary:hover,
.opinion-actions .btn.primary:focus-visible {
  color: #fff;
  background: var(--logo-blue);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(320px, 0.7fr);
  gap: 18px;
  align-items: stretch;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-content {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--green);
}

.about-content h2,
.about-content .section-label {
  color: #fff;
}

.about-content .section-label {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.mini-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.mini-card + .mini-card {
  margin-top: 16px;
}

.mini-card h3,
.mini-card p {
  color: #fff;
}

.mini-card p {
  margin-bottom: 0;
  opacity: 0.78;
}

.feature-grid,
.process-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-grid article {
  overflow: hidden;
}

.feature-grid img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.feature-grid h3,
.feature-grid p {
  padding-left: 24px;
  padding-right: 24px;
}

.feature-grid h3 {
  margin-top: 24px;
}

.feature-grid p {
  padding-bottom: 28px;
}

.process {
  text-align: center;
}

.process h2,
.testimonials h2,
.faq h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.process-grid {
  margin-top: 38px;
  text-align: left;
}

.process-grid article {
  min-height: 275px;
  padding: 28px;
}

.process-grid span {
  margin-bottom: 52px;
}

.testimonials {
  text-align: center;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.testimonial-card {
  min-height: 230px;
  padding: 28px;
  text-align: left;
}

.review-stars {
  margin-bottom: 18px;
  color: #f5a900;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 1.03rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
}

.testimonial-card > span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.blog-card {
  overflow: hidden;
  background: #fff;
}

.blog-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.blog-card div {
  padding: 24px;
}

.blog-card span,
.read-link {
  color: var(--green);
  font-weight: 800;
}

.read-link {
  display: inline-flex;
  margin-top: 6px;
  transition: color 180ms ease;
}

.read-link:hover,
.read-link:focus-visible,
.blog-card a:hover,
.blog-card a:focus-visible {
  color: var(--logo-blue-dark);
}

.blog-hero {
  padding-top: 132px;
  padding-bottom: 46px;
  text-align: center;
}

.blog-hero .section-label {
  margin-left: auto;
  margin-right: auto;
}

.blog-hero h1 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.blog-hero p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.12rem;
}

.blog-index {
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 18px 54px rgba(15, 58, 86, 0.08);
}

.resource-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.resource-card div {
  padding: 26px;
}

.resource-card h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.08;
}

.article-meta {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green);
  background: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 18px 54px rgba(15, 58, 86, 0.08);
}

.article-card h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.article-reader {
  padding-top: 34px;
}

.reader-intro {
  max-width: 760px;
  margin-bottom: 26px;
}

.reader-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.reader-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(15, 58, 86, 0.08);
}

.reader-sidebar a {
  padding: 13px 14px;
  border-radius: 16px;
  color: var(--muted);
  font-weight: 800;
}

.reader-sidebar a:hover {
  color: var(--logo-blue-dark);
  background: var(--logo-blue-soft);
}

.reader-stack {
  display: grid;
  gap: 18px;
}

.article-full {
  scroll-margin-top: 120px;
  padding: 38px;
}

.article-full p {
  max-width: 820px;
  font-size: 1.03rem;
}

.article-shell {
  padding-top: 24px;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 14px;
}

.article-summary-card,
.article-callout,
.article-cta-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(15, 58, 86, 0.08);
}

.article-summary-card {
  padding: 22px;
}

.article-summary-card h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.article-summary-card h3 {
  margin-bottom: 8px;
}

.article-summary-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.62;
}

.article-content .article-full {
  padding: clamp(28px, 4vw, 52px);
}

.article-lede {
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.34rem) !important;
  line-height: 1.62;
  font-weight: 700;
}

.article-video {
  position: relative;
  overflow: hidden;
  margin: 34px 0;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  background: var(--green);
  box-shadow: 0 18px 54px rgba(15, 58, 86, 0.12);
}

.article-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.article-content h2 {
  margin-top: 42px;
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
}

.article-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.article-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  background: var(--panel-soft);
  line-height: 1.62;
}

.article-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--green);
  font-weight: 800;
}

.article-callout {
  max-width: 820px;
  margin: 30px 0;
  padding: 24px;
  background: var(--sage);
  box-shadow: none;
}

.article-callout h3,
.article-callout p {
  margin-bottom: 0;
}

.article-cta-panel {
  max-width: 920px;
  margin: 42px 0;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  color: #fff;
  background: var(--green);
}

.article-cta-panel h2,
.article-cta-panel p {
  color: #fff;
}

.article-cta-panel h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.article-cta-panel p {
  margin-bottom: 0;
  opacity: 0.78;
}

.article-cta-panel .btn.primary {
  color: var(--green);
  background: #fff;
  box-shadow: none;
  white-space: nowrap;
}

.article-content details {
  max-width: 820px;
  margin-bottom: 12px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.article-content summary {
  cursor: pointer;
  font-weight: 800;
}

.article-content details p {
  margin: 14px 0 0;
}

.article-disclaimer {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem !important;
}

.faq {
  text-align: center;
}

.faq-list {
  max-width: 900px;
  margin: 34px auto 0;
  display: grid;
  gap: 12px;
  text-align: left;
}

.faq details {
  padding: 22px 24px;
  box-shadow: none;
}

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

.faq summary::marker {
  color: var(--green);
}

.faq details p {
  margin: 16px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 32px;
  padding: 34px;
  background: #fff;
}

.contact > div {
  align-self: center;
}

.contact h2 {
  max-width: 680px;
}

.phone-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  box-shadow: none;
}

.contact-form button {
  width: 100%;
}

.whatsapp-card {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel-soft);
  box-shadow: none;
}

.whatsapp-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: #25d366;
}

.whatsapp-icon svg {
  width: 33px;
  height: 33px;
  fill: currentColor;
}

.whatsapp-card h3 {
  margin-bottom: 0;
}

.whatsapp-card p {
  margin-bottom: 4px;
}

.whatsapp-card .btn {
  width: max-content;
}

.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
}

.consult-modal.is-open {
  display: grid;
}

.consult-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 43, 63, 0.42);
  backdrop-filter: blur(10px);
}

.consult-modal__dialog {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.consult-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: var(--green);
  background: var(--panel-soft);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.consult-modal__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.consult-modal h2 {
  max-width: 360px;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 2.45rem);
}

.consult-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  border-radius: 28px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--green);
}

.footer-brand .brand-mark {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.footer-brand strong,
.footer-brand small {
  color: #fff;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 92px 16px auto 16px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    padding: 15px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .about,
  .contact,
  .video-panel,
  .second-opinion-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 52px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-image {
    height: 540px;
  }

  .split-heading,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .text-link {
    justify-self: start;
  }

  .doctor-card {
    grid-template-columns: minmax(240px, 0.8fr) 1fr;
  }

  .service-grid,
  .condition-grid,
  .feature-grid,
  .process-grid,
  .testimonial-track,
  .blog-grid,
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .video-player {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .video-list {
    max-height: none;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .blog-index,
  .reader-layout,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .reader-sidebar,
  .article-aside {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .site-header,
  .section-pad,
  .stats-strip,
  .site-footer {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .section-pad {
    padding: 64px 0;
  }

  .hero {
    padding-top: 48px;
    gap: 34px;
  }

  h1 {
    font-size: clamp(2.72rem, 13vw, 4.15rem);
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .stats-strip,
  .service-grid,
  .condition-grid,
  .feature-grid,
  .process-grid,
  .testimonial-track,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    gap: 8px;
    padding: 10px;
  }

  .stat-card {
    min-height: 92px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
    padding: 14px;
  }

  .stat-icon {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .hero-visual {
    min-height: auto;
    border-radius: 28px;
  }

  .hero-image {
    height: 430px;
    border-radius: 28px;
  }

  .doctor-card {
    grid-template-columns: 1fr;
  }

  .doctor-card img {
    height: 330px;
  }

  .about-image img {
    min-height: 380px;
  }

  .about-content,
  .contact,
  .second-opinion-card {
    padding: 24px;
  }

  .condition-grid article {
    min-height: 0;
  }

  .opinion-actions {
    padding: 18px;
  }

  .contact {
    gap: 22px;
  }

  .video-item {
    grid-template-columns: 24px 82px minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
  }

  .video-item img {
    width: 82px;
  }

  .blog-hero {
    padding-top: 92px;
    text-align: left;
  }

  .blog-hero .section-label,
  .blog-hero h1,
  .blog-hero p {
    margin-left: 0;
    margin-right: 0;
  }

  .resource-card div,
  .article-card,
  .article-full {
    padding: 24px;
  }

  .reader-sidebar,
  .article-aside {
    grid-template-columns: 1fr;
  }

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

  .article-cta-panel .btn.primary {
    width: 100%;
    white-space: normal;
  }
}

/* ---- Recognition / Gallery ---- */
.gallery-intro {
  max-width: 760px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  padding: 16px 18px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

.gallery-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.gallery-teaser-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-teaser-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-teaser-grid figure:hover img {
  transform: scale(1.05);
}

@media (max-width: 640px) {
  .gallery-item img,
  .gallery-teaser-grid img {
    height: 220px;
  }
}

/* ---- Icon feature cards (no stock photos) ---- */
.feature-grid--icons article {
  padding: 34px 28px 30px;
}

.feature-grid--icons .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  font-size: 1.7rem;
  line-height: 1;
  background: var(--logo-blue-soft);
  border: 1px solid var(--line);
}

.feature-grid--icons h3 {
  margin-top: 22px;
  padding-left: 0;
  padding-right: 0;
}

.feature-grid--icons p {
  padding: 0;
}

/* ---- Branded article cover (replaces stock photo) ---- */
.resource-cover {
  height: 150px;
  display: flex;
  align-items: flex-end;
  padding: 20px 26px;
  background: linear-gradient(135deg, var(--logo-blue-dark), var(--logo-blue));
}

.resource-cover span {
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

/* ---- Locations ---- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.location-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: 0 18px 54px rgba(15, 58, 86, 0.08);
  padding: 30px;
}

.location-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--logo-blue-soft);
  color: var(--logo-blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.location-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.location-card address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.6;
}

.location-note {
  margin: 14px 0 22px;
  font-weight: 700;
  color: var(--green);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-map-link {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--logo-blue-soft), var(--panel));
  box-shadow: 0 18px 54px rgba(15, 58, 86, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.location-map-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(15, 58, 86, 0.14);
}

.location-map-pin {
  font-size: 1.9rem;
  line-height: 1;
}

.location-map-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.location-map-text strong {
  font-size: 1.1rem;
}

.location-map-text small {
  color: var(--muted);
}

.location-map-cta {
  font-weight: 800;
  color: var(--logo-blue-dark);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .location-map-link {
    flex-wrap: wrap;
  }
}

.footer-address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.55;
  max-width: 520px;
}

.footer-address a {
  color: var(--logo-blue-dark);
  font-weight: 700;
}

@media (max-width: 780px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .location-map iframe {
    height: 300px;
  }
}

/* ================= Services page redesign ================= */

/* Hero pills + cta row */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 24px;
}

.svc-pill {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--logo-blue-dark);
  transition: background 0.2s ease, transform 0.2s ease;
}

.svc-pill:hover {
  background: var(--logo-blue-soft);
  transform: translateY(-1px);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-note {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

/* Specialist focus cards */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.focus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 4px solid var(--logo-blue);
  box-shadow: 0 18px 54px rgba(15, 58, 86, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.focus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(15, 58, 86, 0.16);
}

.focus-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  font-size: 1.9rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--logo-blue), var(--logo-blue-dark));
  box-shadow: 0 10px 24px rgba(15, 58, 86, 0.28);
}

.focus-tag {
  display: inline-flex;
  align-self: flex-start;
  margin: 20px 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--logo-blue-soft);
  color: var(--logo-blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.focus-card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.focus-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.focus-link {
  margin-top: auto;
  font-weight: 800;
  color: var(--logo-blue-dark);
}

/* Featured focus card (filled) */
.focus-card.is-featured {
  background: linear-gradient(150deg, var(--logo-blue-dark), #0c3e5c);
  border-color: transparent;
  border-top-color: var(--mint-strong);
}

.focus-card.is-featured h3 {
  color: #fff;
}

.focus-card.is-featured p {
  color: rgba(255, 255, 255, 0.86);
}

.focus-card.is-featured .focus-ico {
  background: rgba(255, 255, 255, 0.16);
}

.focus-card.is-featured .focus-tag {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.focus-card.is-featured .focus-link {
  color: #fff;
}

/* Conditions band (white block for rhythm) */
.cond-band {
  padding: 60px 48px;
  background: var(--panel);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

@media (max-width: 620px) {
  .cond-band {
    padding: 40px 22px;
  }
}

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

.cond-card {
  padding: 26px 24px;
  border-radius: var(--radius-md);
  background: var(--panel-soft);
  border: 1px solid var(--line);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cond-card:hover {
  transform: translateY(-3px);
  border-color: var(--logo-blue);
  box-shadow: 0 18px 44px rgba(15, 58, 86, 0.12);
}

.cond-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  font-size: 1.5rem;
  line-height: 1;
  background: var(--logo-blue-soft);
  border: 1px solid var(--line);
  margin-bottom: 16px;
}

.cond-card h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
}

.cond-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* Photo + trust band */
.svc-photo-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.svc-photo-media img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.svc-check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  gap: 12px;
}

.svc-check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 600;
  color: var(--ink);
}

.svc-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--logo-blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .focus-grid,
  .cond-grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-photo-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .svc-photo-media {
    order: -1;
  }
}

@media (max-width: 620px) {
  .focus-grid,
  .cond-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Final cleanup: footer layout + readable address ---- */
.footer-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.footer-copy p {
  margin: 0;
}

.site-footer .footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  max-width: none;
}

.site-footer .footer-address a {
  color: #fff;
  font-weight: 700;
}

/* ---- Final cleanup: mobile nav ---- */
.nav-cta {
  display: none;
}

@media (max-width: 1050px) {
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(12, 43, 63, 0.55);
    backdrop-filter: blur(3px);
  }

  .main-nav {
    z-index: 55;
  }

  .main-nav .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    min-height: 50px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-weight: 800;
  }

  .main-nav .nav-cta:hover,
  .main-nav .nav-cta:focus-visible {
    background: var(--logo-blue);
    color: #fff;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* ---- Custom SVG icons in tiles ---- */
.cond-ico,
.feature-grid--icons .feature-icon {
  color: var(--logo-blue-dark);
}

.focus-ico {
  color: #fff;
}

.cond-ico svg {
  width: 26px;
  height: 26px;
}

.focus-ico svg {
  width: 30px;
  height: 30px;
}

.feature-grid--icons .feature-icon svg {
  width: 30px;
  height: 30px;
}

/* ---- Doctor / About page ---- */
.doctor-creds-line {
  margin: 0 0 26px;
  font-weight: 700;
  color: var(--logo-blue-dark);
}

.about-bio .bio-body {
  max-width: 820px;
  margin-top: 8px;
}

.about-bio .bio-body p {
  margin-bottom: 18px;
}

/* ---- Active nav page indicator ---- */
.main-nav a[aria-current="page"] {
  color: var(--logo-blue-dark);
  background: var(--logo-blue-soft);
  box-shadow: inset 0 0 0 1px rgba(45, 142, 193, 0.18);
}

/* ---- Service/article byline + related ---- */
.article-byline {
  margin: -6px 0 20px;
  font-size: 0.98rem;
  color: var(--muted);
}
.article-byline strong { color: var(--logo-blue-dark); }

.article-related {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-weight: 600;
  color: var(--muted);
}
.article-related a { color: var(--logo-blue-dark); font-weight: 700; }

/* ---- Clickable condition card ---- */
.cond-card { position: relative; }
.cond-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: var(--logo-blue-dark);
}
.cond-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
}

/* ---- Clickable focus card ---- */
.focus-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
}

/* ---- Clickable Patient Guides cards ---- */
.blog-index .resource-card {
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.blog-index .resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(15, 58, 86, 0.16);
}

.blog-index .resource-card .read-link::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* ---- Patient Guides cover icon watermark ---- */
.resource-cover { position: relative; overflow: hidden; }

.resource-cover .cover-ico {
  position: absolute;
  top: -18px;
  right: -14px;
  width: 128px;
  height: 128px;
  color: rgba(255, 255, 255, 0.22);
  transform: rotate(-8deg);
  pointer-events: none;
}

.resource-cover .cover-ico svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.4;
}

.resource-cover .cover-label {
  position: relative;
  z-index: 1;
}
