/* =====================================================
   CLINISHARE — Main Stylesheet
   Header, Navbar & Footer live in components/ (Tailwind).
   ===================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --ink: #1c1c1e;
  --ink-soft: #3a3a3c;
  --muted: #8a8a8e;
  --muted-2: #a8a8ad;
  --line: #e8e8ec;
  --line-2: #e0e0e5;
  --bg: #ffffff;
  --bg-soft: #f6f6f8;
  --bg-card: #ffffff;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 6px 20px rgba(0,0,0,.06);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 3px 10px rgba(0,0,0,.04);
  --radius: 10px;
  --radius-sm: 8px;
  --maxw: 1120px;
  --display: 'Poppins', sans-serif;
  --body: 'Inter', sans-serif;
}

/* ---------- DARK MODE ---------- */
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f2f2f7;
    --ink-soft: #d1d1d6;
    --muted: #8a8a8e;
    --muted-2: #636366;
    --line: #2c2c2e;
    --line-2: #3a3a3c;
    --bg: #1c1c1e;
    --bg-soft: #2c2c2e;
    --bg-card: #2c2c2e;
    --shadow: 0 1px 2px rgba(0,0,0,.2), 0 6px 20px rgba(0,0,0,.28);
    --shadow-sm: 0 1px 2px rgba(0,0,0,.15), 0 3px 10px rgba(0,0,0,.18);
  }
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  transition: background 0.3s ease, color 0.3s ease;
  overflow-x: clip;
}
h1, h2, h3, h4 { font-family: var(--display); margin: 0; line-height: 1.18; letter-spacing: -.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Custom elements render block */
app-header { display: block; position: sticky; top: 0; z-index: 60; }
app-footer { display: block; }

/* ---------- NAVBAR SCROLL SHADOW ---------- */
header[data-scrolled="true"] { box-shadow: 0 1px 18px rgba(0,0,0,.09); }
@media (prefers-color-scheme: dark) {
  header[data-scrolled="true"] { box-shadow: 0 1px 18px rgba(0,0,0,.35); }
}

/* ---------- HAMBURGER OPEN ANIMATION ---------- */
#hamburger[data-open="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger[data-open="true"] span:nth-child(2) { opacity: 0; }
#hamburger[data-open="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- LAYOUT HELPERS ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow { font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.section-title { font-size: 30px; font-weight: 600; }
.section-sub { color: var(--muted); font-size: 14.5px; margin-top: 8px; }
.center { text-align: center; }
.learn { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--ink-soft); margin-top: auto; }
.learn svg, .learn i { transition: transform 0.2s ease; }

/* ---------- BUTTONS ---------- */
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff;
  font-family: var(--body); font-weight: 500; font-size: 14px;
  border: none; border-radius: var(--radius-sm);
  padding: 11px 20px; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-dark:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
@media (prefers-color-scheme: dark) {
  .btn-dark { color: var(--bg); }
  .btn-dark:hover { background: #e8e8ed; }
}

.btn-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink);
  font-family: var(--body); font-weight: 500; font-size: 14px;
  border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 11px 20px; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-light:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
@media (prefers-color-scheme: dark) {
  .btn-light { color: #1c1c1e; }
}

/* ---------- SECTION RHYTHM ----------
   All sections share the same background (--bg).
   A single border-b line is the only separator.
   ------------------------------------------ */
section {
  /* border-bottom: 1px solid var(--line);  */
  background: var(--bg);
}

/* Inner pages (solutions, locations): sections get default vertical padding.
   Sections with explicit inline style="padding:..." override this. */
.inner-page section { padding: 72px 0; }

/* ---------- HERO ---------- */
.hero {
  position: relative; 
  min-height: 88vh;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden;
  border-bottom: none;
}
.hero-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: url("https://aartas-com.s3.ap-south-1.amazonaws.com/clinishare-uploads/static/hero_banner.avif");
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 0 24px; }
.hero h1 { font-size: 46px; font-weight: 600; text-shadow: 0 2px 18px rgba(0,0,0,.3); }
.hero p { margin: 16px auto 26px; font-size: 15px; max-width: 430px; color: rgba(255,255,255,.92); }
.pause {
  position: absolute; right: 24px; bottom: 20px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center; z-index: 2;
}

/* ---------- FEATURE STRIP ---------- */
.features { padding: 42px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feat { text-align: center; }
.feat .ic {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; box-shadow: var(--shadow-sm);
}
.feat h4 { font-size: 14.5px; font-weight: 600; margin-bottom: 6px; }
.feat p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ---------- SOLUTIONS ---------- */
.solutions { padding: 64px 0; }
.sol-layout { display: grid; grid-template-columns: .85fr 2.6fr; gap: 40px; align-items: start; }
.sol-head .section-title { font-size: 26px; }
.sol-head p { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 230px; }
.sol-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sol-cards--three { grid-template-columns: repeat(3, 1fr); }
.sol-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 18px;
  display: flex; flex-direction: column; min-height: 200px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sol-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.sol-card .ic {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--bg-soft); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.sol-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.sol-card p { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.sol-card:hover .learn svg, .sol-card:hover .learn i { transform: translateX(3px); }

/* ---------- CAROUSEL ---------- */
.carousel { position: relative; }
.track-mask { overflow: hidden; }
.track { display: flex; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.dots { display: flex; gap: 6px; justify-content: center; margin-top: 18px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--line-2); cursor: pointer; transition: all .2s; }
.dot.active { background: var(--ink); width: 16px; border-radius: 3px; }

/* ---------- TRUSTED ---------- */
.trusted { padding: 56px 0; }
.trusted .head { margin-bottom: 28px; }
.trusted .track { gap: 14px; padding: 4px 2px 8px; }
.doc-card {
  flex: 0 0 calc((100% - 4*14px)/5);
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 12px 16px; text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.doc-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.doc-avatar {
  position: relative;
  width: 60px; height: 60px; border-radius: 50%;
  margin: 0 auto 10px; background-size: cover; background-position: center top;
  border: 2px solid var(--bg); box-shadow: 0 0 0 1px var(--line-2);
}
.doc-card h4 { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.doc-card .spec { font-size: 11.5px; color: var(--muted); }
.doc-card .exp { font-size: 11px; color: var(--muted-2); margin-top: 5px; display: inline-flex; align-items: center; gap: 4px; }
.doc-card .exp b { font-weight: 600; color: var(--ink-soft); }
.doc-badge {
  position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; font-size: 9px; font-weight: 700; letter-spacing: .04em;
  padding: 2px 7px; border-radius: 20px;
  background: #1c1c1e; color: #fff;
}

/* Stats — clean divider row, no box styling */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 0;
}
.stat {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 24px;
}
.stat:not(:last-child) { border-right: 1px solid var(--line); }
.stat .ic {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--ink-soft);
}
.stat .num { font-family: var(--display); font-weight: 700; font-size: 22px; line-height: 1; }
.stat .lbl { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ---------- EVERYTHING YOU NEED ---------- */
.everything { padding: 70px 0; }
.ev-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 46px; align-items: center; }
.ev-collage { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; height: 340px; }
.ev-collage .big { grid-row: 1/3; border-radius: var(--radius); }
.ev-collage div { background-size: cover; background-position: center; border-radius: var(--radius); }
.ev-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 22px; }
.ev-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-soft); }
.ev-item .ic {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--bg-soft); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.everything .eyebrow { margin-bottom: 14px; display: block; }
.everything h2 { font-size: 28px; font-weight: 600; }
.everything .lead { color: var(--muted); font-size: 14.5px; margin-top: 12px; max-width: 380px; }

/* ---------- LOCATIONS ---------- */
.locations { padding: 56px 0; }
.locations .head { margin-bottom: 28px; }
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.loc-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease; cursor: pointer;
}
.loc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.loc-photo { height: 200px; background-size: cover; background-position: center; position: relative; }
.loc-photo .badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
  font-size: 11px; font-weight: 600; padding: 4px 9px;
  border-radius: 4px; color: #1c1c1e;
}
.loc-body { padding: 14px 16px 18px; }
.loc-body h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.loc-body .ct { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 5px; }

/* ---------- DESIGNED FOR CARE ---------- */
.designed { padding: 64px 0; }
.design-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  align-items: center; position: relative;
}
.design-img { height: 300px; border-radius: var(--radius-sm); background-size: cover; background-position: center; position: relative; overflow: hidden; }
.design-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform .2s ease;
}
.design-play:hover { transform: translate(-50%,-50%) scale(1.07); }
.design-play::before { content: ''; position: absolute; inset: -10px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5); }
.design-text { padding-right: 36px; }
.design-text .no { font-family: var(--display); font-size: 13px; color: var(--muted-2); font-weight: 600; margin-bottom: 10px; }
.design-text h3 { font-size: 24px; font-weight: 600; }
.design-text p { color: var(--muted); font-size: 14px; margin: 14px 0 20px; max-width: 330px; }

/* ---------- ECOSYSTEM ---------- */
.ecosystem { padding: 54px 0; }
.eco-logos { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-top: 28px; }
.eco-logo {
  font-family: var(--display); font-weight: 700; font-size: 20px;
  opacity: .85; letter-spacing: -.01em;
  display: flex; align-items: center; gap: 6px; filter: grayscale(.15);
}
.eco-logo small { font-family: var(--body); font-weight: 500; font-size: 9px; display: block; letter-spacing: .02em; opacity: .7; }

/* ---------- WHAT DOCTORS SAY ---------- */
.says { padding: 60px 0; }
.says .head { margin-bottom: 28px; }
.says .track { gap: 20px; }
.say-card {
  flex: 0 0 calc((100% - 20px)/2);
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 360px; background-size: cover; background-position: center top;
  border: 1px solid var(--line); transition: box-shadow .2s ease; cursor: pointer;
}
.say-card:hover { box-shadow: var(--shadow); }
.say-card:hover .say-play { transform: translate(-50%,-50%) scale(1.06); }
.say-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,.1) 0%, transparent 35%, transparent 50%, rgba(20,16,12,.76) 100%);
}
.say-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 3; box-shadow: 0 6px 20px rgba(0,0,0,.26);
  transition: transform .2s ease;
}
.say-play::before { content: ''; position: absolute; inset: -10px; border-radius: 50%; border: 2px solid rgba(255,255,255,.46); }
.say-badge {
  position: absolute; top: 12px; right: 12px; z-index: 4;
  font-size: 9px; font-weight: 700; letter-spacing: .04em;
  padding: 3px 9px; border-radius: 20px;
  background: rgba(255,255,255,.92); color: #1c1c1e;
}
.say-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 16px 20px 18px; color: #fff; }
.say-overlay h4 { font-size: 15px; font-weight: 600; line-height: 1.2; }
.say-overlay .spec { font-size: 12px; color: rgba(255,255,255,.8); margin-top: 3px; }
.say-quote { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.88); margin-bottom: 10px; font-style: italic; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- INSIGHTS ---------- */
.insights { padding: 64px 0; }
.ins-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.ins-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ins-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease; cursor: pointer;
}
.ins-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.ins-img { height: 130px; background-size: cover; background-position: center; }
.ins-body { padding: 14px 16px 16px; }
.ins-tag { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.ins-body h4 { font-size: 14px; font-weight: 600; margin: 7px 0 12px; line-height: 1.35; }

/* ---------- CTA ---------- */
.cta { padding: 54px 0 64px; border-bottom: none; }
.cta-band {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); text-align: center; padding: 46px 24px;
}
.cta-band h2 { font-size: 28px; font-weight: 600; }
.cta-band p { color: var(--muted); font-size: 14.5px; margin: 10px 0 22px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .features-grid, .sol-cards, .sol-cards--three, .loc-grid, .ins-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-layout, .ev-layout, .design-card { grid-template-columns: 1fr; }
  .design-text { padding-right: 0; }
  .design-img { height: 220px; }
  .doc-card { flex: 0 0 calc((100% - 14px)/2); }
  .say-card { flex: 0 0 100%; }
  .hero h1 { font-size: 34px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--line); padding-top: 22px; }
  .stat:nth-child(4) { border-top: 1px solid var(--line); border-right: none; padding-top: 22px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .features-grid, .sol-cards, .sol-cards--three, .loc-grid, .ins-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(odd) { padding-left: 0; }
  .say-card { height: 290px; }
  .ev-list { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .hero { height: 370px; }
  .section-title { font-size: 23px; }
  .ev-collage { height: 250px; }
  .ins-head { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  *, [data-aos] { transition: none !important; animation: none !important; scroll-behavior: auto; }
}

/* ── Contact page ── */
.contact-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 9px;
  border: 1.5px solid var(--line-2);
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  transition: border-color .15s;
}
.contact-input:focus { border-color: var(--ink); }
.contact-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  font-family: inherit;
  gap: 16px;
}
.faq-body { display: none; padding-bottom: 18px; font-size: 14px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-body { display: block; }
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-chev { transition: transform .2s ease; flex-shrink: 0; color: var(--muted); }

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- LOADING SKELETONS ---------- */
@keyframes sk-shimmer {
  0%   { background-position: -600px 0 }
  100% { background-position:  600px 0 }
}
.skel {
  background: linear-gradient(90deg, var(--bg-soft) 25%, var(--line-2) 50%, var(--bg-soft) 75%);
  background-size: 1200px 100%;
  animation: sk-shimmer 1.5s ease-in-out infinite;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  .skel { animation: none; }
}

/* ---- Post page specific styles ---- */

/* Hero banner */
.post-hero {
  height: 380px; position: relative;
  background-size: cover; background-position: center;
}
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,10,.18) 0%, rgba(20,15,10,.62) 100%);
}
.post-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: rgba(255,255,255,.72);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.72); transition: color .15s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { opacity: .55; flex-shrink: 0; }

/* Post title */
.post-hero h1 {
  font-size: 32px; font-weight: 600; color: #fff;
  max-width: 680px; line-height: 1.22;
  text-shadow: 0 2px 16px rgba(0,0,0,.28);
}

/* Meta row */
.post-meta {
  display: flex; align-items: center; gap: 18px;
  margin-top: 14px; flex-wrap: wrap;
}
.post-tag {
  font-size: 10.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: #fff;
  padding: 3px 9px; border-radius: 4px;
  background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.3);
}
.post-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: rgba(255,255,255,.8);
}

/* Layout */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 52px;
  padding: 56px 0 80px;
  align-items: start;
}

/* Article body */
.post-body { min-width: 0; }
.post-author-row {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 24px; margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.post-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background-size: cover; background-position: center top;
  border: 2px solid var(--bg); box-shadow: 0 0 0 1.5px var(--line-2);
  flex-shrink: 0;
}
.post-author-name { font-size: 14px; font-weight: 600; }
.post-author-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Article typography */
.post-content { font-size: 15px; line-height: 1.75; color: var(--ink-soft); }
.post-content p { margin-bottom: 20px; }
.post-content h2 {
  font-family: var(--display); font-size: 20px; font-weight: 600;
  color: var(--ink); margin: 36px 0 14px; line-height: 1.25;
}
.post-content h2:first-child { margin-top: 0; }

/* Share row */
.post-share {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 0; margin-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: var(--radius-sm);
  border: 1px solid var(--line-2); background: var(--bg-soft);
  font-size: 12.5px; font-weight: 500; color: var(--ink-soft);
  cursor: pointer; transition: all .15s ease;
}
.share-btn:hover { border-color: var(--ink); color: var(--ink); }

/* Sidebar */
.post-sidebar { position: sticky; top: 88px; }
.sidebar-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
  margin-bottom: 18px;
}
.sidebar-card h4 { font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.sidebar-related-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 11px 0; border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit;
  transition: color .15s;
}
.sidebar-related-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-related-item:hover h5 { color: var(--ink); }
.sidebar-related-item h5 { font-size: 13px; font-weight: 500; line-height: 1.35; color: var(--ink-soft); transition: color .15s; }
.sidebar-related-item span { font-size: 11px; color: var(--muted); }

.sidebar-cta {
  background: var(--ink); border-radius: var(--radius); padding: 22px;
  text-align: center; color: #fff;
}
.sidebar-cta h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.sidebar-cta p { font-size: 12.5px; opacity: .8; margin-bottom: 16px; line-height: 1.55; }
.sidebar-cta button {
  width: 100%; padding: 10px; border-radius: 8px;
  background: #fff; color: var(--ink);
  font-size: 13.5px; font-weight: 600; border: none; cursor: pointer;
  transition: opacity .15s;
}
.sidebar-cta button:hover { opacity: .9; }

/* More posts */
.more-posts { padding: 56px 0 80px; border-top: 1px solid var(--line); }
.more-posts-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.more-posts-head h2 { font-size: 22px; font-weight: 600; }
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Reuse blog card styles from index */
.blog-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none; color: inherit;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card-img { height: 160px; background-size: cover; background-position: center; }
.blog-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.blog-card-tag {
  font-size: 10.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .07em; color: var(--muted);
  padding: 3px 8px; border-radius: 4px;
  background: var(--bg-soft); border: 1px solid var(--line-2);
}
.blog-card-date { font-size: 12px; color: var(--muted-2); }
.blog-card h3 { font-size: 14.5px; font-weight: 600; line-height: 1.35; margin-bottom: 8px; }
.blog-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; flex: 1; }
.blog-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line);
}
.blog-card-author { font-size: 12px; color: var(--ink-soft); font-weight: 500; }
.blog-card-read { font-size: 12px; color: var(--muted); }

/* Not found */
.post-not-found { text-align: center; padding: 100px 20px; }
.post-not-found h2 { font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.post-not-found p { color: var(--muted); font-size: 14px; margin-bottom: 24px; }

@media (max-width: 860px) {
  .post-layout { grid-template-columns: 1fr; gap: 36px; }
  .post-sidebar { position: static; }
  .post-hero h1 { font-size: 24px; }
  .more-grid { grid-template-columns: repeat(2, 1fr); }
  .post-hero { height: 300px; }
}
@media (max-width: 560px) {
  .more-grid { grid-template-columns: 1fr; }
  .post-hero h1 { font-size: 20px; }
  .post-hero { height: 260px; }
}

/* ── Center page ── */
.center-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.center-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1520 0%, #16304a 40%, #0c2038 100%);
}
.center-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.1) 100%);
}
.center-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 56px;
}
.center-subnav {
  position: sticky;
  top: 68px;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.subnav-link {
  display: inline-block;
  padding: 14px 0;
  margin-right: 28px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.subnav-link:hover, .subnav-link.active { color: var(--ink); border-color: var(--ink); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 200px;
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-grid .g1 { grid-column: 1 / 7; grid-row: 1 / 3; }
.gallery-grid .g2 { grid-column: 7 / 10; grid-row: 1; }
.gallery-grid .g3 { grid-column: 10 / 13; grid-row: 1; }
.gallery-grid .g4 { grid-column: 7 / 10; grid-row: 2; }
.gallery-grid .g5 { grid-column: 10 / 13; grid-row: 2; position: relative; }
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.gallery-more-overlay:hover { background: rgba(0,0,0,.42); }
.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #0a1520;
}
.video-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  transition: transform .4s ease;
}
.video-card:hover .video-card-thumb { transform: scale(1.03); }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.28);
  transition: background .2s;
}
.video-card:hover .video-play-btn { background: rgba(0,0,0,.18); }
.play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  transition: transform .2s;
}
.video-card:hover .play-icon { transform: scale(1.08); }
.space-tab { padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 500; border: 1.5px solid var(--line-2); cursor: pointer; background: transparent; color: var(--muted); transition: all .15s; font-family: inherit; white-space: nowrap; }
.space-tab.active, .space-tab:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.amen-item { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 9px; border: 1px solid var(--line); font-size: 13.5px; color: var(--ink); font-weight: 500; }
.amen-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--bg-soft); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-video { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg); }
.ph { display: block; width: 100%; height: 100%; }
.ph-1 { background: linear-gradient(135deg,#0d1d30 0%,#1e3a58 100%); }
.ph-2 { background: linear-gradient(135deg,#0e2030 0%,#1a3248 100%); }
.ph-3 { background: linear-gradient(135deg,#12243a 0%,#1c3050 100%); }
.ph-4 { background: linear-gradient(135deg,#0a1828 0%,#162840 100%); }
.ph-5 { background: linear-gradient(135deg,#0c1e2e 0%,#182c42 100%); }
.ph-room { background: linear-gradient(135deg,#101c2c 0%,#1c3248 100%); }
.ph-wait { background: linear-gradient(135deg,#141e10 0%,#243820 100%); }
.ph-lounge { background: linear-gradient(135deg,#1e1808 0%,#382e14 100%); }
.ph-desk  { background: linear-gradient(135deg,#180d20 0%,#2c1838 100%); }
.ph-tv-1 { background: linear-gradient(135deg,#0a1520 0%,#162d40 100%); }
.ph-tv-2 { background: linear-gradient(135deg,#101a14 0%,#1e3022 100%); }
.ph-tv-3 { background: linear-gradient(135deg,#1a1010 0%,#321e1e 100%); }
