/* ================================================================
   PEOPLE — SINGLE POST TEMPLATE
   Figma: node 1961:1074
   Depends on: ../../style.css (design tokens + layout utilities)
   ================================================================ */


/* ================================================================
   S1 — HERO / PROFILE CARD
   Left: 500px photo panel  ·  Right: #E8EDF6 info panel
   ================================================================ */

.sp-hero {
  padding-top: 20px;
  padding-bottom: var(--site-py-flush);
  background: #fff;
}

/* Outer card — flex row, clipped corners */
.sp-hero__card {
  display: flex;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.10);
}

/* ── Left: Photo panel ────────────────────────────────────────── */

.sp-hero__photo-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.sp-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  display: block;
  z-index: 1;
}

.sp-hero__photo-wrap .fallback-image {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  min-width: 200px;
  display: flex;
  align-items: center;
  align-content: center;
  height: 100%;
}

/* Subtle bottom gradient — navy fade */
.sp-hero__photo-gradient {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2026/07/people-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* ── Right: Info panel ────────────────────────────────────────── */

.sp-hero__info {
  flex: 1;
  min-width: 0;
  background: #E8EDF6;
  padding: 80px 64px;
}

.sp-hero__info-inner {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
}

/* Breadcrumb */
.sp-hero__breadcrumb {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: rgba(30, 21, 61, 0.80);
}

.sp-hero__breadcrumb-link {
  color: rgba(30, 21, 61, 0.80);
  text-decoration: none;
}

.sp-hero__breadcrumb-link:hover { text-decoration: underline; }

.sp-hero__breadcrumb-sep,
.sp-hero__breadcrumb-current {
  color: rgba(30, 21, 61, 0.80);
}

/* Name + pills */
.sp-hero__name-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-hero__name {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: var(--fs-h1);
  font-weight: var(--fw-h1);
  line-height: var(--lh-h1);
  letter-spacing: var(--ls-h1);
  color: var(--color-text, #1E153D);
  margin: 0;
}

.sp-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.sp-hero__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 99px;
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: wrap;
}

/* Teal — job role */
.sp-hero__pill--teal {
  background: var(--color-teal, #4FBEBE);
  color: var(--color-primary, #071D49);
}

/* Grey — department */
.sp-hero__pill--grey {
  background: rgba(30, 21, 61, 0.14);
  color: var(--color-text, #1E153D);
}

/* Bio */
.sp-hero__bio {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-body, 18px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: rgba(30, 21, 61, 0.80);
  max-width: 532px;
}

.sp-hero__bio p { margin: 0 0 0.8em; }
.sp-hero__bio p:last-child { margin-bottom: 0; }

/* Email pill — clickable mailto */
.sp-hero__email-pill {
  display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 99px;
    background: var(--color-primary);
    font-family: var(--font-body);
    font-size: var(--fs-action);
    font-weight: var(--fw-action);
    line-height: var(--lh-action);
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    align-self: flex-start;
    transition: opacity 0.2s ease;
}

.sp-hero__email-pill:hover { opacity: 0.8; }

/* Buttons */
.sp-hero__btns {
  display: flex;
  gap: 14px;
  align-items: center;
}

.sp-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.sp-hero__btn:hover { opacity: 0.82; }

/* White — Book a Consultation */
.sp-hero__btn--white {
  background: #fff;
  color: var(--color-primary, #071D49);
}

/* Navy — Send an Enquiry */
.sp-hero__btn--navy {
  background: var(--color-primary, #071D49);
  color: #fff;
}


/* ── Responsive — laptop ≤1366px ─────────────────────────────── */

@media (max-width: 1366px) {
  .sp-hero__info  { padding: 64px 48px; }
  .sp-hero__name  { font-size: 44px; }
}

/* ── Responsive — tablet ≤1024px ─────────────────────────────── */

@media (max-width: 1024px) {
  .sp-hero { padding: 0; }

  .sp-hero__card {
    border-radius: 0;
  }

  .sp-hero__photo-wrap {
    width: 100%;
  }

  .sp-hero__info {
    padding: 48px 40px;
    gap: 20px;
  }

  .sp-hero__name { font-size: 40px; }
  .sp-hero__bio  { max-width: 100%; }
}

/* ── Responsive — mobile ≤767px ──────────────────────────────── */

@media (max-width: 767px) {
  .sp-hero__photo-wrap { height: 260px; aspect-ratio: 1;}

  .sp-hero__card {
    flex-direction: column;
  }
  .sp-hero__info {
    padding: var(--site-py) var(--site-px);
    gap: 16px;
  }

  .sp-hero__name { font-size: 32px; }
  .sp-hero__bio  { font-size: 16px; }

  .sp-hero__btns {
    flex-direction: column;
    align-items: stretch;
  }

  .sp-hero__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 333px) {
  .sp-hero__email-pill { white-space: normal; }
}


/* ================================================================
   S2 — KEY INFO STRIP
   Figma: node 1918:1100
   Full-width teal-tinted bar. Department · Location · Role · Direct Line
   Items separated by 1px teal dividers.
   ================================================================ */

.sp-strip {
  background: #f0fbfb;
  border-top: 1px solid rgba(79, 190, 190, 0.30);
  border-bottom: 1px solid rgba(79, 190, 190, 0.30);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.10);
}

.sp-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px var(--site-px, 118px);
  gap: 20px;
}

.sp-strip__item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
}

.sp-strip__label {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  color: rgba(7, 29, 73, 0.70);
}

.sp-strip__value {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-primary, #071D49);
  white-space: nowrap;
}

/* Teal divider between items */
.sp-strip__divider {
  width: 1px;
  height: 32px;
  background: rgba(79, 190, 190, 0.30);
  flex-shrink: 0;
}

/* ── Responsive — tablet ≤1024px ─────────────────────────────── */

@media (max-width: 1024px) {
  .sp-strip__inner { padding: 20px var(--site-px, 40px); }
  .sp-strip__value { white-space: normal; }
}

/* ── Responsive — mobile ≤767px ──────────────────────────────── */

@media (max-width: 767px) {
  .sp-strip__inner {
    gap: 16px;
    padding: var(--site-px);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sp-strip__divider { display: none; }
}


/* ================================================================
   S3 — PROFILE BODY + SIDEBAR
   Figma: node 1946:1177
   Left: content sections  ·  Right: navy sidebar cards
   ================================================================ */

.sp-body {
  background: #fff;
  
}

.sp-body__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: var(--site-py) var(--site-px) var(--site-py-flush);
}

/* ── Left: main content column ──────────────────────────────── */

.sp-body__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--site-py);
}

/* ── Content section ─────────────────────────────────────────── */

.sp-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sp-section__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Teal eyebrow pill */
.sp-section__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--color-teal, #4FBEBE);
  border-radius: 99px;
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-overhead, 16px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0.03em;
  color: var(--color-primary, #071D49);
  text-transform: uppercase;
  white-space: nowrap;
  align-self: flex-start;
}

.sp-section__heading {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: var(--fs-h3);
  font-weight: var(--fw-h3);
  line-height: var(--lh-h3);
  color: var(--color-text, #1E153D);
  margin: 0;
}

.sp-section__body {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-body, 18px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--color-text, #1E153D);
}

.sp-section__body p { margin: 0 0 1em; }
.sp-section__body p:last-child { margin-bottom: 0; }

/* ── Additional About sections (heading + body pairs after the main body) ── */

.sp-section__extra {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sp-section__extra-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-h3);
  line-height: var(--lh-h3);
  color: var(--color-text, #1E153D);
  margin: 0;
}

.sp-section__extra-body {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-body, 18px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--color-text, #1E153D);
}

.sp-section__extra-body p { margin: 0 0 1em; }
.sp-section__extra-body p:last-child { margin-bottom: 0; }

/* ── Areas of expertise tags ─────────────────────────────────── */

.sp-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sp-expertise__tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  background: #E8EDF6;
  border: 1px solid #D2DAE8;
  border-radius: 10px;
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-body-s, 14px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--color-text, #1E153D);
}

/* ── How [name] can help cards ───────────────────────────────── */

.sp-help {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

.sp-help__card {
  background: #E8EDF6;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Numbered teal pill */
.sp-help__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--color-teal, #4FBEBE);
  border-radius: 99px;
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-overhead, 16px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0.03em;
  color: var(--color-primary, #071D49);
  align-self: flex-start;
}

.sp-help__title {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text, #1E153D);
  margin: 0;
}

.sp-help__body {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-body-s, 14px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #5A5F6E;
  margin: 0;
}

/* ── Right: sidebar ─────────────────────────────────────────── */

.sp-body__sidebar {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Base card */
.sp-sidebar__card {
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-sidebar__card--navy { background: var(--color-primary, #071D49); }

/* Eyebrow pill inside sidebar */
.sp-sidebar__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--color-teal, #4FBEBE);
  border-radius: 99px;
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-overhead, 16px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0.03em;
  color: var(--color-primary, #071D49);
  text-transform: uppercase;
  white-space: nowrap;
  align-self: flex-start;
}

/* Credentials card heading */
.sp-sidebar__heading {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

/* ── Credential row ─────────────────────────────────────────── */

.sp-cred__row {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.sp-cred__badge { flex-shrink: 0; }

/* Text acronym badge */
.sp-cred__acronym {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: rgba(79, 190, 190, 0.15);
  border-radius: 6px;
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-teal, #4FBEBE);
  white-space: nowrap;
}

/* Logo image badge */
.sp-cred__logo {
  height: 40px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  display: block;
}

.sp-cred__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sp-cred__company {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-body-s, 14px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #fff;
}

.sp-cred__position {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-body-s, 14px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.80);
  white-space: nowrap;
}

/* "Recognised by" label */
.sp-sidebar__recog-label {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.80);
  margin: 0;
}

/* Accreditation logos row */
.sp-sidebar__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.sp-sidebar__logo {
  height: 80px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

/* ── Get in touch card ─────────────────────────────────────── */

.sp-sidebar__contact-heading {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.sp-contact__row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sp-contact__label {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-body-s, 14px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.80);
}

.sp-contact__value {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-body-s, 14px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #fff;
  text-decoration: none;
  word-break: break-all;
}

a.sp-contact__value:hover { text-decoration: underline; }

/* Teal enquiry button */
.sp-sidebar__enquiry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-teal, #4FBEBE);
  border-radius: 999px;
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--color-primary, #071D49);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  margin-top: 4px;
}

.sp-sidebar__enquiry-btn:hover { opacity: 0.85; color: var(--color-primary, #071D49); }


/* ── Responsive — laptop ≤1366px ─────────────────────────────── */

@media (max-width: 1366px) {

}

/* ── Responsive — tablet ≤1024px ─────────────────────────────── */

@media (max-width: 1024px) {
  .sp-body__inner { flex-direction: column; gap: 48px; }
  .sp-body__sidebar {
    flex: none;
    width: 100%;
  }
  .sp-help { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

/* ── Responsive — mobile ≤767px ──────────────────────────────── */

@media (max-width: 767px) {
  .sp-expertise__tag   { white-space: normal; }
  .sp-help { grid-template-columns: 1fr; }
  .sp-sidebar__card { padding: 24px 20px; }
  .sp-cred__position { white-space: normal; }
}

/* ── Community card (teal-tinted variant) ────────────────────── */

.sp-sidebar__card--teal {
  background: #F0FBFB;
  border: 1px solid rgba(79, 190, 190, 0.30);
}

.sp-community__title {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text, #1E153D);
  margin: 0;
}

.sp-community__text {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-body-s, 14px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #5A5F6E;
  margin: 0;
}


/* ================================================================
   SHARED UTILITY — pill used in S5 and S7
   ================================================================ */

.sp-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 99px;
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-overhead, 16px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  width: fit-content;
}

.sp-pill--teal {
  background: var(--color-teal, #4FBEBE);
  color: var(--color-primary, #071D49);
}


/* ================================================================
   S5 — LATEST NEWS & INSIGHTS
   ================================================================ */

.sp-insights-section {
  padding: var(--site-py-flush) 0;
}

.sp-insights-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.sp-insights-section__title-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-insights-section__title-group h2 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: var(--fs-h2, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--color-text, #1E153D);
  margin: 0;
}

.sp-insights-section__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.sp-insights-section__arrow {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-insights-section__arrow:hover { opacity: 1; }


/* ================================================================
   S6 — GOOGLE REVIEWS
   ================================================================ */

.sp-reviews-section {
  padding: var(--site-py-flush) 0;
}


/* ================================================================
   S7 — CTA BANNER
   Dark card with layered teal gradient glow.
   ================================================================ */

/* Button utility */
.sp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-action, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  width: fit-content;
  justify-content: center;
}

.sp-btn:hover      { opacity: 0.82; }
.sp-btn__arrow     { flex-shrink: 0; }
.sp-btn--light {
  background: var(--color-stroke, #E8EDF6);
  color: var(--color-text, #1E153D);
}

/* Section */
.sp-cta {
  background: #fff;
  padding-top: var(--site-py-flush);
  padding-bottom: var(--site-py);
}

/* Card */
.sp-cta__card {
  position: relative;
  width: 100%;
  border-radius: 32px;
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

/* Deep navy base layer */
.sp-cta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #060f20;
  opacity: 0.89;
  z-index: -2;
}

/* Teal-to-navy blurred gradient glow */
.sp-cta__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    129deg,
    var(--color-teal, #4FBEBE) 24%,
    var(--color-primary, #071D49) 70%,
    var(--color-text, #1E153D) 94%
  );
  filter: blur(37px);
  opacity: 0.35;
  z-index: -1;
}

.sp-cta__heading {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: var(--fs-h2, 44px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  max-width: 775px;
  margin: 0;
}

.sp-cta__body {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-body-s, 14px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #fff;
  max-width: 628px;
  margin: 0;
}

.sp-cta__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}


/* ── Responsive — tablet ≤1024px ─────────────────────────────── */

@media (max-width: 1024px) {
  .sp-insights-section { padding-bottom: var(--site-py); }

  .sp-insights-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .sp-insights-section__title-group {
    padding-right: var(--site-px);
}

  section.sp-insights-section .site-container {
    padding-right: 0;
}

  .sp-cta       { padding: 0; }
  .sp-cta__card { padding: 60px 40px; border-radius: 0; }
}

/* ── Responsive — mobile ≤767px ──────────────────────────────── */

@media (max-width: 767px) {

  .sp-reviews-section { padding: 24px 0 48px; }

  nav.sp-insights-section__nav {
    display: none;
  }

  .sp-btn { width: 100%; }

  .sp-cta__card {
    padding: 48px 24px;
    gap: 24px;
  }

  .sp-cta__heading { font-size: var(--fs-h2-mob, 32px); }

  .sp-cta__actions {
    flex-direction: column;
    width: fit-content;
  }

  .sp-cta__actions .sp-btn,
  .sp-cta__actions .gradient-outline-pill {
    width: 100%;
    justify-content: center;
  }
}


/* ================================================================
   S3 MODIFIER — sp-body--wide (detailed profile: no sidebar)
   ================================================================ */

.sp-body--wide .sp-body__inner {
  display: block;
}

.sp-body--wide .sp-body__main {
  max-width: 100%;
}


/* ================================================================
   EXPERTISE SUB-SECTION (within detailed profile body)
   Inline H3 heading + expertise tags, no separate eyebrow pill.
   ================================================================ */

.sp-expertise-sub {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-expertise-sub__heading {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: var(--fs-h4, 24px);
  font-weight: var(--fw-h4, 700);
  line-height: var(--lh-h4, 1.1);
  letter-spacing: var(--ls-h4, 0.03em);
  color: var(--color-text, #1E153D);
  margin: 0;
}


/* ================================================================
   S4 — AREAS OF EXPERTISE SECTION (standard profile only)
   Standalone section: teal eyebrow + H2 heading + tag chips.
   ================================================================ */

.sp-expertise-section {
  background: #fff;
  padding: var(--site-py-flush) 0;
}

.sp-expertise-section__header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.sp-expertise-section__heading {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: var(--fs-h3, 32px);
  font-weight: var(--fw-h3, 600);
  line-height: var(--lh-h3, 1.1);
  letter-spacing: var(--ls-h3, 0.03em);
  color: var(--color-text, #1E153D);
  margin: 0;
}

@media (max-width: 767px) {
  .sp-expertise-section__heading { font-size: var(--fs-h3-mob, 22px); }
}


/* ================================================================
   S4 — AWARDS & RECOGNITION (detailed profile only)
   Centered intro + 3-column award card grid.
   ================================================================ */

.sp-awards {

  padding: var(--site-py-flush) 0;
}

.sp-awards__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  text-align: center;
}

.sp-awards__heading {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: var(--fs-h2, 44px);
  font-weight: var(--fw-h2, 600);
  line-height: var(--lh-h2, 1.1);
  letter-spacing: var(--ls-h2, 0.03em);
  color: var(--color-text, #1E153D);
  margin: 0;
}

.sp-awards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sp-awards__card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-2, 0 4px 24px rgba(0, 0, 0, 0.08));
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 200px;
}

.sp-awards__card-logo {
  height: 80px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  display: block;
}

.sp-awards__card-text {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-h5, 18px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text, #1E153D);
  text-align: center;
  margin: 0;
}

/* ── Responsive ─────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .sp-awards__heading { font-size: var(--fs-h2-mob, 32px); }
  .sp-awards__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 767px) {
  .sp-awards__grid { grid-template-columns: 1fr; gap: 16px; }
  .sp-awards__card { min-height: auto; }
}


/* ================================================================
   S5 — CLIENT FEEDBACK QUOTE (detailed profile only)
   Decorative quote marks + quote text + attribution.
   ================================================================ */

.sp-quote {
  background: #fff;
  padding: var(--site-py-flush) 0;
}

.sp-quote__card {
  background: var(--color-stroke, #E8EDF6);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
}

.sp-quote__marks {
  display: block;
  line-height: 1;
}

.sp-quote__text {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-body-s);
  font-weight: var(--fw-body-s);
  line-height: var(--lh-body-s);
  letter-spacing: var(--ls-body-s);
  color: var(--color-text, #1E153D);
  margin: 0;
  font-style: italic;
}

.sp-quote__attribution {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--fs-body-s, 14px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text, #1E153D);
  margin: 0;
}

/* ── Responsive ─────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .sp-quote__card { padding: 32px 36px; }
}

@media (max-width: 767px) {
  .sp-quote__card { padding: 28px 24px; }
}
