/* =============================================================
   GSK Redesign — Template Styles (page.php + single.php)
   Append to or @import from main style.css
   ============================================================= */

/* ============================================================
   SHARED — PAGE HERO (used by both page.php and about-style pages)
   ============================================================ */
.gsk-page-hero {
  position: relative;
  background: var(--sky2);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
}
.gsk-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: .22;
}
/* Geometric colour blocks */
.gsk-page-hero-geo { position: absolute; inset: 0; }
.gsk-geo-sky {
  position: absolute; top: 0; left: 0;
  width: 55%; height: 100%;
  background: var(--sky2);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}
.gsk-geo-crimson {
  position: absolute; top: 0; left: 38%;
  width: 38%; height: 100%;
  background: var(--crimson);
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
}
.gsk-geo-pink {
  position: absolute; top: 0; right: 0;
  width: 32%; height: 100%;
  background: var(--pink);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
.gsk-page-hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 5% 52px;
  width: 100%;
}
.gsk-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}
.gsk-breadcrumb a { color: rgba(255,255,255,.65); transition: color .2s; }
.gsk-breadcrumb a:hover { color: #fff; }
.gsk-breadcrumb .sep { color: rgba(255,255,255,.35); }
.gsk-breadcrumb .current { color: rgba(255,255,255,.9); }
.gsk-page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  max-width: 720px;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.gsk-page-hero h1 em { font-style: italic; color: rgba(255,255,255,.75); }
.gsk-hero-stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--sky) 0%, var(--crimson) 50%, var(--pink) 100%);
}

/* ============================================================
   PAGE.PHP — ABOUT US SPECIFIC SECTIONS
   ============================================================ */

/* Mission split */
.gsk-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.gsk-mission-visual { position: relative; overflow: hidden; }
.gsk-mission-visual img { width: 100%; height: 100%; object-fit: cover; }
.gsk-mission-badge {
  position: absolute;
  bottom: 32px; left: 32px;
  background: var(--crimson);
  color: #fff;
  padding: 16px 22px;
}
.gsk-mission-badge .big {
  display: block;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}
.gsk-mission-badge .small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}
.gsk-mission-body {
  background: var(--black);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gsk-mission-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
  display: block;
}
.gsk-mission-body h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.gsk-mission-body h2 span { color: var(--pink); }
.gsk-mission-body p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  margin-bottom: 16px;
}
.gsk-mission-body p:last-of-type { margin-bottom: 32px; }
.gsk-btn-sky-solid {
  display: inline-block;
  background: var(--sky);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 14px 28px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: background .2s;
  align-self: flex-start;
}
.gsk-btn-sky-solid:hover { background: var(--sky2); color: #fff; }

/* About stats band */
.gsk-stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.gsk-stat-cell {
  padding: 52px 28px;
  text-align: center;
  color: #fff;
  position: relative;
}
.gsk-stat-cell::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.2);
}
.gsk-stat-cell:last-child::after { display: none; }
.gsk-stat-cell:nth-child(1) { background: var(--sky); }
.gsk-stat-cell:nth-child(2) { background: var(--crimson); }
.gsk-stat-cell:nth-child(3) { background: var(--pink); }
.gsk-stat-cell:nth-child(4) { background: var(--sky2); }
.gsk-stat-cell .n {
  display: block;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.gsk-stat-cell .l {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .88;
}
.gsk-stat-cell .d {
  font-size: 13px;
  margin-top: 8px;
  opacity: .7;
  line-height: 1.4;
}

/* Timeline */
.gsk-story-sec { padding: 96px 5%; background: var(--off); }
.gsk-story-head { margin-bottom: 64px; }
.gsk-timeline { display: flex; flex-direction: column; }
.gsk-tl-item {
  display: grid;
  grid-template-columns: 120px 48px 1fr;
  align-items: stretch;
}
.gsk-tl-year {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 32px 24px 28px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}
.gsk-tl-item:nth-child(odd) .gsk-tl-year  { color: var(--sky2); }
.gsk-tl-item:nth-child(even) .gsk-tl-year { color: var(--crimson); }
.gsk-tl-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gsk-tl-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 33px;
  position: relative;
  z-index: 1;
}
.gsk-tl-item:nth-child(1) .gsk-tl-dot { background: var(--sky); }
.gsk-tl-item:nth-child(2) .gsk-tl-dot { background: var(--crimson); }
.gsk-tl-item:nth-child(3) .gsk-tl-dot { background: var(--pink); }
.gsk-tl-item:nth-child(4) .gsk-tl-dot { background: var(--sky2); }
.gsk-tl-item:nth-child(5) .gsk-tl-dot { background: var(--crimson); }
.gsk-tl-line {
  flex: 1;
  width: 3px;
  margin-top: 4px;
}
.gsk-tl-item:nth-child(1) .gsk-tl-line { background: linear-gradient(to bottom, var(--sky), var(--crimson)); }
.gsk-tl-item:nth-child(2) .gsk-tl-line { background: linear-gradient(to bottom, var(--crimson), var(--pink)); }
.gsk-tl-item:nth-child(3) .gsk-tl-line { background: linear-gradient(to bottom, var(--pink), var(--sky2)); }
.gsk-tl-item:nth-child(4) .gsk-tl-line { background: linear-gradient(to bottom, var(--sky2), var(--crimson)); }
.gsk-tl-item:last-child .gsk-tl-line    { display: none; }
.gsk-tl-body { padding: 24px 0 24px 28px; }
.gsk-tl-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 10px;
  border-radius: 2px;
}
.gsk-tl-item:nth-child(1) .gsk-tl-tag { background: var(--sky-pale);  color: var(--sky2); }
.gsk-tl-item:nth-child(2) .gsk-tl-tag { background: var(--crim-pale); color: var(--crimson); }
.gsk-tl-item:nth-child(3) .gsk-tl-tag { background: var(--pink-pale); color: var(--pink2); }
.gsk-tl-item:nth-child(4) .gsk-tl-tag { background: var(--sky-pale);  color: var(--sky2); }
.gsk-tl-item:nth-child(5) .gsk-tl-tag { background: var(--crim-pale); color: var(--crimson); }
.gsk-tl-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.2;
}
.gsk-tl-body p { font-size: 14.5px; color: var(--muted); line-height: 1.75; }

/* Values grid */
.gsk-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.gsk-val-card {
  padding: 52px 36px 44px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.gsk-val-card::before {
  content: attr(data-icon);
  position: absolute;
  bottom: -10px; right: -10px;
  font-size: 110px;
  line-height: 1;
  opacity: .08;
  color: #fff;
}
.gsk-val-card:nth-child(1) { background: var(--sky); }
.gsk-val-card:nth-child(2) { background: var(--crimson); }
.gsk-val-card:nth-child(3) { background: var(--pink); }
.gsk-val-card:nth-child(4) { background: var(--sky2); }
.gsk-val-ico {
  width: 54px; height: 54px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  margin-bottom: 22px;
}
.gsk-val-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.gsk-val-card p {
  font-size: 14px;
  color: rgba(255,255,255,.82);
  line-height: 1.78;
  flex: 1;
}
.gsk-val-num {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.38);
  letter-spacing: .08em;
}

/* Approach split */
.gsk-approach { display: grid; grid-template-columns: 45% 55%; min-height: 560px; }
.gsk-approach-left {
  background: var(--crimson);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gsk-approach-left .gsk-eyebrow { color: rgba(255,255,255,.6); }
.gsk-approach-left h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.gsk-approach-left p {
  font-size: 15.5px;
  color: rgba(255,255,255,.8);
  line-height: 1.85;
  margin-bottom: 0;
}
.gsk-approach-right {
  background: var(--white);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gsk-approach-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.gsk-approach-item:first-child { padding-top: 0; }
.gsk-approach-item:last-child  { border-bottom: none; padding-bottom: 0; }
.gsk-ai-num {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.gsk-approach-item:nth-child(1) .gsk-ai-num { background: var(--sky); }
.gsk-approach-item:nth-child(2) .gsk-ai-num { background: var(--crimson); }
.gsk-approach-item:nth-child(3) .gsk-ai-num { background: var(--pink); }
.gsk-approach-item:nth-child(4) .gsk-ai-num { background: var(--sky2); }
.gsk-ai-text h4 { font-size: 15.5px; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.gsk-ai-text p  { font-size: 14px; color: var(--muted); line-height: 1.72; }

/* Team grid */
.gsk-team-sec { padding: 96px 5%; }
.gsk-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
}
.gsk-tm-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-right: none;
  transition: box-shadow .3s;
}
.gsk-tm-card:last-child { border-right: 1px solid var(--border); }
.gsk-tm-photo { height: 280px; overflow: hidden; }
.gsk-tm-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .5s;
}
.gsk-tm-card:hover .gsk-tm-photo img { transform: scale(1.06); }
.gsk-tm-bar { height: 5px; }
.gsk-tm-card:nth-child(1) .gsk-tm-bar { background: var(--sky); }
.gsk-tm-card:nth-child(2) .gsk-tm-bar { background: var(--crimson); }
.gsk-tm-card:nth-child(3) .gsk-tm-bar { background: var(--pink); }
.gsk-tm-card:nth-child(4) .gsk-tm-bar { background: var(--sky2); }
.gsk-tm-body { padding: 22px 20px 24px; }
.gsk-tm-body h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.gsk-tm-role {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.gsk-tm-card:nth-child(1) .gsk-tm-role { color: var(--sky2); }
.gsk-tm-card:nth-child(2) .gsk-tm-role { color: var(--crimson); }
.gsk-tm-card:nth-child(3) .gsk-tm-role { color: var(--pink2); }
.gsk-tm-card:nth-child(4) .gsk-tm-role { color: var(--sky2); }
.gsk-tm-body p { font-size: 13.5px; color: var(--muted); line-height: 1.68; }
.gsk-tm-socials { display: flex; gap: 10px; margin-top: 14px; }
.gsk-tm-socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: filter .2s, transform .2s;
}
.gsk-tm-card:nth-child(1) .gsk-tm-socials a { background: var(--sky-pale);  color: var(--sky2); }
.gsk-tm-card:nth-child(2) .gsk-tm-socials a { background: var(--crim-pale); color: var(--crimson); }
.gsk-tm-card:nth-child(3) .gsk-tm-socials a { background: var(--pink-pale); color: var(--pink2); }
.gsk-tm-card:nth-child(4) .gsk-tm-socials a { background: var(--sky-pale);  color: var(--sky2); }
.gsk-tm-socials a:hover { filter: brightness(.9); transform: scale(1.1); }

/* Partners */
.gsk-partners-sec { background: var(--black); padding: 72px 5%; }
.gsk-partners-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.gsk-partners-head h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.gsk-partners-head p { font-size: 14px; color: rgba(255,255,255,.45); }
.gsk-partners-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}
.gsk-partner-cell {
  background: var(--black);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  transition: background .2s, color .2s;
  text-align: center;
  line-height: 1.4;
}
.gsk-partner-cell:hover { background: #111; color: rgba(255,255,255,.7); }
.gsk-partner-cell i { font-size: 24px; margin-bottom: 8px; opacity: .4; }

/* About CTA strip */
.gsk-about-cta {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}
.gsk-about-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
}
.gsk-about-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26,125,158,.92) 0%, rgba(192,57,43,.88) 60%, rgba(212,96,122,.82) 100%);
}
.gsk-about-cta-content {
  position: relative;
  z-index: 2;
  padding: 64px 5%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.gsk-about-cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 700;
  color: #fff;
  max-width: 580px;
  line-height: 1.2;
}
.gsk-about-cta-content h2 span { font-style: italic; opacity: .8; }
.gsk-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.gsk-btn-white-solid {
  background: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 14px 30px;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: background .2s;
  color: var(--crimson);
}
.gsk-btn-white-solid:hover { background: var(--crim-pale); }
.gsk-btn-outline-white {
  background: transparent;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 28px;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  cursor: pointer;
  font-family: var(--sans);
  transition: border-color .2s, background .2s;
}
.gsk-btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* Scroll reveal */
.gsk-reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.gsk-reveal.in { opacity: 1; transform: translateY(0); }
.gsk-reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.gsk-reveal-left.in  { opacity: 1; transform: translateX(0); }
.gsk-reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.gsk-reveal-right.in { opacity: 1; transform: translateX(0); }

/* ============================================================
   SINGLE.PHP — ARTICLE / BLOG POST
   ============================================================ */

/* Reading progress bar */
#gsk-progress-bar {
  position: fixed;
  top: 0; left: 0;
  z-index: 10001;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--sky), var(--crimson), var(--pink));
  transition: width .1s linear;
  pointer-events: none;
}

/* Article hero */
.gsk-article-hero {
  position: relative;
  height: 72vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 0; /* remove — JS handles this */
}
.gsk-article-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: gskHeroZoom 12s ease-out forwards;
}
@keyframes gskHeroZoom { to { transform: scale(1); } }
.gsk-article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,22,22,.92) 0%, rgba(22,22,22,.5) 45%, rgba(22,22,22,.1) 100%);
}
.gsk-article-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--sky), var(--crimson), var(--pink));
  z-index: 2;
}
.gsk-article-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5% 56px;
  width: 100%;
  max-width: 960px;
  animation: gskSlideUp .9s cubic-bezier(.16,1,.3,1) both;
}
@keyframes gskSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gsk-article-cat-pill {
  display: inline-block;
  background: var(--crimson);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.gsk-article-hero h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.8vw, 62px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 820px;
}
.gsk-article-hero h1 em { color: var(--pink); font-style: italic; }

/* Meta row */
.gsk-meta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.gsk-meta-author { display: flex; align-items: center; gap: 10px; }
.gsk-meta-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sky);
  flex-shrink: 0;
}
.gsk-meta-author-name  { font-size: 13.5px; font-weight: 700; color: #fff; line-height: 1.3; }
.gsk-meta-author-title { font-size: 11.5px; color: rgba(255,255,255,.55); }
.gsk-meta-divider { width: 1px; height: 28px; background: rgba(255,255,255,.2); }
.gsk-meta-item { font-size: 12.5px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 6px; }
.gsk-meta-item i { font-size: 11px; opacity: .7; }
.gsk-color-stripe { height: 5px; background: linear-gradient(90deg, var(--sky) 0%, var(--crimson) 50%, var(--pink) 100%); }

/* Article two-column layout */
.gsk-article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  align-items: start;
}

/* Article body */
.gsk-article-body {
  padding: 60px 64px 60px 0;
  border-right: 1px solid var(--border);
}
.gsk-article-body .gsk-lead {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--black);
  line-height: 1.75;
  margin-bottom: 36px;
  padding-left: 24px;
  border-left: 4px solid var(--crimson);
}
.gsk-article-body p { font-size: 16.5px; color: #333; line-height: 1.9; margin-bottom: 26px; }
.gsk-article-body h2 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  color: var(--black);
  margin: 48px 0 18px;
  padding-top: 8px;
}
.gsk-article-body h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--sky);
  margin-bottom: 14px;
}
.gsk-article-body h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--black);
  margin: 36px 0 14px;
}
.gsk-article-body ul,
.gsk-article-body ol { padding-left: 1.4em; margin-bottom: 26px; }
.gsk-article-body li { font-size: 16.5px; color: #333; line-height: 1.85; margin-bottom: 8px; list-style: disc; }
.gsk-article-body ol li { list-style: decimal; }
.gsk-article-body a { color: var(--sky2); border-bottom: 1px solid var(--sky-pale); transition: border-color .2s; }
.gsk-article-body a:hover { border-bottom-color: var(--sky); }

/* Pull quote */
.gsk-pull-quote {
  margin: 48px -24px;
  padding: 36px 48px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.gsk-pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 24px;
  font-family: var(--serif);
  font-size: 160px;
  font-weight: 700;
  color: var(--crimson);
  opacity: .25;
  line-height: 1;
}
.gsk-pull-quote blockquote {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}
.gsk-pull-quote cite {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky);
}

/* Stat callout */
.gsk-stat-callout { display: grid; grid-template-columns: repeat(3, 1fr); margin: 44px 0; }
.gsk-sc-item { padding: 28px 20px; text-align: center; }
.gsk-sc-item:nth-child(1) { background: var(--sky); }
.gsk-sc-item:nth-child(2) { background: var(--crimson); }
.gsk-sc-item:nth-child(3) { background: var(--pink); }
.gsk-sc-n { display: block; font-family: var(--serif); font-size: 42px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 6px; }
.gsk-sc-l { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.86); }

/* Inline image */
.gsk-article-img { margin: 40px -24px; position: relative; overflow: hidden; }
.gsk-article-img img { width: 100%; height: 340px; object-fit: cover; display: block; }
.gsk-article-img figcaption {
  padding: 12px 24px;
  background: var(--off);
  font-size: 12.5px;
  color: var(--muted);
  border-left: 3px solid var(--sky);
  font-style: italic;
}

/* Highlight boxes */
.gsk-highlight-box {
  margin: 40px 0;
  padding: 28px 32px;
  border-left: 5px solid var(--sky);
  background: var(--sky-pale);
}
.gsk-highlight-box h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sky2);
  margin-bottom: 10px;
}
.gsk-highlight-box p { font-size: 15px; color: var(--black); line-height: 1.75; margin: 0; }
.gsk-highlight-box.cr { border-left-color: var(--crimson); background: var(--crim-pale); }
.gsk-highlight-box.cr h4 { color: var(--crimson); }

/* Tags */
.gsk-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 48px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.gsk-tag-chip {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  color: var(--muted);
  transition: border-color .2s, color .2s;
  cursor: pointer;
}
.gsk-tag-chip:hover { border-color: var(--sky); color: var(--sky); }

/* Share bar */
.gsk-share-bar {
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gsk-share-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.gsk-share-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform .2s;
}
.gsk-share-btn:hover { transform: scale(1.12); }
.gsk-share-btn.fb { background: #1877f2; color: #fff; }
.gsk-share-btn.tw { background: #000;    color: #fff; }
.gsk-share-btn.li { background: #0a66c2; color: #fff; }
.gsk-share-btn.wa { background: #25d366; color: #fff; }
.gsk-share-btn.cp { background: var(--off); color: var(--muted); border: 1px solid var(--border); }

/* Author card */
.gsk-author-card {
  margin-top: 48px;
  padding: 32px;
  background: var(--off);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  border-top: 4px solid var(--crimson);
}
.gsk-author-card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.gsk-author-card h4 { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.gsk-author-card .gsk-author-role { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--crimson); margin-bottom: 10px; }
.gsk-author-card p { font-size: 14px; color: var(--muted); line-height: 1.72; }

/* Article sidebar */
.gsk-article-sidebar {
  padding: 60px 0 60px 48px;
  position: sticky;
  top: 70px;
}
.gsk-sidebar-widget { margin-bottom: 40px; }
.gsk-sw-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--sky);
  color: var(--black);
  display: inline-block;
}
.gsk-sw-title.cr { border-bottom-color: var(--crimson); }
.gsk-sw-title.pk { border-bottom-color: var(--pink); }

/* TOC */
.gsk-toc-list { list-style: none; padding: 0; margin: 0; }
.gsk-toc-list li { margin: 0; }
.gsk-toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.gsk-toc-list a::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background .2s;
}
.gsk-toc-list a:hover,
.gsk-toc-list a.gsk-toc-active { color: var(--sky); }
.gsk-toc-list a:hover::before,
.gsk-toc-list a.gsk-toc-active::before { background: var(--sky); }
.gsk-toc-list a.gsk-toc-active { font-weight: 600; }

/* Donate widget */
.gsk-donate-widget {
  background: var(--crimson);
  padding: 28px 24px;
  text-align: center;
}
.gsk-donate-widget h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.gsk-donate-widget p {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin-bottom: 20px;
}
.gsk-donate-widget-btn {
  display: block;
  width: 100%;
  background: #fff;
  color: var(--crimson);
  font-weight: 700;
  font-size: 13.5px;
  padding: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: background .2s;
}
.gsk-donate-widget-btn:hover { background: var(--crim-pale); }
.gsk-donate-widget-sub { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 12px; }

/* Sidebar related posts */
.gsk-related-post {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: none;
}
.gsk-related-post:last-child { border-bottom: none; }
.gsk-related-post img { width: 72px; height: 56px; object-fit: cover; }
.gsk-rp-cat { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--crimson); margin-bottom: 4px; }
.gsk-rp-title { font-size: 13px; font-weight: 700; color: var(--black); line-height: 1.35; transition: color .2s; }
.gsk-related-post:hover .gsk-rp-title { color: var(--sky); }
.gsk-rp-date { font-size: 11.5px; color: var(--muted); margin-top: 4px; }

/* Newsletter widget */
.gsk-nl-widget { background: var(--sky2); padding: 24px; }
.gsk-nl-widget h3 { font-family: var(--serif); font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.gsk-nl-widget p  { font-size: 12.5px; color: rgba(255,255,255,.75); margin-bottom: 14px; line-height: 1.55; }
.gsk-nl-input {
  width: 100%;
  padding: 11px 14px;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 13.5px;
  margin-bottom: 8px;
  color: var(--black);
  display: block;
}
.gsk-nl-input::placeholder { color: #aaa; }
.gsk-nl-btn {
  width: 100%;
  padding: 11px;
  background: var(--crimson);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: background .2s;
}
.gsk-nl-btn:hover { background: var(--crim-dark); }

/* Related articles section (below article) */
.gsk-related-sec { background: var(--off); padding: 72px 5%; }
.gsk-related-sec-title { font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.gsk-related-sec-sub   { font-size: 14px; color: var(--muted); margin-bottom: 40px; }
.gsk-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.gsk-rc {
  overflow: hidden;
  border: 1px solid var(--border);
  border-right: none;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  background: #fff;
}
.gsk-rc:last-child { border-right: 1px solid var(--border); }
.gsk-rc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity .3s;
}
.gsk-rc:nth-child(1)::after { background: var(--sky); }
.gsk-rc:nth-child(2)::after { background: var(--crimson); }
.gsk-rc:nth-child(3)::after { background: var(--pink); }
.gsk-rc:hover::after { opacity: 1; }
.gsk-rc:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.gsk-rc-thumb { height: 190px; overflow: hidden; }
.gsk-rc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gsk-rc:hover .gsk-rc-thumb img { transform: scale(1.06); }
.gsk-rc-body { padding: 22px; }
.gsk-rc-tag { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; margin-bottom: 10px; }
.gsk-rc-tag.sky { color: var(--sky2);   background: var(--sky-pale); }
.gsk-rc-tag.cr  { color: var(--crimson); background: var(--crim-pale); }
.gsk-rc-tag.pk  { color: var(--pink2);   background: var(--pink-pale); }
.gsk-rc-body h3 { font-family: var(--serif); font-size: 17px; color: var(--black); margin-bottom: 8px; line-height: 1.3; }
.gsk-rc-body p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.gsk-rc-foot    { font-size: 12px; color: var(--muted); }

/* ============================================================
   RESPONSIVE — TEMPLATE-SPECIFIC ADDITIONS
   ============================================================ */
@media (max-width: 1100px) {
  .gsk-values-grid { grid-template-columns: repeat(2, 1fr); }
  .gsk-team-grid   { grid-template-columns: repeat(2, 1fr); }
  .gsk-tm-card:nth-child(2) { border-right: 1px solid var(--border); }
  .gsk-tm-card:nth-child(3) { border-right: none; }
  .gsk-partners-row { grid-template-columns: repeat(3, 1fr); }
  .gsk-article-layout { grid-template-columns: 1fr; }
  .gsk-article-body { padding: 48px 0; border-right: none; }
  .gsk-article-sidebar { padding: 0 0 48px; position: static; }
  .gsk-related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .gsk-mission { grid-template-columns: 1fr; }
  .gsk-mission-body { padding: 52px 36px; }
  .gsk-approach { grid-template-columns: 1fr; }
  .gsk-approach-left { padding: 52px 36px; }
  .gsk-approach-right { padding: 52px 36px; }
  .gsk-stats-band { grid-template-columns: repeat(2, 1fr); }
  .gsk-about-cta-content { flex-direction: column; align-items: flex-start; }
  .gsk-page-hero-geo .gsk-geo-sky { width: 100%; clip-path: polygon(0 0, 100% 0, 100% 65%, 0 100%); }
  .gsk-page-hero-geo .gsk-geo-crimson,
  .gsk-page-hero-geo .gsk-geo-pink { display: none; }
}
@media (max-width: 768px) {
  .gsk-team-grid { grid-template-columns: 1fr; }
  .gsk-tm-card { border-right: 1px solid var(--border) !important; }
  .gsk-values-grid { grid-template-columns: 1fr; }
  .gsk-partners-row { grid-template-columns: repeat(2, 1fr); }
  .gsk-article-hero h1 { font-size: clamp(26px, 6vw, 42px); }
  .gsk-pull-quote { margin: 36px 0; }
  .gsk-stat-callout { grid-template-columns: 1fr; }
  .gsk-article-img { margin: 32px 0; }
  .gsk-related-grid { grid-template-columns: 1fr; }
  .gsk-rc { border-right: 1px solid var(--border) !important; }
}
@media (min-width: 769px) {
  body.single {
    padding-top: 94px !important;
  }
}
@media (max-width: 480px) {
  .gsk-stats-band { grid-template-columns: 1fr; }
  .gsk-stat-cell::after { display: none; }
  .gsk-author-card { grid-template-columns: 1fr; }
  .gsk-meta-divider { display: none; }
}
/* ── Fix hero clipping behind fixed header ── */
body.single {
  padding-top: 94px;
}
/* ── FOOTER SOCIAL ICONS ── */
.gsk-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.gsk-fsoc {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.12);
  transition: background .2s, color .2s, transform .2s;
  text-decoration: none;
}
.gsk-fsoc:hover { transform: translateY(-3px); color: #fff; }
.gsk-fsoc--facebook:hover  { background: #1877f2; border-color: #1877f2; }
.gsk-fsoc--twitter:hover   { background: #000;    border-color: #000; }
.gsk-fsoc--instagram:hover { background: #e1306c; border-color: #e1306c; }
.gsk-fsoc--youtube:hover   { background: #ff0000; border-color: #ff0000; }
.gsk-fsoc--linkedin:hover  { background: #0a66c2; border-color: #0a66c2; }
.gsk-fsoc--whatsapp:hover  { background: #25d366; border-color: #25d366; }