
  /* Review-only surgical service-page system. Shared clinic styles remain the foundation. */
  .topic-page {
    overflow-x: hidden;
  }

  .topic-page .site-header {
    background: rgba(251, 247, 239, .9);
  }

  .topic-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background:
      radial-gradient(circle at 76% 24%, rgba(197, 139, 76, .22), transparent 30%),
      radial-gradient(circle at 20% 86%, rgba(11, 119, 113, .24), transparent 34%),
      linear-gradient(135deg, #15211f 0%, #103e40 54%, #0f5b5f 100%);
    color: white;
  }

  .topic-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .5;
    background-image:
      linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
  }

  .topic-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, .78fr);
    gap: clamp(36px, 6vw, 78px);
    align-items: center;
  }

  .topic-breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255,255,255,.72);
    font-size: .88rem;
  }

  .topic-breadcrumb a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
  }

  .topic-hero .eyebrow {
    color: var(--accent-soft);
  }

  .topic-hero h1 {
    color: white;
    font-size: clamp(2.65rem, 5.2vw, 5.5rem);
    max-width: 900px;
  }

  .topic-hero__lead {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.84);
    font-size: clamp(1.06rem, 1.6vw, 1.28rem);
    line-height: 1.75;
  }

  .topic-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
  }

  .topic-hero .btn--soft {
    color: white;
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
  }

  .topic-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
  }

  .topic-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.86);
    font-size: .86rem;
    backdrop-filter: blur(8px);
  }

  .topic-chip svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--accent-soft);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .topic-hero__visual {
    position: relative;
    min-height: 445px;
    display: grid;
    place-items: center;
  }

  .topic-hero__halo {
    position: absolute;
    width: min(490px, 94%);
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    background:
      radial-gradient(circle, rgba(255,255,255,.09), rgba(255,255,255,.015) 64%, transparent 65%);
    box-shadow:
      0 0 0 42px rgba(255,255,255,.025),
      0 0 0 84px rgba(255,255,255,.018);
  }

  .topic-hero__art {
    position: relative;
    width: min(390px, 88%);
    filter: drop-shadow(0 28px 48px rgba(0,0,0,.24));
  }

  .topic-hero__note {
    position: absolute;
    inset-inline-end: 0;
    bottom: 52px;
    width: min(235px, 58%);
    padding: 16px 17px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    background: rgba(21,33,31,.68);
    color: rgba(255,255,255,.8);
    font-size: .86rem;
    line-height: 1.55;
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
  }

  .topic-hero__note strong {
    display: block;
    color: white;
    margin-bottom: 3px;
  }

  .topic-reassurance-wrap {
    position: relative;
    z-index: 3;
    margin-top: -50px;
  }

  .topic-reassurance {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    padding: clamp(22px, 4vw, 32px);
    border: 1px solid rgba(197,139,76,.24);
    border-radius: 28px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow);
  }

  .topic-reassurance__icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(15,91,95,.12), rgba(197,139,76,.2));
    color: var(--primary);
  }

  .topic-reassurance__icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .topic-reassurance strong {
    display: block;
    color: var(--ink);
    font-size: clamp(1.18rem, 2vw, 1.55rem);
    line-height: 1.35;
  }

  .topic-reassurance p {
    margin: 6px 0 0;
  }

  .topic-section-head {
    max-width: 780px;
    margin-bottom: 28px;
  }

  .topic-section-head h2 {
    font-size: clamp(2.15rem, 4vw, 4rem);
  }

  .topic-section-head p:not(.eyebrow) {
    margin: 18px 0 0;
    font-size: 1.04rem;
  }

  .topic-two-col {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 4.5vw, 58px);
    align-items: center;
  }

  .topic-art-card {
    position: relative;
    min-height: 405px;
    display: grid;
    place-items: center;
    padding: clamp(22px, 4vw, 38px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
      radial-gradient(circle at 78% 18%, rgba(197,139,76,.2), transparent 28%),
      linear-gradient(145deg, rgba(255,255,255,.96), rgba(240,232,220,.72));
    box-shadow: var(--shadow);
  }

  .topic-art-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px dashed rgba(15,91,95,.18);
    border-radius: 50%;
  }

  .topic-art-card svg {
    position: relative;
    z-index: 1;
    width: min(360px, 92%);
    height: auto;
  }

  .topic-facts {
    display: grid;
    gap: 14px;
    margin-top: 22px;
  }

  .topic-fact {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 17px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.62);
  }

  .topic-fact__number {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(15,91,95,.1);
    color: var(--primary);
    font-weight: 900;
  }

  .topic-fact strong {
    color: var(--ink);
  }

  .topic-fact p {
    margin: 3px 0 0;
    font-size: .94rem;
  }

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

  .topic-card {
    position: relative;
    overflow: hidden;
    min-height: 242px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 16px 38px rgba(21,33,31,.07);
  }

  .topic-card::after {
    content: "";
    position: absolute;
    inset-inline-end: -45px;
    bottom: -55px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(15,91,95,.055);
  }

  .topic-card__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(15,91,95,.12), rgba(197,139,76,.19));
    color: var(--primary);
  }

  .topic-card__icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .topic-card h3 {
    font-size: 1.18rem;
    line-height: 1.28;
  }

  .topic-card p {
    position: relative;
    z-index: 1;
    margin: 12px 0 0;
    font-size: .93rem;
  }

  .topic-pathway {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 13px;
  }

  .topic-pathway::before {
    content: "";
    position: absolute;
    top: 36px;
    inset-inline: 8%;
    height: 2px;
    background: linear-gradient(90deg, rgba(15,91,95,.18), rgba(197,139,76,.58), rgba(15,91,95,.18));
  }

  .topic-pathway__step {
    position: relative;
    z-index: 1;
    padding: 0 10px 20px;
    text-align: center;
  }

  .topic-pathway__icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border: 7px solid var(--bg);
    border-radius: 50%;
    background: var(--surface);
    color: var(--primary);
    box-shadow: 0 10px 26px rgba(15,91,95,.14);
  }

  .muted .topic-pathway__icon {
    border-color: #f4eee5;
  }

  .topic-pathway__icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .topic-pathway__step h3 {
    font-size: 1.02rem;
    line-height: 1.35;
  }

  .topic-pathway__step p {
    margin: 7px 0 0;
    font-size: .86rem;
    line-height: 1.55;
  }

  .topic-decision-note {
    margin-top: 22px;
    padding: 18px 20px;
    border-inline-start: 4px solid var(--accent);
    border-radius: 16px;
    background: rgba(255,255,255,.72);
    color: var(--ink);
  }

  .topic-surgery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .topic-surgery-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: clamp(22px, 3vw, 28px);
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255,255,255,.8);
    box-shadow: 0 18px 48px rgba(21,33,31,.07);
  }

  .topic-surgery-card__art {
    min-height: 210px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(15,91,95,.08), rgba(197,139,76,.16));
  }

  .topic-surgery-card__art svg {
    width: 135px;
    height: auto;
  }

  .topic-surgery-card h3 {
    font-size: 1.45rem;
  }

  .topic-surgery-card ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 9px;
  }

  .topic-surgery-card li {
    position: relative;
    padding-inline-start: 23px;
    font-size: .94rem;
  }

  .topic-surgery-card li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: .58em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
  }

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

  .topic-journey__step {
    position: relative;
    min-height: 192px;
    padding: 23px 21px 21px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 26px;
    background: rgba(255,255,255,.075);
    color: rgba(255,255,255,.74);
  }

  .topic-journey__step::after {
    counter-increment: journey;
    content: "0" counter(journey);
    position: absolute;
    inset-inline-end: 16px;
    bottom: -12px;
    color: rgba(255,255,255,.07);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
  }

  .topic-journey__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.11);
    color: var(--accent-soft);
  }

  .topic-journey__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .topic-journey__step h3 {
    color: white;
    font-size: 1.12rem;
  }

  .topic-journey__step p {
    position: relative;
    z-index: 1;
    margin: 9px 0 0;
    font-size: .91rem;
  }

  .topic-dark-section {
    position: relative;
    background:
      radial-gradient(circle at 88% 22%, rgba(15,119,113,.22), transparent 30%),
      linear-gradient(145deg, var(--ink), #113b3d);
    color: rgba(255,255,255,.78);
  }

  .topic-dark-section h2 {
    color: white;
  }

  .topic-dark-section .eyebrow {
    color: var(--accent-soft);
  }

  .topic-checklist-wrap {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    gap: clamp(34px, 6vw, 70px);
    align-items: center;
  }

  .topic-checklist-card {
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow);
  }

  .topic-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .topic-checklist li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 11px;
    align-items: start;
    padding: 14px;
    border-radius: 16px;
    background: rgba(15,91,95,.055);
    color: var(--ink);
    font-size: .92rem;
  }

  .topic-checklist__tick {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: .7rem;
    font-weight: 900;
  }

  .topic-screenshot-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--subtle);
    font-size: .84rem;
  }

  .topic-screenshot-note svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .topic-faq-intro {
    max-width: 760px;
    margin-bottom: 30px;
  }

  .topic-page .faq-list summary {
    position: relative;
    padding-inline-end: 68px;
  }

  .topic-page .faq-list summary::after {
    content: "+";
    position: absolute;
    inset-inline-end: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(15,91,95,.08);
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 500;
  }

  .topic-page .faq-list details[open] summary::after {
    content: "−";
  }

  .topic-disclaimer {
    margin-top: 30px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.55);
    color: var(--subtle);
    font-size: .88rem;
  }

  .topic-doctor-box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    padding: clamp(28px, 4vw, 46px);
    border-radius: 38px;
    background:
      linear-gradient(90deg, rgba(21,33,31,.98) 0%, rgba(17,59,61,.96) 68%, rgba(15,91,95,.92) 100%);
    color: rgba(255,255,255,.78);
    box-shadow: var(--shadow);
  }

  .topic-doctor-box::after {
    content: "";
    position: absolute;
    inset-inline-end: -80px;
    top: -120px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018);
  }

  .topic-doctor-box h2 {
    position: relative;
    z-index: 1;
    color: white;
    font-size: clamp(2rem, 3.8vw, 3.7rem);
  }

  .topic-doctor-box p {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 16px 0 0;
  }

  .topic-doctor-box__credentials {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
  }

  .topic-doctor-box__credentials span {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.82);
    font-size: .82rem;
  }

  .topic-doctor-box__actions {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 11px;
    min-width: 210px;
  }

  .topic-doctor-box .btn--soft {
    color: white;
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
  }

  .topic-review-badge {
    position: fixed;
    inset-inline-start: 18px;
    bottom: 18px;
    z-index: 86;
    padding: 7px 11px;
    border: 1px solid rgba(21,33,31,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    color: var(--subtle);
    font-size: .73rem;
    box-shadow: 0 8px 24px rgba(21,33,31,.08);
    backdrop-filter: blur(10px);
  }



  /* Focused review refinements: compact rhythm, clearer navigation and optical centering. */
  .topic-page .section-pad {
    padding: 74px 0;
  }

  .topic-page .nav {
    gap: 16px;
  }

  .topic-page .nav__links {
    gap: 4px;
  }

  .topic-page .nav__links > a {
    padding: 9px 10px;
    font-size: .87rem;
  }

  .topic-page .nav__links .topic-home-link {
    padding-inline: 15px;
    border: 1px solid rgba(15, 91, 95, .18);
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: white;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15, 91, 95, .18);
  }

  .topic-page .nav__links .topic-home-link:hover {
    background: linear-gradient(135deg, #0c5155, #096d68);
    color: white;
    transform: translateY(-1px);
  }

  .topic-section-head {
    max-width: none;
    margin-bottom: 28px;
  }

  .topic-section-head h2,
  .topic-faq-intro h2,
  .topic-doctor-box h2 {
    white-space: nowrap;
  }

  .topic-section-head h2 {
    font-size: clamp(1.75rem, 2.75vw, 3.15rem);
  }

  .topic-two-col .topic-section-head h2 {
    font-size: clamp(1.65rem, 2.35vw, 2.7rem);
  }

  .topic-section-head p:not(.eyebrow) {
    margin-top: 12px;
  }

  .topic-doctor-box .eyebrow {
    color: var(--accent);
  }

  .topic-doctor-box .btn--accent {
    border-color: rgba(255, 255, 255, .16);
    background: linear-gradient(135deg, #e2a45f, var(--accent));
    color: var(--ink);
    box-shadow: 0 16px 34px rgba(197, 139, 76, .28);
  }

  .topic-doctor-box .btn--accent:hover {
    background: linear-gradient(135deg, #ebb574, #ce9250);
  }

  /* Optical centering for all numbered, checked and illustrated markers. */
  .topic-fact,
  .topic-checklist li {
    align-items: center;
  }

  .topic-fact__number,
  .topic-reassurance__icon,
  .topic-card__icon,
  .topic-pathway__icon,
  .topic-journey__icon,
  .topic-checklist__tick,
  .topic-page .faq-list summary::after {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
  }

  .topic-chip svg,
  .topic-reassurance__icon svg,
  .topic-card__icon svg,
  .topic-pathway__icon svg,
  .topic-journey__icon svg,
  .topic-screenshot-note svg {
    display: block;
    flex: 0 0 auto;
  }

  .topic-surgery-card li::before {
    top: 50%;
    transform: translateY(-50%);
  }

  @media (max-width: 1100px) {
    .topic-card-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topic-surgery-card {
      grid-template-columns: 145px minmax(0, 1fr);
    }
  }

  @media (max-width: 900px) {
    .topic-section-head h2,
    .topic-faq-intro h2,
    .topic-doctor-box h2 {
      white-space: normal;
    }

    .topic-hero {
      min-height: auto;
      padding: 72px 0 84px;
    }

    .topic-hero__grid,
    .topic-two-col,
    .topic-checklist-wrap,
    .topic-doctor-box {
      grid-template-columns: 1fr;
    }

    .topic-hero__visual {
      min-height: 430px;
    }

    .topic-pathway {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .topic-pathway::before {
      top: 20px;
      bottom: 20px;
      inset-inline-start: 35px;
      inset-inline-end: auto;
      width: 2px;
      height: auto;
      background: linear-gradient(to bottom, rgba(15,91,95,.18), rgba(197,139,76,.58), rgba(15,91,95,.18));
    }

    .topic-pathway__step {
      display: grid;
      grid-template-columns: 70px 1fr;
      column-gap: 16px;
      text-align: start;
      padding: 0 0 12px;
    }

    .topic-pathway__icon {
      grid-row: 1 / 3;
      width: 70px;
      height: 70px;
      border-width: 6px;
      margin: 0;
    }

    .topic-pathway__step h3 {
      align-self: end;
    }

    .topic-pathway__step p {
      align-self: start;
    }

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

    .topic-journey {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topic-doctor-box__actions {
      min-width: 0;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 760px) {
    .topic-page .section-pad {
      padding: 56px 0;
    }

    .topic-hero {
      padding: 44px 0 66px;
    }

    .topic-hero__grid {
      gap: 22px;
    }

    .topic-hero h1 {
      font-size: clamp(2.35rem, 12vw, 3.7rem);
    }

    .topic-hero__lead {
      font-size: 1rem;
      line-height: 1.7;
    }

    .topic-hero__actions .btn {
      width: 100%;
    }

    .topic-hero__visual {
      min-height: 330px;
    }

    .topic-hero__art {
      width: min(310px, 84%);
    }

    .topic-hero__note {
      bottom: 18px;
      width: min(210px, 70%);
      font-size: .78rem;
    }

    .topic-reassurance-wrap {
      margin-top: -35px;
    }

    .topic-reassurance {
      grid-template-columns: 1fr;
      gap: 13px;
      border-radius: 22px;
    }

    .topic-reassurance__icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
    }

    .topic-section-head {
      margin-bottom: 28px;
    }

    .topic-section-head h2 {
      font-size: clamp(2rem, 10vw, 3rem);
    }

    .topic-art-card {
      min-height: 330px;
      border-radius: 26px;
    }

    .topic-card-grid,
    .topic-journey,
    .topic-checklist {
      grid-template-columns: 1fr;
    }

    .topic-card {
      min-height: 0;
    }

    .topic-card__icon {
      margin-bottom: 22px;
    }

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

    .topic-surgery-card__art {
      min-height: 180px;
    }

    .topic-doctor-box {
      border-radius: 28px;
    }

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

    .topic-review-badge {
      display: none;
    }
  }


  /* V3 precision corrections: layout integrity, technical medical illustration and optical centring. */
  .topic-page .topic-section-head,
  .topic-page .topic-faq-intro,
  .topic-page .topic-checklist-wrap > *,
  .topic-page .topic-two-col > *,
  .topic-page .topic-doctor-box > * { min-width: 0; }

  .topic-page .topic-section-head h2,
  .topic-page .topic-faq-intro h2,
  .topic-page .topic-doctor-box h2,
  .topic-page .topic-two-col .topic-section-head h2 {
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  @media (min-width: 1180px) {
    .topic-page section:not(#overview):not(#prepare) > .container > .topic-section-head h2,
    .topic-page .topic-faq-intro h2,
    .topic-page .topic-doctor-box h2 { white-space: nowrap; }
  }

  .topic-checklist-wrap { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
  .topic-checklist-wrap .topic-section-head h2 { font-size: clamp(2rem, 3.15vw, 3.45rem); }
  .topic-art-card { overflow: hidden; }
  .topic-art-card svg { width: min(100%, 410px); max-height: 430px; }
  .topic-hero__art { width: min(96%, 455px); max-height: 520px; }

  .topic-art-credit {
    position: absolute;
    inset-inline: 20px;
    bottom: 12px;
    z-index: 2;
    color: var(--subtle);
    font-size: .66rem;
    text-align: center;
    opacity: .78;
  }

  .topic-fact { grid-template-columns: 46px minmax(0, 1fr); align-items: center; }
  .topic-fact__number,
  .topic-checklist__tick,
  .topic-card__icon,
  .topic-pathway__icon,
  .topic-journey__icon,
  .topic-reassurance__icon {
    display: grid;
    place-items: center;
    line-height: 1;
  }
  .topic-fact__number {
    font-variant-numeric: tabular-nums;
    letter-spacing: -.02em;
    transform: translateY(-1px);
  }

  .topic-checklist li {
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
  }
  .topic-checklist__tick { width: 24px; height: 24px; }
  .topic-checklist__tick svg {
    display: block;
    width: 13px;
    height: 13px;
    fill: none;
    stroke: white;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .topic-card__icon svg,
  .topic-pathway__icon svg,
  .topic-journey__icon svg,
  .topic-reassurance__icon svg {
    display: block;
    width: 23px;
    height: 23px;
    margin: 0;
    transform: none;
  }

  .topic-page .faq-list summary::after {
    content: "";
    display: block;
    background:
      linear-gradient(currentColor, currentColor) center / 10px 1.5px no-repeat,
      linear-gradient(currentColor, currentColor) center / 1.5px 10px no-repeat,
      rgba(15,91,95,.08);
  }
  .topic-page .faq-list details[open] summary::after {
    content: "";
    background:
      linear-gradient(currentColor, currentColor) center / 10px 1.5px no-repeat,
      rgba(15,91,95,.08);
  }

  .topic-surgery-card__art svg { width: min(100%, 180px); height: auto; }

  @media (max-width: 900px) {
    .topic-checklist-wrap { grid-template-columns: 1fr; }
    .topic-art-credit { position: static; display: block; margin: 8px 14px 0; }
  }



  /* Desktop and mobile QA refinements. */
  .topic-heading-break {
    display: block;
  }

  .topic-hero__title-main,
  .topic-hero__title-sub {
    display: block;
  }

  .topic-hero__title-sub {
    margin-top: .28em;
    max-width: 780px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1.35rem, 2.35vw, 2.55rem);
    font-weight: 650;
    line-height: 1.24;
    letter-spacing: -.015em;
  }

  body[dir="rtl"] .topic-hero__title-sub {
    letter-spacing: 0;
    line-height: 1.38;
  }

  #overview .topic-section-head h2 {
    line-height: 1.34;
  }
