/* ============================================================================
   Fast Tracking — Anaesthetist Fees Explained (style-anaesthetist-fees.css)
   ----------------------------------------------------------------------------
   File location:  wp-content/themes/astra-child/assets/anaesthetist-fees/
                   style-anaesthetist-fees.css
   Loaded by:      functions.php (conditional on is_page_template
                   'template-anaesthetist-fees.php')

   Inherits the theme tokens (--ink, --brass, --paper, --rule, etc.) defined
   on :root in this file's opening block, mirroring the home stylesheet
   convention.

   Pairs with:
     - template-anaesthetist-fees.php (page template)
     - style-calculator.css (calculator widget styles)
     - /assets/shared/style-masthead.css, style-callbar.css, style-footer.css

   Design notes:
   - Body class hook is .ft-anaesthetist-fees. Most rules are unscoped so
     they affect this template only via the conditional enqueue, but where a
     rule could collide with shared theme styling we use body.ft-anaesthetist-fees
     to win specificity.
   - Hero pattern follows the home page but is text-only (no card column),
     since this is an article-style page where the calculator is the visual
     anchor further down.
   - Sections alternate background between --paper and --paper-warm to chunk
     the long-form content visually without garish dividers.
   ============================================================================ */

:root {
  --ink:        #0B2238;
  --ink-deep:   #061826;
  --ink-soft:   #2C3D52;
  --paper:      #F8F6F1;
  --paper-warm: #F0EDE5;
  --paper-deep: #E5E0D5;
  --brass:      #C9986A;
  --brass-deep: #7a5928;
  --rule:       #DDD7C8;
  --text:       #1A2433;
  --text-soft:  #4A5568;
  --text-mute:  #7A8294;
  --white:      #FFFFFF;
  --serif:      'Fraunces', 'Times New Roman', serif;
  --sans:       'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:       'JetBrains Mono', 'SF Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-padding-top: 90px; }
body.ft-anaesthetist-fees {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: 'ss01', 'ss02';
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* GRAIN OVERLAY — matches home paper texture */
body.ft-anaesthetist-fees::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.025 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 1;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

.ft-anaesthetist-fees .container { max-width: 1280px; margin: 0 auto; }
.ft-anaesthetist-fees .container-narrow { max-width: 880px; margin: 0 auto; }

/* ============================================================================
   HERO
   ============================================================================ */
.ft-anaesthetist-fees .hero {
  position: relative;
  padding: 96px 48px 80px;
  overflow: hidden;
}

.ft-anaesthetist-fees .hero .container {
  max-width: 1280px;
}

.ft-anaesthetist-fees .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) {
  .ft-anaesthetist-fees .hero-grid {
    grid-template-columns: 1.35fr 1fr;
    gap: 72px;
  }
}

.ft-anaesthetist-fees .hero-copy { max-width: 640px; }

/* ─── Hero image — editorial card with brass top accent ──────────── */
.ft-anaesthetist-fees .hero-figure {
  margin: 0;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow:
    0 1px 0 rgba(11,34,56,0.04),
    0 24px 60px -20px rgba(11,34,56,0.18);
  /* Subtle entry — picks up the .fade-in observer if added later */
}
.ft-anaesthetist-fees .hero-figure::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 3px;
  background: var(--brass);
  border-radius: 0 0 3px 3px;
  z-index: 2;
}
.ft-anaesthetist-fees .hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* On mobile, cap image height so it doesn't dominate the viewport */
@media (max-width: 979px) {
  .ft-anaesthetist-fees .hero-figure {
    max-width: 460px;
    margin: 0 auto;
  }
}

.ft-anaesthetist-fees .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 36px;
}
.ft-anaesthetist-fees .hero-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--brass);
}

.ft-anaesthetist-fees .hero h1 {
  font-family: var(--serif);
  font-weight: 360;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: clamp(2.1rem, 4.4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.030em;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 16ch;
}
.ft-anaesthetist-fees .hero h1 em {
  font-style: italic;
  font-weight: 320;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--brass-deep);
}

.ft-anaesthetist-fees .hero-lede {
  font-size: 1.14rem;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 54ch;
  margin-bottom: 32px;
  font-weight: 400;
}

.ft-anaesthetist-fees .hero-byline {
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 54ch;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.ft-anaesthetist-fees .hero-byline strong { color: var(--ink); font-weight: 500; }
.ft-anaesthetist-fees .hero-byline-meta {
  display: inline-block;
  margin-left: 8px;
  color: var(--text-mute);
  font-size: 0.85rem;
}

.ft-anaesthetist-fees .hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
}

/* Buttons — match home stylesheet */
.ft-anaesthetist-fees .btn-primary,
.ft-anaesthetist-fees .btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans); font-size: 0.96rem; font-weight: 500;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.ft-anaesthetist-fees .btn-primary {
  background: var(--ink); color: var(--white);
  border-radius: 100px;
  letter-spacing: -0.005em;
}
.ft-anaesthetist-fees .btn-primary:hover {
  background: var(--ink-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(11, 34, 56, 0.3);
}
.ft-anaesthetist-fees .btn-primary::after {
  content: '↓'; font-size: 1.1em;
  transition: transform 0.22s ease;
}
.ft-anaesthetist-fees .btn-primary:hover::after { transform: translateY(2px); }
.ft-anaesthetist-fees .btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 100px;
  letter-spacing: -0.005em;
}
.ft-anaesthetist-fees .btn-ghost:hover { background: var(--ink); color: var(--white); }

/* ============================================================================
   SECTION ATOMS — eyebrow, title, lede (mirrors home conventions)
   ============================================================================ */
.ft-anaesthetist-fees section {
  position: relative;
  padding: 96px 48px;
}

/* Alternating section backgrounds, lightly stripey for readability */
.ft-anaesthetist-fees .opening-section,
.ft-anaesthetist-fees .ranges-section,
.ft-anaesthetist-fees .before-section,
.ft-anaesthetist-fees .alternative-section,
.ft-anaesthetist-fees .about-page-section {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.ft-anaesthetist-fees .how-it-works-section,
.ft-anaesthetist-fees .calculator-section,
.ft-anaesthetist-fees .key-question-section,
.ft-anaesthetist-fees .aftermath-section,
.ft-anaesthetist-fees .disclaimer-section {
  background: var(--paper);
}

.ft-anaesthetist-fees .faq-section { background: var(--paper-warm); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

.ft-anaesthetist-fees .section-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 28px;
}
.ft-anaesthetist-fees .section-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--brass);
}
.ft-anaesthetist-fees .section-eyebrow .num {
  font-family: var(--mono); font-weight: 500;
  color: var(--text-mute); letter-spacing: 0.05em;
}

.ft-anaesthetist-fees .section-title {
  font-family: var(--serif); font-weight: 360;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 22ch;
}
.ft-anaesthetist-fees .section-title em {
  font-style: italic; font-weight: 320; color: var(--brass-deep);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.ft-anaesthetist-fees .section-lede {
  font-size: 1.20rem; line-height: 1.6;
  color: var(--text-soft);
  max-width: 62ch;
  margin-top: 28px;
}

/* ============================================================================
   PROSE — long-form content blocks
   ============================================================================ */
.ft-anaesthetist-fees .prose-block {
  margin-top: 40px;
  max-width: 68ch;
}
.ft-anaesthetist-fees .prose-block-spaced { margin-top: 56px; }

.ft-anaesthetist-fees .prose-block p {
  font-size: 1.20rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 26px;
}
.ft-anaesthetist-fees .prose-block p:last-child { margin-bottom: 0; }

.ft-anaesthetist-fees .prose-block strong { color: var(--ink); font-weight: 500; }

.ft-anaesthetist-fees .prose-block h3,
.ft-anaesthetist-fees .prose-h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  font-size: 1.70rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 60px;
  margin-bottom: 22px;
  max-width: 30ch;
}

.ft-anaesthetist-fees .prose-block a,
.ft-anaesthetist-fees .prose-block-spaced a,
.ft-anaesthetist-fees .faq-answer a,
.ft-anaesthetist-fees .escalation-paths a,
.ft-anaesthetist-fees .fund-finder a,
.ft-anaesthetist-fees .sources-list a {
  color: var(--brass-deep);
  text-decoration: underline;
  text-decoration-color: rgba(122, 89, 40, 0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}
.ft-anaesthetist-fees .prose-block a:hover,
.ft-anaesthetist-fees .faq-answer a:hover,
.ft-anaesthetist-fees .escalation-paths a:hover,
.ft-anaesthetist-fees .fund-finder a:hover,
.ft-anaesthetist-fees .sources-list a:hover {
  color: var(--ink);
  text-decoration-color: var(--brass);
}

/* RVG definition list */
.ft-anaesthetist-fees .rvg-list {
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
}
.ft-anaesthetist-fees .rvg-list dt {
  font-family: var(--serif);
  font-weight: 480;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  font-size: 1.22rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.ft-anaesthetist-fees .rvg-list dd {
  font-size: 1.10rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-left: 0;
}

/* ============================================================================
   THREE BILLS TABLE
   ============================================================================ */
.ft-anaesthetist-fees .bills-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
  border-radius: 6px;
  border: 1px solid var(--rule);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(11,34,56,0.04), 0 18px 40px -20px rgba(11,34,56,0.10);
}
.ft-anaesthetist-fees .bills-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.96rem;
}
.ft-anaesthetist-fees .bills-table thead th {
  text-align: left;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-deep);
  padding: 18px 24px;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--rule);
}
.ft-anaesthetist-fees .bills-table tbody th[scope="row"] {
  font-family: var(--serif);
  font-weight: 480;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  font-size: 1.08rem;
  color: var(--ink);
  text-align: left;
  padding: 22px 24px;
  vertical-align: top;
  white-space: nowrap;
}
.ft-anaesthetist-fees .bills-table tbody td {
  padding: 24px 26px;
  font-size: 1.04rem;
  color: var(--text-soft);
  line-height: 1.6;
  vertical-align: top;
  border-top: 1px solid var(--rule);
}
.ft-anaesthetist-fees .bills-table tbody tr:first-child td,
.ft-anaesthetist-fees .bills-table tbody tr:first-child th { border-top: none; }
.ft-anaesthetist-fees .bills-table tbody td em {
  color: var(--brass-deep); font-style: italic;
}

/* ============================================================================
   KEY QUESTION SECTION — pull-quote and answers list
   ============================================================================ */
.ft-anaesthetist-fees .key-question-quote {
  font-family: var(--serif);
  font-weight: 380;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 48px 0 32px;
  padding: 32px 36px;
  background: var(--white);
  border-left: 3px solid var(--brass);
  border-radius: 0 6px 6px 0;
  box-shadow: 0 1px 0 rgba(11,34,56,0.04), 0 18px 40px -20px rgba(11,34,56,0.10);
}
.ft-anaesthetist-fees .key-question-quote em {
  font-style: italic;
  color: var(--brass-deep);
  font-weight: 360;
}

.ft-anaesthetist-fees .key-answers {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.ft-anaesthetist-fees .key-answers li {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--text-soft);
  padding: 20px 24px;
  background: var(--paper-warm);
  border-radius: 6px;
  border-left: 2px solid var(--rule);
}
.ft-anaesthetist-fees .key-answers li strong {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 1.16rem;
}
.ft-anaesthetist-fees .key-arrow {
  display: inline-block;
  margin: 0 8px 0 4px;
  color: var(--brass);
  font-weight: 500;
}

/* ============================================================================
   NUMBERED LIST — questions to ask
   ============================================================================ */
.ft-anaesthetist-fees .numbered-list {
  list-style: none;
  margin: 32px 0;
  padding: 0;
  counter-reset: question-counter;
  display: grid;
  gap: 24px;
}
.ft-anaesthetist-fees .numbered-list li {
  counter-increment: question-counter;
  padding: 26px 30px 26px 86px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  position: relative;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-soft);
}
.ft-anaesthetist-fees .numbered-list li::before {
  content: counter(question-counter, decimal-leading-zero);
  position: absolute;
  left: 24px; top: 24px;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brass);
  letter-spacing: 0.04em;
}
.ft-anaesthetist-fees .numbered-list li strong {
  display: block;
  font-family: var(--serif);
  font-weight: 460;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  font-size: 1.22rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 10px;
}
.ft-anaesthetist-fees .numbered-list .li-note {
  display: block;
  font-size: 1.04rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ============================================================================
   FUND FINDER — dl/dt/dd structure
   ============================================================================ */
.ft-anaesthetist-fees .fund-finder {
  margin: 32px 0;
  display: grid;
  gap: 20px;
}
.ft-anaesthetist-fees .fund-finder dt {
  font-family: var(--serif);
  font-weight: 460;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  font-size: 1.18rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.ft-anaesthetist-fees .fund-finder dd {
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-left: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.ft-anaesthetist-fees .fund-finder dd:last-of-type { border-bottom: none; }
.ft-anaesthetist-fees .fund-finder strong { color: var(--ink); font-weight: 500; }

.ft-anaesthetist-fees .finder-tip {
  margin-top: 26px;
  padding: 22px 26px;
  background: var(--paper-warm);
  border-left: 3px solid var(--brass);
  border-radius: 0 6px 6px 0;
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--text-soft);
}
.ft-anaesthetist-fees .finder-tip strong { color: var(--ink); font-weight: 500; }

/* ============================================================================
   ESCALATION PATHS LIST
   ============================================================================ */
.ft-anaesthetist-fees .escalation-paths {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.ft-anaesthetist-fees .escalation-paths li {
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-soft);
}
.ft-anaesthetist-fees .escalation-paths li strong { color: var(--ink); font-weight: 500; }

/* ============================================================================
   FAQ — mirrors home conventions
   ============================================================================ */
.ft-anaesthetist-fees .faq-grid {
  display: grid; grid-template-columns: 1fr; gap: 56px;
  margin-top: 64px;
}
@media (min-width: 980px) {
  .ft-anaesthetist-fees .faq-grid { grid-template-columns: 1fr 2fr; gap: 96px; }
}
.ft-anaesthetist-fees .faq-aside {
  position: sticky; top: 110px;
  align-self: start;
}
.ft-anaesthetist-fees .faq-aside p {
  font-size: 1rem; line-height: 1.65;
  color: var(--text-soft);
}
.ft-anaesthetist-fees .faq details {
  display: block;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.ft-anaesthetist-fees .faq details:first-child { border-top: 1px solid var(--rule); }
.ft-anaesthetist-fees .faq summary {
  display: block;
  list-style: none;
  cursor: pointer;
  padding: 28px 48px 28px 0;
  font-family: var(--serif); font-weight: 440;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: 1.24rem; line-height: 1.4;
  letter-spacing: -0.014em;
  color: var(--ink);
  position: relative;
}
.ft-anaesthetist-fees .faq summary::-webkit-details-marker { display: none; }
.ft-anaesthetist-fees .faq summary::after {
  content: '';
  position: absolute;
  right: 12px; top: 50%;
  width: 14px; height: 14px;
  background:
    linear-gradient(currentColor, currentColor) center/100% 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center/1.5px 100% no-repeat;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
  color: var(--brass-deep);
}
.ft-anaesthetist-fees .faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: linear-gradient(currentColor, currentColor) center/100% 1.5px no-repeat;
}
.ft-anaesthetist-fees .faq-answer {
  padding: 0 48px 30px 0;
  font-family: var(--sans); font-size: 1.08rem; line-height: 1.7;
  color: var(--text-soft);
  max-width: 68ch;
}
.ft-anaesthetist-fees .faq-answer p { margin-bottom: 14px; }
.ft-anaesthetist-fees .faq-answer p:last-child { margin-bottom: 0; }
.ft-anaesthetist-fees .faq-answer ul {
  margin: 12px 0;
  padding-left: 22px;
}
.ft-anaesthetist-fees .faq-answer li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.ft-anaesthetist-fees .faq-answer strong { color: var(--ink); font-weight: 500; }

/* ============================================================================
   DISCLAIMER + ABOUT
   ============================================================================ */
.ft-anaesthetist-fees .disclaimer-list,
.ft-anaesthetist-fees .sources-list {
  margin: 16px 0 24px 0;
  padding-left: 22px;
}
.ft-anaesthetist-fees .disclaimer-list li,
.ft-anaesthetist-fees .sources-list li {
  margin-bottom: 12px;
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--text-soft);
}
.ft-anaesthetist-fees .disclaimer-list li strong,
.ft-anaesthetist-fees .sources-list li strong { color: var(--ink); font-weight: 500; }

.ft-anaesthetist-fees .about-tag {
  margin-top: 44px;
  padding: 26px 30px;
  background: var(--paper-warm);
  border-left: 3px solid var(--brass);
  border-radius: 0 6px 6px 0;
  font-size: 1.10rem;
  line-height: 1.65;
  color: var(--text-soft);
}
.ft-anaesthetist-fees .about-tag strong { color: var(--ink); font-weight: 500; }

/* ============================================================================
   SCROLL ANIMATIONS — opt-in via .fade-in (matches masthead-ft.js observer)
   ============================================================================ */
.ft-anaesthetist-fees .fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.ft-anaesthetist-fees .fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================================
   ACCESSIBILITY
   ============================================================================ */
.ft-anaesthetist-fees .sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 980px) {
  .ft-anaesthetist-fees section {
    padding: 80px 32px;
  }
  .ft-anaesthetist-fees .hero { padding: 64px 32px 64px; }
}

@media (max-width: 720px) {
  .ft-anaesthetist-fees section {
    padding: 64px 24px;
  }
  .ft-anaesthetist-fees .hero { padding: 48px 24px 56px; }
  .ft-anaesthetist-fees .hero-actions { gap: 10px; }
  .ft-anaesthetist-fees .btn-primary,
  .ft-anaesthetist-fees .btn-ghost { padding: 14px 22px; font-size: 0.92rem; }
  .ft-anaesthetist-fees .key-question-quote {
    padding: 24px 22px;
    font-size: 1.3rem;
  }
  .ft-anaesthetist-fees .numbered-list li {
    padding: 22px 22px 22px 22px;
  }
  .ft-anaesthetist-fees .numbered-list li::before {
    position: static;
    display: block;
    margin-bottom: 10px;
  }
  .ft-anaesthetist-fees .bills-table thead th,
  .ft-anaesthetist-fees .bills-table tbody th,
  .ft-anaesthetist-fees .bills-table tbody td {
    padding: 16px 18px;
  }
  .ft-anaesthetist-fees .faq summary { padding-right: 36px; font-size: 1.06rem; }
}
