/* ============================================================
   AGASTYA HOSPITALS — shared stylesheet
   MOBILE FIRST. Base rules target phones; min-width queries
   progressively enhance for tablet (600px) and desktop (1020px).
   Light theme default · dark via toggle · medical SVG icon system
   ============================================================ */
*{box-sizing:border-box;margin:0;padding:0;}
:root{
  --bg:#ffffff; --bg-2:#FBF5F2; --surface:#ffffff; --surface-2:#FAF4F5;
  --text:#241A2B; --muted:#6E6675;
  --brand:#9E2B3F; --brand-2:#7E2233; --brand-soft:#FBEAEE;
  --navy:#1E3A5F; --navy-soft:#E8EEF6; --gold:#C0913A;
  --border:#EFE4E7; --shadow:30,20,40;
  --grad:linear-gradient(135deg,#9E2B3F 0%,#7A2740 45%,#1E3A5F 100%);
  --grad-soft:linear-gradient(135deg,#FBEAEE,#E8EEF6);
  --gutter:20px;
  --safe-b:env(safe-area-inset-bottom,0px);
}
html[data-theme="dark"]{
  --bg:#0E131B; --bg-2:#121925; --surface:#161F2C; --surface-2:#1C2735;
  --text:#ECEAF0; --muted:#9DAEC0;
  --brand:#E0697F; --brand-2:#C8506A; --brand-soft:#2A1A22;
  --navy:#6FA0D6; --navy-soft:#16243A; --gold:#E0B85A;
  --border:#28323F; --shadow:0,0,0;
  --grad:linear-gradient(135deg,#C8506A 0%,#8E3A56 45%,#3F6FA0 100%);
  --grad-soft:linear-gradient(135deg,#241820,#16243A);
}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
body{font-family:'Inter',sans-serif;background:var(--bg);color:var(--text);line-height:1.65;font-size:16px;
  -webkit-font-smoothing:antialiased;transition:background .3s,color .3s;overflow-x:hidden;}
h1,h2,h3,h4{font-family:'Poppins',sans-serif;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;height:auto;display:block;}

/* ---------- LAYOUT PRIMITIVES (mobile base) ---------- */
.wrap{width:100%;max-width:1180px;margin:0 auto;padding:0 var(--gutter);}
.section{padding:52px 0;}
.center{text-align:center;}
.center .eyebrow{justify-content:center;}
.center .eyebrow::before{display:none;}
.center .sec-lead{margin-left:auto;margin-right:auto;}
.eyebrow{display:inline-flex;align-items:center;gap:9px;font-size:12px;font-weight:600;letter-spacing:1.4px;
  text-transform:uppercase;color:var(--brand);margin-bottom:10px;}
.eyebrow::before{content:'';width:22px;height:2px;background:var(--brand);border-radius:2px;}
.sec-title{font-size:27px;font-weight:700;line-height:1.22;letter-spacing:-.02em;margin-bottom:12px;}
.sec-lead{font-size:15.5px;color:var(--muted);max-width:640px;line-height:1.62;}

/* every card grid is ONE column on a phone */
.grid-2,.grid-3,.grid-4,.gallery{display:grid;grid-template-columns:1fr;gap:16px;}

/* ---------- ICONS ---------- */
.mi{width:1em;height:1em;display:block;stroke:currentColor;fill:none;stroke-width:1.9;
  stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}
.mi.fill{fill:currentColor;stroke:none;}

/* ---------- LOGO ---------- */
.logo{display:flex;align-items:center;gap:11px;}
.logo img{width:auto;height:46px;flex-shrink:0;}
html[data-theme="dark"] .logo img{background:#fff;border-radius:9px;padding:4px 8px;}
.footer .logo img{background:#fff;border-radius:11px;padding:7px 11px;height:56px;}

/* ---------- NAV ---------- */
.nav{position:sticky;top:0;z-index:200;background:color-mix(in srgb,var(--bg) 90%,transparent);
  backdrop-filter:blur(14px);border-bottom:1px solid var(--border);transition:background .3s,border-color .3s;}
.nav-in{display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:8px var(--gutter);max-width:1180px;margin:0 auto;}
.nav-links{display:none;}
.nav-tools{display:flex;align-items:center;gap:8px;}
.tool-btn{width:44px;height:44px;border-radius:12px;border:1px solid var(--border);background:var(--surface);
  color:var(--text);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .15s;font-size:17px;}
.tool-btn:hover{border-color:var(--brand);color:var(--brand);}
.hamburger{display:flex;width:44px;height:44px;border-radius:12px;border:1px solid var(--border);
  background:var(--surface);color:var(--text);font-size:20px;cursor:pointer;align-items:center;justify-content:center;}
/* emergency = icon-only pill on phones (label still read by screen readers) */
.nav-emer{display:inline-flex;align-items:center;justify-content:center;gap:0;background:var(--grad);color:#fff;
  width:44px;height:44px;border-radius:12px;font-size:13.5px;font-weight:600;white-space:nowrap;
  box-shadow:0 6px 16px rgba(var(--shadow),.18);}
.nav-emer .mi{width:19px;height:19px;}
.nav-emer .emer-label{display:none;}
.nav-emer:hover{filter:brightness(1.06);}
.mmenu{display:none;flex-direction:column;padding:6px var(--gutter) 18px;border-bottom:1px solid var(--border);background:var(--bg);}
.mmenu a{padding:14px 2px;font-size:16.5px;font-weight:500;color:var(--text);border-bottom:1px solid var(--border);}
.mmenu a:last-child{border-bottom:0;}
.mmenu a.active{color:var(--brand);font-weight:600;}
.mmenu.open{display:flex;}

/* ---------- PAGE HEAD ---------- */
.page-head{background:var(--grad);color:#fff;padding:34px 0 36px;position:relative;overflow:hidden;}
.page-head::after{content:'';position:absolute;top:-40%;right:-20%;width:320px;height:320px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.14),transparent 70%);}
.page-head h1{font-size:30px;font-weight:800;letter-spacing:-.02em;line-height:1.15;position:relative;z-index:1;}
.page-head p{font-size:15.5px;color:rgba(255,255,255,.85);max-width:640px;margin-top:9px;position:relative;z-index:1;}
.crumbs{display:flex;gap:7px;align-items:center;flex-wrap:wrap;font-size:12.5px;color:rgba(255,255,255,.75);
  margin-bottom:12px;position:relative;z-index:1;}
.crumbs a:hover{color:#fff;text-decoration:underline;}
.crumbs span{opacity:.6;}

/* ---------- BUTTONS ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;padding:14px 22px;border-radius:100px;
  font-weight:600;font-size:15px;cursor:pointer;transition:transform .15s,box-shadow .15s,filter .15s;
  border:none;font-family:inherit;min-height:48px;}
.btn .mi{width:17px;height:17px;}
.btn-primary{background:var(--grad);color:#fff;box-shadow:0 12px 30px rgba(var(--shadow),.2);}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 16px 38px rgba(var(--shadow),.28);}
.btn-wa{background:#25D366;color:#fff;box-shadow:0 12px 30px rgba(37,211,102,.3);}
.btn-wa:hover{transform:translateY(-2px);filter:brightness(1.04);}
.btn-outline{background:var(--surface);color:var(--text);border:1.5px solid var(--border);}
.btn-outline:hover{border-color:var(--brand);color:var(--brand);}
/* any row of buttons: never let them touch */
.btn-row{display:flex;flex-direction:column;gap:12px;}
.btn-row .btn{width:100%;}

/* ---------- HERO ---------- */
.hero{position:relative;overflow:hidden;background:var(--bg-2);transition:background .3s;}
.hero::before{content:'';position:absolute;top:-10%;right:-30%;width:340px;height:340px;border-radius:50%;
  background:radial-gradient(circle,color-mix(in srgb,var(--brand) 22%,transparent),transparent 68%);pointer-events:none;}
.hero::after{content:'';position:absolute;bottom:-18%;left:-35%;width:340px;height:340px;border-radius:50%;
  background:radial-gradient(circle,color-mix(in srgb,var(--navy) 20%,transparent),transparent 68%);pointer-events:none;}
.hero-in{position:relative;z-index:1;display:grid;grid-template-columns:1fr;gap:32px;
  padding:34px var(--gutter) 44px;max-width:1180px;margin:0 auto;}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:var(--surface);border:1px solid var(--border);
  border-radius:100px;padding:7px 14px;font-size:11.5px;font-weight:600;color:var(--brand);margin-bottom:18px;
  box-shadow:0 4px 14px rgba(var(--shadow),.06);}
.hero-badge .dot{width:8px;height:8px;border-radius:50%;background:#18A85A;box-shadow:0 0 0 3px color-mix(in srgb,#18A85A 25%,transparent);}
.hero h1{font-size:34px;font-weight:800;line-height:1.1;letter-spacing:-.025em;margin-bottom:12px;}
.hero h1 .g{background:var(--grad);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;}
.hero-sanskrit{font-size:14px;font-weight:600;color:var(--brand);font-style:italic;margin-bottom:14px;}
.hero-sub{font-size:15.5px;color:var(--muted);line-height:1.6;margin-bottom:24px;max-width:520px;}
.hero-btns{display:flex;flex-direction:column;gap:12px;margin-bottom:28px;}
.hero-btns .btn{width:100%;}
.hero-trust{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;}
.ht{display:flex;flex-direction:column;}
.ht-n{font-family:'Poppins',sans-serif;font-size:21px;font-weight:800;color:var(--text);line-height:1;}
.ht-l{font-size:11.5px;color:var(--muted);margin-top:5px;line-height:1.3;}
/* mobile: headline first, photo below — and shown whole, never cropped */
.hero-visual{position:relative;}
.hero-photo{border-radius:20px;overflow:hidden;border:1px solid var(--border);
  box-shadow:0 20px 50px rgba(var(--shadow),.16);position:relative;z-index:2;}
.hero-photo img{width:100%;height:auto;display:block;}
.hero-tag{position:absolute;left:12px;bottom:12px;z-index:3;background:color-mix(in srgb,var(--surface) 93%,transparent);
  backdrop-filter:blur(8px);border:1px solid var(--border);border-radius:14px;padding:10px 13px;display:flex;gap:10px;
  align-items:center;box-shadow:0 12px 30px rgba(var(--shadow),.2);max-width:calc(100% - 24px);}
.hero-tag .ic{width:36px;height:36px;border-radius:10px;background:var(--grad);color:#fff;display:flex;
  align-items:center;justify-content:center;flex-shrink:0;}
.hero-tag .ic .mi{width:18px;height:18px;}
.hero-tag b{display:block;font-size:13px;font-weight:700;line-height:1.25;}
.hero-tag span{font-size:11.5px;color:var(--muted);line-height:1.3;}

/* ---------- TRUST BAR ---------- */
.trustbar{background:var(--grad);color:#fff;}
.trustbar-in{display:grid;grid-template-columns:1fr 1fr;gap:16px 12px;padding:26px var(--gutter);max-width:1180px;margin:0 auto;}
.tb{display:flex;align-items:center;gap:11px;}
.tb .ic{width:40px;height:40px;border-radius:12px;background:rgba(255,255,255,.16);display:flex;
  align-items:center;justify-content:center;flex-shrink:0;}
.tb .ic .mi{width:20px;height:20px;}
.tb h3{font-size:14px;font-weight:700;color:#fff;line-height:1.2;}
.tb p{font-size:11.5px;color:rgba(255,255,255,.8);line-height:1.3;}

/* ---------- ABOUT ---------- */
.about-grid{display:grid;grid-template-columns:1fr;gap:28px;align-items:center;}
.about-visual{position:relative;border-radius:20px;overflow:hidden;border:1px solid var(--border);}
.about-visual img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/3;min-height:0;}
.about-pts{margin-top:20px;display:flex;flex-direction:column;gap:14px;}
.about-pt{display:flex;gap:12px;align-items:flex-start;}
.about-pt .ic{width:40px;height:40px;border-radius:12px;background:var(--brand-soft);color:var(--brand);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.about-pt .ic .mi{width:20px;height:20px;}
.about-pt h3{font-size:15.5px;font-weight:600;margin-bottom:2px;}
.about-pt p{font-size:13.5px;color:var(--muted);line-height:1.55;}

/* ---------- CARDS ---------- */
.card{background:var(--surface);border:1px solid var(--border);border-radius:18px;padding:22px;
  transition:transform .18s,box-shadow .18s,border-color .18s;}
.card-ico{width:52px;height:52px;border-radius:15px;background:var(--grad-soft);color:var(--brand);
  display:flex;align-items:center;justify-content:center;margin-bottom:14px;}
.card-ico .mi{width:27px;height:27px;}
.card h3,.card h2{font-size:17.5px;font-weight:600;margin-bottom:7px;font-family:'Poppins',sans-serif;}
.card p{font-size:14px;color:var(--muted);line-height:1.55;}
.svc{display:flex;gap:13px;align-items:flex-start;background:var(--surface);border:1px solid var(--border);
  border-radius:15px;padding:16px 17px;transition:transform .15s,box-shadow .15s,border-color .15s;}
.svc .ic{width:44px;height:44px;border-radius:12px;background:var(--navy-soft);color:var(--navy);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.svc .ic .mi{width:22px;height:22px;}
.svc h3{font-size:15.5px;font-weight:600;margin-bottom:2px;}
.svc p{font-size:12.5px;color:var(--muted);line-height:1.45;}

/* ---------- DOCTORS ---------- */
.doc{background:var(--surface);border:1px solid var(--border);border-radius:20px;padding:24px 20px;text-align:center;
  transition:transform .18s,box-shadow .18s,border-color .18s;display:flex;flex-direction:column;}
.doc-av{width:100px;height:100px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-family:'Poppins',sans-serif;font-weight:700;font-size:29px;color:#fff;background:var(--grad);
  position:relative;overflow:hidden;}
.doc-av img{width:100%;height:100%;object-fit:cover;object-position:top center;}
.doc-av-ring{position:relative;width:max-content;margin:0 auto 15px;}
.doc-av-ring::after{content:'';position:absolute;inset:-6px;border-radius:50%;
  border:2px dashed color-mix(in srgb,var(--brand) 40%,transparent);}
.doc-av-ring .doc-av{margin:0;}
.doc h3{font-size:17.5px;font-weight:600;margin-bottom:3px;}
.doc .qual{font-size:12.5px;color:var(--muted);margin-bottom:9px;line-height:1.45;}
.doc .spec{display:inline-block;font-size:12.5px;font-weight:600;color:var(--brand);background:var(--brand-soft);
  padding:5px 13px;border-radius:100px;margin:0 auto 14px;line-height:1.35;}
.doc-meta{border-top:1px solid var(--border);padding-top:13px;display:flex;flex-direction:column;gap:7px;margin-top:auto;}
.doc-meta .row{display:flex;align-items:center;justify-content:center;gap:7px;font-size:13px;color:var(--muted);
  flex-wrap:wrap;text-align:center;}
.doc-meta .row .mi{width:15px;height:15px;color:var(--brand);}
.doc-meta .row b{color:var(--text);font-weight:600;}
.doc .view-link{display:inline-flex;align-items:center;justify-content:center;gap:6px;margin-top:14px;
  font-size:14px;font-weight:600;color:var(--brand);min-height:44px;}
.doc .view-link .mi{width:14px;height:14px;transition:transform .15s;}

/* ---------- DOCTOR PROFILE ---------- */
.profile-grid{display:grid;grid-template-columns:1fr;gap:28px;align-items:start;}
.profile-card{background:var(--surface);border:1px solid var(--border);border-radius:22px;padding:24px 20px;text-align:center;}
.profile-photo{width:160px;height:160px;border-radius:50%;overflow:hidden;background:var(--grad);display:flex;
  align-items:center;justify-content:center;font-family:'Poppins',sans-serif;font-weight:700;font-size:46px;color:#fff;}
.profile-photo img{width:100%;height:100%;object-fit:cover;object-position:top center;}
.profile-photo-wrap{position:relative;width:max-content;margin:0 auto 18px;}
.profile-photo-wrap::after{content:'';position:absolute;inset:-8px;border-radius:50%;
  border:2px dashed color-mix(in srgb,var(--brand) 40%,transparent);}
.profile-card h2{font-size:14px;font-weight:600;color:var(--muted);text-transform:uppercase;letter-spacing:1px;
  margin:16px 0 8px;text-align:left;}
.pc-row{display:flex;gap:10px;align-items:flex-start;text-align:left;padding:10px 0;border-top:1px solid var(--border);font-size:14px;}
.pc-row .mi{width:17px;height:17px;color:var(--brand);margin-top:3px;}
.pc-row b{display:block;font-size:11.5px;text-transform:uppercase;letter-spacing:.8px;color:var(--muted);font-weight:600;}
.profile-body h1{font-size:26px;font-weight:800;letter-spacing:-.02em;line-height:1.18;margin-bottom:6px;}
.profile-body .qual-line{font-size:14.5px;color:var(--muted);margin-bottom:10px;}
.profile-body .desig{display:inline-block;font-size:12.5px;font-weight:600;color:var(--brand);background:var(--brand-soft);
  padding:6px 14px;border-radius:100px;margin-bottom:22px;line-height:1.4;}
.profile-body h2{font-size:19px;font-weight:700;margin:26px 0 11px;display:flex;align-items:center;gap:9px;}
.profile-body h2 .mi{width:20px;height:20px;color:var(--brand);}
.profile-body p{color:var(--muted);font-size:15px;line-height:1.72;margin-bottom:13px;}
.hl-list{list-style:none;display:flex;flex-direction:column;gap:11px;margin:4px 0 8px;}
.hl-list li{display:flex;gap:11px;align-items:flex-start;font-size:14.5px;color:var(--muted);line-height:1.6;}
.hl-list li .mi{width:18px;height:18px;color:var(--brand);margin-top:4px;}
.hl-list li b{color:var(--text);font-weight:600;}
.expertise-tags{display:flex;flex-wrap:wrap;gap:8px;margin:6px 0 8px;}
.expertise-tags span{font-size:12.5px;font-weight:500;background:var(--navy-soft);color:var(--navy);padding:6px 13px;border-radius:100px;}
.profile-cta{margin-top:30px;padding:22px;border-radius:18px;background:var(--grad-soft);border:1px solid var(--border);
  display:flex;flex-direction:column;gap:16px;align-items:stretch;text-align:center;}
.profile-cta h3{font-size:17px;font-weight:700;margin-bottom:4px;}
.profile-cta p{margin:0;font-size:13.5px;}

/* ---------- FACILITIES / GALLERY ---------- */
.fac{display:flex;gap:13px;align-items:flex-start;background:var(--surface);border:1px solid var(--border);
  border-radius:16px;padding:18px;transition:transform .15s,box-shadow .15s;}
.fac .fic{width:46px;height:46px;border-radius:12px;background:var(--brand-soft);color:var(--brand);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.fac .fic .mi{width:23px;height:23px;}
.fac h3,.fac h2{font-size:15.5px;font-weight:600;margin-bottom:3px;font-family:'Poppins',sans-serif;}
.fac p{font-size:13.5px;color:var(--muted);line-height:1.5;}
.gal-item{border-radius:18px;overflow:hidden;border:1px solid var(--border);background:var(--surface);}
.gal-item img{width:100%;aspect-ratio:16/10;object-fit:cover;transition:transform .3s;}
.gal-item figcaption{padding:13px 16px;font-size:13.5px;font-weight:600;border-top:1px solid var(--border);
  display:flex;align-items:flex-start;gap:9px;line-height:1.4;}
.gal-item figcaption .mi{width:16px;height:16px;color:var(--brand);margin-top:3px;}

/* ---------- APPOINTMENT ---------- */
.appt{background:var(--surface-2);}
.appt-grid{display:grid;grid-template-columns:1fr;gap:28px;align-items:start;}
.wa-note{display:flex;gap:12px;align-items:flex-start;background:var(--surface);border:1px solid var(--border);
  border-radius:15px;padding:15px 16px;margin-top:20px;}
.wa-note .ic{width:38px;height:38px;border-radius:11px;background:#E3F7EC;color:#0E7A40;display:flex;
  align-items:center;justify-content:center;flex-shrink:0;}
.wa-note .ic .mi{width:19px;height:19px;}
html[data-theme="dark"] .wa-note .ic{background:#11321F;color:#5FD08A;}
.wa-note p{font-size:13.5px;color:var(--muted);line-height:1.55;}
.wa-note b{color:var(--text);}
.appt-form{background:var(--surface);border:1px solid var(--border);border-radius:20px;padding:22px 18px;
  box-shadow:0 18px 46px rgba(var(--shadow),.08);}
.field{margin-bottom:15px;}
.field-row{display:grid;grid-template-columns:1fr;gap:0;}
.field label{display:block;font-size:13px;font-weight:600;margin-bottom:6px;}
/* 16px font stops iOS Safari zooming on focus */
.field input,.field select,.field textarea{width:100%;padding:13px 15px;border-radius:12px;border:1.5px solid var(--border);
  background:var(--bg);color:var(--text);font-family:inherit;font-size:16px;transition:border-color .15s;min-height:48px;}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--brand);}
.field textarea{min-height:96px;resize:vertical;}
.appt-form .btn{width:100%;}

/* ---------- GOOGLE REVIEWS ---------- */
.g-summary{display:flex;flex-direction:column;align-items:center;gap:12px;background:var(--surface);
  border:1px solid var(--border);border-radius:18px;padding:20px 18px;max-width:560px;margin:0 auto 26px;text-align:center;}
.g-summary .g-score{font-family:'Poppins',sans-serif;font-size:34px;font-weight:800;line-height:1;}
.g-summary .g-meta .rev-stars{font-size:16px;}
.g-summary .g-meta span{font-size:13px;color:var(--muted);}
.g-summary .g-link{font-size:13.5px;font-weight:600;color:var(--brand);display:inline-flex;align-items:center;
  gap:6px;min-height:44px;}
.g-summary .g-link .mi{width:15px;height:15px;}
.rev{background:var(--surface);border:1px solid var(--border);border-radius:18px;padding:22px;
  display:flex;flex-direction:column;gap:13px;}
.rev-stars{color:var(--gold);font-size:17px;letter-spacing:2px;}
.rev p{font-size:14.5px;color:var(--muted);line-height:1.65;}
.rev-av{width:42px;height:42px;border-radius:50%;background:var(--grad);color:#fff;display:flex;align-items:center;
  justify-content:center;font-weight:700;font-size:15px;flex-shrink:0;}
.rev-head{display:flex;gap:11px;align-items:center;}
.rev-head img{width:42px;height:42px;border-radius:50%;object-fit:cover;}
.rev-head b{display:block;font-size:14px;}
.rev-head span{font-size:12px;color:var(--muted);}
.rev-source{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--muted);margin-top:auto;
  padding-top:10px;border-top:1px solid var(--border);}
.rev-source .mi{width:14px;height:14px;}
.rev-skeleton{background:var(--surface);border:1px solid var(--border);border-radius:18px;padding:24px;min-height:170px;}
.rev-skeleton div{height:12px;border-radius:6px;background:var(--border);margin-bottom:10px;}
.rev-skeleton div:nth-child(2){width:88%;}
.rev-skeleton div:nth-child(3){width:72%;}
/* the review CTAs — stacked with real breathing room on phones */
.g-actions{grid-column:1/-1;display:flex;flex-direction:column;align-items:center;gap:14px;}
.g-actions .btn{width:100%;max-width:340px;}

/* ---------- CONTACT ---------- */
.contact-grid{display:grid;grid-template-columns:1fr;gap:20px;align-items:stretch;}
.contact-cards{display:flex;flex-direction:column;gap:13px;}
.cc{display:flex;gap:13px;align-items:flex-start;background:var(--surface);border:1px solid var(--border);
  border-radius:16px;padding:17px 18px;}
.cc .ic{width:42px;height:42px;border-radius:12px;background:var(--brand-soft);color:var(--brand);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.cc .ic .mi{width:20px;height:20px;}
.cc h3{font-size:15px;font-weight:600;margin-bottom:3px;}
.cc p{font-size:14px;color:var(--muted);line-height:1.6;word-break:break-word;}
.cc a{color:var(--brand);font-weight:600;}
.map-wrap{border-radius:18px;overflow:hidden;border:1px solid var(--border);min-height:300px;}
.map-wrap iframe{width:100%;height:100%;min-height:300px;border:0;display:block;}

/* ---------- CTA STRIP ---------- */
.cta-strip{background:var(--grad);color:#fff;}
.cta-strip .wrap{display:flex;flex-direction:column;align-items:stretch;gap:20px;padding-top:36px;padding-bottom:36px;text-align:center;}
.cta-strip h2{font-size:23px;font-weight:800;letter-spacing:-.01em;}
.cta-strip p{color:rgba(255,255,255,.85);font-size:14.5px;margin-top:5px;}
.cta-strip .btn-outline{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.4);color:#fff;}
.cta-strip .btn-outline:hover{background:rgba(255,255,255,.2);}

/* ---------- FAQ ---------- */
.faq{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:18px 20px;margin-bottom:12px;}
.faq summary{font-weight:600;cursor:pointer;font-size:15.5px;line-height:1.5;list-style:none;
  display:flex;justify-content:space-between;align-items:flex-start;gap:12px;}
.faq summary::-webkit-details-marker{display:none;}
.faq summary::after{content:'+';font-size:22px;font-weight:400;color:var(--brand);line-height:1;flex-shrink:0;}
.faq[open] summary::after{content:'–';}
.faq p{margin-top:10px;font-size:14.5px;color:var(--muted);line-height:1.65;}

/* ---------- FOOTER ---------- */
.footer{background:#1A1220;color:#CFC7D6;padding:44px 0 0;}
html[data-theme="dark"] .footer{background:#0A0E14;}
.foot-grid{display:grid;grid-template-columns:1fr;gap:28px;padding-bottom:32px;}
.foot-about{font-size:14px;line-height:1.6;margin-top:14px;color:#B7ACBF;max-width:340px;}
.foot-col h3{color:#fff;font-size:15px;font-weight:700;margin-bottom:12px;}
.foot-col a,.foot-col p{display:block;font-size:14px;color:#B7ACBF;padding:7px 0;line-height:1.55;}
.foot-col a:hover{color:#fff;}
.foot-bottom{border-top:1px solid rgba(255,255,255,.1);padding:18px 0;display:flex;flex-direction:column;gap:8px;
  font-size:12.5px;color:#9A8FA3;text-align:center;padding-bottom:calc(18px + var(--safe-b));}
.foot-bottom a{color:#CFC7D6;font-weight:600;text-decoration:none;transition:color .15s;}
.foot-bottom a:hover{color:#fff;text-decoration:underline;}

/* ---------- FAB ---------- */
.fab-wa{position:fixed;right:16px;bottom:calc(16px + var(--safe-b));width:54px;height:54px;border-radius:50%;
  background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;
  box-shadow:0 12px 30px rgba(37,211,102,.45);z-index:150;transition:transform .15s;}
.fab-wa:hover{transform:scale(1.08);}
.fab-wa .mi{width:26px;height:26px;}

/* ---------- MOTION / A11Y ---------- */
.reveal{opacity:0;transform:translateY(16px);transition:opacity .55s ease,transform .55s ease;}
.reveal.in{opacity:1;transform:none;}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none;}
  html{scroll-behavior:auto;}
  *{animation:none!important;}
}
:focus-visible{outline:2px solid var(--brand);outline-offset:2px;}

/* ============================================================
   ≥ 600px — large phones & tablets
   ============================================================ */
@media(min-width:600px){
  :root{--gutter:24px;}
  .section{padding:64px 0;}
  .sec-title{font-size:31px;}
  .sec-lead{font-size:16px;}
  .grid-2,.grid-3,.grid-4,.gallery{grid-template-columns:repeat(2,1fr);gap:18px;}
  .hero h1{font-size:42px;}
  .hero-sub{font-size:16.5px;}
  .hero-btns{flex-direction:row;flex-wrap:wrap;}
  .hero-btns .btn{width:auto;}
  .hero-trust{display:flex;gap:26px;}
  .ht-n{font-size:24px;}
  .ht-l{font-size:12.5px;}

  .trustbar-in{gap:20px;padding:32px 24px;}
  .tb h3{font-size:15.5px;}
  .tb p{font-size:12.5px;}
  .page-head{padding:44px 0 46px;}
  .page-head h1{font-size:35px;}
  .field-row{grid-template-columns:1fr 1fr;gap:14px;}
  .btn-row{flex-direction:row;flex-wrap:wrap;}
  .btn-row .btn{width:auto;}
  .g-actions{flex-direction:row;justify-content:center;flex-wrap:wrap;}
  .g-actions .btn{width:auto;max-width:none;}
  .g-summary{flex-direction:row;text-align:left;gap:16px;padding:18px 24px;}
  .g-summary .g-meta{text-align:left;}
  .g-summary .g-link{margin-left:auto;}
  .profile-cta{flex-direction:row;align-items:center;justify-content:space-between;text-align:left;padding:24px;}
  .profile-body h1{font-size:30px;}
  .cta-strip .wrap{flex-direction:row;align-items:center;justify-content:space-between;text-align:left;
    padding-top:44px;padding-bottom:44px;}
  .cta-strip h2{font-size:26px;}
  .foot-grid{grid-template-columns:1fr 1fr;gap:32px;}
  .foot-bottom{flex-direction:row;justify-content:space-between;text-align:left;}
  .about-visual img{aspect-ratio:16/11;}
  .fab-wa{right:22px;bottom:calc(22px + var(--safe-b));width:56px;height:56px;}
  /* emergency pill regains its label */
  .nav-emer{width:auto;height:auto;gap:7px;padding:11px 17px;border-radius:100px;}
  .nav-emer .emer-label{display:inline;}
  .nav-emer .mi{width:15px;height:15px;}
}

/* ============================================================
   ≥ 1020px — desktop
   ============================================================ */
@media(min-width:1020px){
  :root{--gutter:28px;}
  .section{padding:84px 0;}
  .sec-title{font-size:36px;}
  .sec-lead{font-size:17px;}
  .eyebrow{font-size:13px;margin-bottom:12px;}
  .grid-3{grid-template-columns:repeat(3,1fr);gap:20px;}
  .grid-4{grid-template-columns:repeat(4,1fr);gap:18px;}
  .grid-2,.gallery{gap:20px;}
  .logo img{height:62px;}
  .footer .logo img{height:66px;padding:8px 12px;}
  .nav-in{padding:9px 28px;}
  .nav-links{display:flex;gap:24px;align-items:center;}
  .nav-links a{font-size:14.5px;font-weight:500;color:var(--muted);transition:color .15s;white-space:nowrap;
    padding:4px 0;border-bottom:2px solid transparent;}
  .nav-links a:hover{color:var(--brand);}
  .nav-links a.active{color:var(--brand);border-bottom-color:var(--brand);}
  .hamburger{display:none;}
  .mmenu{display:none!important;}
  .page-head{padding:58px 0 54px;}
  .page-head h1{font-size:40px;}
  .page-head p{font-size:16.5px;}
  .hero-in{grid-template-columns:1.08fr .92fr;gap:46px;padding:74px 28px 84px;}
  .hero-visual{order:0;}
  .hero h1{font-size:53px;}
  .hero-sub{font-size:17.5px;margin-bottom:30px;}
  .hero-badge{font-size:12.5px;margin-bottom:22px;}
  .hero-photo img{height:100%;object-fit:cover;aspect-ratio:4/4.6;}
  .hero-photo{border-radius:24px;box-shadow:0 30px 70px rgba(var(--shadow),.18);}
  .hero-tag{left:18px;bottom:18px;padding:12px 16px;border-radius:15px;}
  .hero-tag .ic{width:40px;height:40px;}
  .hero-tag b{font-size:14px;}
  .hero-tag span{font-size:12px;}
  .trustbar-in{grid-template-columns:repeat(4,1fr);padding:34px 28px;}
  .tb .ic{width:46px;height:46px;}
  .tb h3{font-size:16px;}
  .about-grid{grid-template-columns:1fr 1fr;gap:50px;}
  .about-visual img{aspect-ratio:auto;min-height:380px;}
  .about-pt h3{font-size:16px;}
  .about-pt p{font-size:14px;}
  .card{padding:26px;}
  .card h3,.card h2{font-size:18.5px;}
  .svc{padding:18px 20px;}
  .svc h3{font-size:16px;}
  .svc p{font-size:13px;}
  .doc{padding:26px;}
  .doc-av{width:104px;height:104px;font-size:30px;}
  .doc h3{font-size:18px;}
  .appt-grid{grid-template-columns:1fr 1.1fr;gap:50px;}
  .appt-form{padding:30px;border-radius:22px;}
  .contact-grid{grid-template-columns:1fr 1.15fr;gap:26px;}
  .map-wrap,.map-wrap iframe{min-height:380px;}
  .profile-grid{grid-template-columns:340px 1fr;gap:44px;}
  .profile-card{position:sticky;top:88px;padding:28px;}
  .profile-photo{width:190px;height:190px;font-size:52px;}
  .profile-body h1{font-size:34px;}
  .profile-body h2{font-size:21px;margin:30px 0 12px;}
  .profile-body p{font-size:15.5px;}
  .profile-body .qual-line{font-size:15.5px;}
  .foot-grid{grid-template-columns:1.4fr 1fr 1fr 1.3fr;gap:36px;padding-bottom:44px;}
  .footer{padding-top:64px;}
  .fac{padding:20px;}
  .gal-item figcaption{padding:13px 18px;font-size:14px;}
  /* hover lifts only where there's a real cursor */
  .card:hover{transform:translateY(-5px);box-shadow:0 20px 46px rgba(var(--shadow),.12);
    border-color:color-mix(in srgb,var(--brand) 35%,var(--border));}
  .svc:hover{transform:translateY(-3px);box-shadow:0 14px 32px rgba(var(--shadow),.1);
    border-color:color-mix(in srgb,var(--navy) 30%,var(--border));}
  .doc:hover{transform:translateY(-5px);box-shadow:0 22px 48px rgba(var(--shadow),.13);
    border-color:color-mix(in srgb,var(--brand) 35%,var(--border));}
  .doc:hover .view-link .mi{transform:translateX(3px);}
  .fac:hover{transform:translateY(-3px);box-shadow:0 14px 32px rgba(var(--shadow),.1);}
  .gal-item:hover img{transform:scale(1.03);}
  .cc a:hover{text-decoration:underline;}
}

/* home page: 4 doctors sit 2×2 on tablet, 4-across on desktop */
@media(min-width:1020px){ .doc-grid{grid-template-columns:repeat(4,1fr);} }

/* ============================================================
   KNOW YOUR DOCTORS — department carousels (mobile-first)
   ============================================================ */
.kyd-intro{margin-bottom:6px;}
.kyd-depts{display:flex;flex-direction:column;gap:34px;margin-top:26px;}
.kyd-row{display:flex;flex-direction:column;gap:34px;}
.kyd-dept{width:100%;}
.kyd-dept-head{display:flex;align-items:center;justify-content:center;gap:12px;margin-bottom:16px;text-align:center;}
.kyd-dept-ic{width:44px;height:44px;border-radius:13px;background:var(--grad);color:#fff;display:flex;
  align-items:center;justify-content:center;flex-shrink:0;box-shadow:0 8px 20px rgba(var(--shadow),.18);}
.kyd-dept-ic .mi{width:22px;height:22px;}
.kyd-dept-head h3{font-size:17px;font-weight:700;line-height:1.25;font-family:'Poppins',sans-serif;letter-spacing:-.01em;}
.kyd-hint{display:flex;align-items:center;justify-content:center;gap:5px;font-size:11.5px;font-weight:600;
  color:var(--brand);white-space:nowrap;opacity:.85;margin-top:2px;}
.kyd-hint .mi{width:14px;height:14px;}

/* the swipeable track */
.kyd-track{display:flex;gap:15px;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
  scroll-padding:2px;padding:3px 2px 14px;scrollbar-width:thin;scrollbar-color:var(--border) transparent;
  justify-content:center;}
.kyd-track--multi{justify-content:flex-start;}
.kyd-track::-webkit-scrollbar{height:6px;}
.kyd-track::-webkit-scrollbar-thumb{background:var(--border);border-radius:100px;}
.kyd-track::-webkit-scrollbar-track{background:transparent;}

.kyd-card{flex:0 0 auto;width:min(84%,320px);scroll-snap-align:start;background:var(--surface);
  border:1px solid var(--border);border-radius:20px;padding:26px 22px 22px;text-align:center;
  display:flex;flex-direction:column;position:relative;overflow:hidden;
  transition:transform .18s,box-shadow .18s,border-color .18s;}
.kyd-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:var(--grad);}
.kyd-av-ring{position:relative;width:max-content;margin:6px auto 15px;}
.kyd-av-ring::after{content:'';position:absolute;inset:-6px;border-radius:50%;
  border:2px dashed color-mix(in srgb,var(--brand) 40%,transparent);}
.kyd-av{width:112px;height:112px;border-radius:50%;overflow:hidden;background:var(--grad);display:flex;
  align-items:center;justify-content:center;}
.kyd-av img{width:100%;height:100%;object-fit:cover;object-position:top center;}
.kyd-initials{font-family:'Poppins',sans-serif;font-weight:700;font-size:34px;color:#fff;}
.kyd-card h4{font-size:18px;font-weight:700;margin-bottom:4px;letter-spacing:-.01em;}
.kyd-qual{font-size:12.5px;color:var(--muted);margin-bottom:10px;line-height:1.45;}
.kyd-spec{display:inline-block;font-size:12px;font-weight:600;color:var(--brand);background:var(--brand-soft);
  padding:5px 14px;border-radius:100px;margin:0 auto;line-height:1.35;}
.kyd-meta{display:flex;flex-direction:column;gap:7px;margin-top:16px;padding-top:14px;border-top:1px solid var(--border);}
.kyd-meta span{display:inline-flex;align-items:center;justify-content:center;gap:7px;font-size:12.5px;color:var(--muted);
  line-height:1.4;flex-wrap:wrap;}
.kyd-meta span .mi{width:15px;height:15px;color:var(--brand);flex-shrink:0;}
.kyd-link{display:inline-flex;align-items:center;justify-content:center;gap:6px;margin-top:16px;
  font-size:13.5px;font-weight:600;color:var(--brand);min-height:44px;}
.kyd-link .mi{width:14px;height:14px;transition:transform .15s;}
/* placeholder (credentials pending) */
.kyd-card--soon .kyd-av{background:linear-gradient(135deg,#B9AEC0,#8A7E96);}
html[data-theme="dark"] .kyd-card--soon .kyd-av{background:linear-gradient(135deg,#3A3444,#2A2533);}
.kyd-soon{display:inline-flex;align-items:center;justify-content:center;gap:7px;font-size:12.5px;font-style:italic;
  color:var(--muted);margin:14px 0 4px;padding-top:14px;border-top:1px dashed var(--border);}
.kyd-soon .mi{width:15px;height:15px;color:var(--brand);}
.kyd-cta{display:inline-flex;align-items:center;justify-content:center;gap:7px;margin-top:14px;
  background:#25D366;color:#fff;font-weight:600;font-size:13px;padding:11px 16px;border-radius:100px;min-height:44px;}
.kyd-cta .mi{width:15px;height:15px;}
.kyd-cta:hover{filter:brightness(1.04);}
.kyd-foot{margin:36px auto 0;}

/* slide-in-from-right reveal to reinforce the swipe motif */
.kyd-card.reveal{opacity:0;transform:translateX(30px);transition:opacity .5s ease,transform .5s ease;}
.kyd-card.reveal.in{opacity:1;transform:none;}
.kyd-track .kyd-card:nth-child(2).reveal{transition-delay:.08s;}
@media (prefers-reduced-motion:reduce){
  .kyd-card.reveal{opacity:1;transform:none;transition:none;}
}

@media(min-width:600px){
  .kyd-dept-head h3{font-size:19px;}
  .kyd-card{width:min(58%,320px);}
}

@media(min-width:1020px){
  .kyd-depts{gap:52px;margin-top:34px;}
  .kyd-row--2{flex-direction:row;justify-content:center;gap:40px;align-items:flex-start;}
  .kyd-row--2 .kyd-dept{flex:1 1 0;max-width:400px;}
  .kyd-dept-head{gap:14px;margin-bottom:20px;}
  .kyd-dept-ic{width:50px;height:50px;border-radius:14px;}
  .kyd-dept-ic .mi{width:25px;height:25px;}
  .kyd-dept-head h3{font-size:23px;}
  .kyd-hint{display:none;}
  /* desktop: no scrolling — cards sit side by side, centered under the heading */
  .kyd-track{overflow:visible;flex-wrap:wrap;gap:22px;padding:0;scroll-snap-type:none;justify-content:center;}
  .kyd-track--multi{justify-content:center;}
  .kyd-card{width:340px;flex:0 0 340px;padding:30px 26px 26px;}
  .kyd-card:hover{transform:translateY(-6px);box-shadow:0 24px 50px rgba(var(--shadow),.14);
    border-color:color-mix(in srgb,var(--brand) 35%,var(--border));}
  .kyd-card:hover .kyd-link .mi{transform:translateX(3px);}
  .kyd-av{width:120px;height:120px;}
  .kyd-initials{font-size:38px;}
  .kyd-card h4{font-size:19.5px;}
}

/* ============================================================
   KNOW YOUR EXPERT DOCTORS — stacked per-department carousels
   Each department is its own row; profiles auto-rotate one at a
   time (slide-in). Everything centred.
   ============================================================ */
.depts{display:flex;flex-direction:column;gap:36px;margin-top:26px;}
.dept{width:100%;}
.dept-head{display:flex;align-items:center;justify-content:center;gap:12px;margin-bottom:18px;text-align:center;}
.dept-ic{width:44px;height:44px;border-radius:13px;background:var(--grad);color:#fff;display:flex;
  align-items:center;justify-content:center;flex-shrink:0;box-shadow:0 8px 20px rgba(var(--shadow),.18);}
.dept-ic .mi{width:22px;height:22px;}
.dept-head h3{font-size:17px;font-weight:700;line-height:1.25;font-family:'Poppins',sans-serif;letter-spacing:-.01em;}
.dept-carousel{position:relative;}
.dept-cards{position:relative;display:flex;justify-content:center;}
.dept-cards .kyd-card{display:none;width:min(92%,340px);}
.dept-cards .kyd-card.is-current{display:flex;animation:kycSlide .45s ease;}
@keyframes kycSlide{from{opacity:0;transform:translateX(30px);}to{opacity:1;transform:none;}}
.dept-dots{display:flex;justify-content:center;gap:9px;margin-top:16px;}
.dept-dot{width:9px;height:9px;padding:0;border:none;border-radius:50%;background:var(--border);cursor:pointer;
  transition:background .2s,transform .2s;}
.dept-dot:hover{background:color-mix(in srgb,var(--brand) 50%,var(--border));}
.dept-dot.is-active{background:var(--brand);transform:scale(1.3);}
@media(prefers-reduced-motion:reduce){
  .dept-cards .kyd-card.is-current{animation:none;}
}
@media(min-width:1020px){
  .depts{gap:52px;margin-top:34px;}
  .dept-head{gap:14px;margin-bottom:22px;}
  .dept-ic{width:50px;height:50px;border-radius:14px;}
  .dept-ic .mi{width:25px;height:25px;}
  .dept-head h3{font-size:23px;}
  .dept-cards .kyd-card{width:360px;}
}

/* ---------- POSTGRADUATE QUALIFICATION BADGE (profile pages) ---------- */
.pg-badge{display:flex;align-items:flex-start;gap:10px;margin:0 0 24px;padding:12px 16px;border-radius:14px;
  background:var(--grad-soft);border:1px solid var(--border);font-size:14.5px;line-height:1.5;color:var(--text);}
.pg-badge .mi{width:20px;height:20px;color:var(--brand);flex-shrink:0;margin-top:2px;}
.pg-badge b{font-weight:700;}
@media(min-width:1020px){ .pg-badge{font-size:15px;} }

/* ============================================================
   BLOG — index grid, cards, post layout, home carousel
   ============================================================ */
.blog-grid{display:grid;grid-template-columns:1fr;gap:26px;}
@media(min-width:640px){ .blog-grid{grid-template-columns:repeat(2,1fr);} }
@media(min-width:1020px){ .blog-grid{grid-template-columns:repeat(3,1fr);gap:30px;} }
.blog-card{display:flex;flex-direction:column;background:var(--surface);border:1px solid var(--border);
  border-radius:18px;overflow:hidden;transition:transform .2s,box-shadow .2s,border-color .2s;}
.blog-card:hover{transform:translateY(-5px);box-shadow:0 22px 46px rgba(var(--shadow),.13);
  border-color:color-mix(in srgb,var(--brand) 30%,var(--border));}
.blog-thumb{display:block;aspect-ratio:1200/630;overflow:hidden;background:var(--grad-soft);}
.blog-thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.blog-body{padding:20px 22px 22px;display:flex;flex-direction:column;flex:1;}
.blog-cat{display:block;font-size:12.5px;font-weight:700;color:var(--brand);
  text-transform:uppercase;letter-spacing:.4px;margin-bottom:10px;}
.blog-cat .mi{width:16px;height:16px;display:inline-block;vertical-align:-3px;margin-right:6px;}
.blog-card h3{font-family:'Poppins',sans-serif;font-size:18.5px;font-weight:700;line-height:1.3;margin-bottom:9px;letter-spacing:-.01em;}
.blog-card h3 a{color:var(--text);text-decoration:none;}
.blog-card h3 a:hover{color:var(--brand);}
.blog-card p{font-size:14.5px;color:var(--muted);line-height:1.6;margin-bottom:16px;flex:1;}
.blog-meta{font-size:12.5px;color:var(--muted);margin-bottom:14px;}
.blog-meta span{margin-right:7px;}
.blog-more{display:inline-block;font-weight:600;font-size:14px;color:var(--brand);text-decoration:none;}
.blog-more .mi{width:16px;height:16px;display:inline-block;vertical-align:-3px;margin-left:5px;transition:transform .2s;}
.blog-card:hover .blog-more .mi{transform:translateX(3px);}

/* post page */
.post-cat{display:inline-block;font-size:13px;font-weight:700;color:#fff;text-transform:uppercase;
  letter-spacing:.5px;margin-bottom:14px;background:rgba(255,255,255,.16);
  padding:7px 15px;border-radius:100px;}
.post-cat .mi{width:18px;height:18px;display:inline-block;vertical-align:-4px;margin-right:7px;}
.post-meta{color:var(--muted);font-size:14px;margin-top:6px;}
.post-wrap{max-width:820px;}
.post-hero{margin:30px 0 8px;border-radius:20px;overflow:hidden;box-shadow:0 18px 44px rgba(var(--shadow),.14);}
.post-hero img{width:100%;height:auto;display:block;}
.post-content{padding:22px 0 8px;font-size:16.5px;line-height:1.75;color:var(--text);}
.post-content h2{font-family:'Poppins',sans-serif;font-size:23px;font-weight:700;margin:30px 0 12px;letter-spacing:-.01em;}
.post-content p{margin-bottom:16px;}
.post-content ul,.post-content ol{margin:0 0 16px 22px;}
.post-content li{margin-bottom:8px;}
.post-content b{font-weight:700;}
.post-cta{margin:34px 0 20px;padding:26px;border-radius:18px;background:var(--grad);color:#fff;
  display:flex;flex-wrap:wrap;gap:18px;align-items:center;justify-content:space-between;}
.post-cta h3{font-family:'Poppins',sans-serif;font-size:20px;font-weight:700;margin-bottom:4px;}
.post-cta p{margin:0;opacity:.92;font-size:14.5px;}
.post-cta .btn-row{display:flex;flex-wrap:wrap;gap:12px;}
.post-cta .btn-wa{background:#fff;color:var(--brand);}
.post-cta .btn-outline{background:transparent;border:1.5px solid rgba(255,255,255,.7);color:#fff;}
.post-cta .btn-outline:hover{background:rgba(255,255,255,.16);border-color:#fff;}
.post-disclaimer{font-size:13px;color:var(--muted);background:var(--surface-2);border:1px solid var(--border);
  border-radius:12px;padding:14px 16px;line-height:1.6;margin-top:8px;}

/* home blog carousel */
.bcar{overflow:hidden;}
.bcar-track{display:flex;gap:22px;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
  scrollbar-width:none;padding:6px 2px 16px;}
.bcar-track::-webkit-scrollbar{display:none;}
.bcar-track .blog-card{flex:0 0 86%;scroll-snap-align:center;}
@media(min-width:640px){ .bcar-track .blog-card{flex-basis:46%;} }
@media(min-width:1020px){ .bcar-track .blog-card{flex-basis:31.5%;} }
