/* ============================================================
   Leadership Check – Hero Block Styles
   Base: 1rem = 16px
   Colours: CSS custom properties from stronger4tomorrow.webflow.css :root
   ============================================================ */

/* ── Full-width background section ──────────────────────── */
.lc-hero {
  background-color: var(--_ts_colors---bg--main_bg);
  width: 100%;
  overflow: hidden;
}

/* ── Centred inner wrapper (flex row) ────────────────────── */
.lc-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  max-width: 80rem;
  /* 1280px */
  min-height: 40rem;
  margin: 0 auto;
}

/* ── Left column: photos + chevrons + logos ──────────────── */
.lc-left {
  position: relative;
  width: calc(50% - 2.5rem);
  min-height: 40rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  margin-left: 4rem;
}

/* ── Right column: text ──────────────────────────────────── */
/* padding-top: 10rem matches .section.about_me in working-with-me.html */
.lc-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3.5rem 4rem 5rem;
}

/* ── Photos & Stripes Wrapper ────────────────────────────── */
.lc-photos {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_combined_cropped.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

/* ── Stripes — HIDDEN ────────────────────────────────────── */
.lc-stripe,
.lc-chevron-white-1,
.lc-chevron-white-2,
.lc-chevron-salmon,
.lc-chevron-sage {
  display: none;
}

/* ── Photos — HIDDEN ─────────────────────────────────────── */
.lc-photo-sabine,
.lc-photo-tanja-wrap {
  display: none;
}

/* ── Logos & CTA ─────────────────────────────────────────── */
.lc-logos {
  position: absolute;
  bottom: 7.5rem;
  left: 0.5rem;
  width: 12rem;
  background-color: transparent;
  /* Transparent background to let layout flow naturally */
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0;
}

.lc-logos img.ks {
  height: 4.5rem;
  margin-bottom: 0.5rem;
}

.lc-logos .lc-footer-logo-link:first-child {
  margin-bottom: 2rem;
  display: block;
}

.lc-footer-logo-url {
  color: #ffffff !important;
}

.lc-logos .lc-url {
  color: var(--white);
  font-size: 0.9rem;
  font-family: 'IBM Plex Sans', sans-serif;
  margin-bottom: 1rem;
}

.lc-logos img.st4 {
  height: 4rem;
  margin-bottom: 0.5rem;
}

.lc-btn-override {
  margin-top: 1rem;
}

/* ── Right column typography ─────────────────────────────── */
.lc-heading {
  color: var(--_ts_colors---text--melon);
  font-family: 'Afacad Flux', sans-serif;
  font-size: clamp(3.5rem, 6.5vw, 6.5rem);
  font-weight: 800;
  line-height: 0.75;
  margin: 5rem 0 0.5rem 0;
  /* Increased margin to prevent overlap with subtitle */
  letter-spacing: -0.02em;
}

.lc-subtitle {
  color: var(--white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.lc-desc {
  color: var(--white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.45;
  margin: 0 0 2rem 0;
}

.lc-highlight {
  color: var(--_ts_colors---text--melon);
  font-weight: 700;
}

/* ── Bullet items ────────────────────────────────────────── */
.lc-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lc-bullet {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lc-bullet.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lc-bullet:hover .lc-pill {
  background-color: var(--white);
  color: var(--faded-black);
  transform: translateX(4px);
}

.lc-bullet:hover .lc-hex polygon {
  stroke: var(--_ts_colors---text--melon);
}

.lc-hex {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  clip-path: none;
}

.lc-pill {
  background-color: #b5c0b7;
  /* Sage green matching the mockup */
  color: #24182f;
  /* Dark purple/black matching the mockup */
  padding: 0.875rem 2.5rem 0.875rem 1.5rem;
  /* Extra right padding to account for slant cut */
  border-radius: 0.5rem 0 0 0.5rem;
  /* Rounded only on the left */
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  flex: 1;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  /* Slanted right edge ending in a pointed triangle pointing right, matching the brand chevron style */
  clip-path: polygon(0 0, calc(100% - 1.2rem) 0, 100% 50%, calc(100% - 1.2rem) 100%, 0 100%);
  /* Thick black outline border for clipped shape */
  filter: drop-shadow(2px 0px 0px #24182f) drop-shadow(-2px 0px 0px #24182f) drop-shadow(0px 2px 0px #24182f) drop-shadow(0px -2px 0px #24182f);
}

.lc-btn-wrapper {
  text-align: right;
  margin-top: 2rem;
  width: 100%;
}

.lc-btn-pdf {
  display: inline-flex;
  border: 1px solid var(--_ts_colors---text--melon);
  background-color: var(--_ts_colors---text--blue);
  color: var(--white);
  border-radius: 3rem;
  justify-content: center;
  align-items: center;
  padding: 0.28rem 1.11rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}

.lc-btn-pdf:hover {
  background-color: var(--_ts_colors---text--melon);
  color: var(--background-black);
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 48rem) {
  .lc-inner {
    flex-direction: column-reverse;
    min-height: unset;
  }

  .lc-left {
    width: 100%;
    min-height: unset;
    align-items: center;
    margin-left: 0;
  }

  .lc-chevron-white-1,
  .lc-chevron-white-2,
  .lc-chevron-salmon,
  .lc-chevron-sage {
    display: none;
  }

  .lc-photos {
    position: relative;
    height: 25rem;
    width: 100%;
    margin-top: 0;
    padding-top: 11.5rem;
    background-image: url('../images/hero_combined_cropped.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
  }

  .lc-photo-sabine,
  .lc-photo-tanja {
    display: none;
  }

  .lc-logos {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    align-items: center;
    text-align: center;
    margin-top: 1.5rem;
    display: none;
  }

  .lc-footer-logo-link {
    display: flex;
    align-items: center;
  }

  .lc-right {
    padding: 4.5rem 1.5rem 0 1.5rem;
  }
}

/* ── New Two-Column Use Cases and Lead Capture Section ── */
.lc-usecases-section {
  background-color: var(--_ts_colors---bg--main_bg);
  padding: 3rem 0;
  width: 100%;
  position: relative;
  z-index: 10;
}

.lc-usecases-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3.5rem;
}

.lc-usecases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Left Column: Use Cases */
.lc-usecases-left {
  display: flex;
  flex-direction: column;
}

.lc-usecases-title {
  color: var(--white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1rem 0;
}

.lc-usecases-subtitle {
  color: var(--_ts_colors---text--melon);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.4;
  margin: 0 0 2.5rem 0;
}

.lc-usecases-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lc-usecases-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text--off-white);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, color 0.2s ease;
}

.lc-usecases-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lc-usecases-item.is-visible:hover {
  transform: translateX(6px);
  color: var(--_ts_colors---text--melon);
  transition: transform 0.2s ease, color 0.2s ease;
}

.lc-usecases-icon-wrap {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.lc-usecases-icon {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--_ts_colors---text--swans-down);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s ease;
}

.lc-usecases-item:hover .lc-usecases-icon {
  stroke: var(--_ts_colors---text--melon);
}

/* Right Column: Lead Capture Form Card */
.lc-usecases-right {
  display: flex;
  flex-direction: column;
}

.lc-form-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.lc-form-title {
  color: var(--white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
}

.lc-form-subtitle {
  color: var(--text--off-white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 1.25rem 0;
  opacity: 0.8;
}

.lc-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
  justify-content: flex-end;
}

.lc-input-label {
  color: var(--text--off-white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

.lc-input-field {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  color: var(--_ts_colors---text--melon);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
  padding: 0.7rem 0.9rem;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

/* Form layout helpers */
.lc-form-row {
  display: flex;
  gap: 1rem;
}

.lc-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}

.lc-input-field:focus {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: var(--_ts_colors---text--blue);
  box-shadow: 0 0 0 3px rgba(83, 104, 255, 0.2);
  outline: none;
}

.lc-input-field::placeholder {
  color: var(--_ts_colors---text--melon);
  opacity: 0.6;
}

.lc-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
  cursor: pointer;
  position: relative;
}

.lc-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.lc-checkbox-custom {
  width: 1.3rem;
  height: 1.3rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
  background-color: transparent;
}

.lc-checkbox-group:hover .lc-checkbox-custom {
  border-color: rgba(255, 255, 255, 0.45);
}

.lc-checkbox-input:checked+.lc-checkbox-custom {
  background-color: var(--_ts_colors---text--blue);
  border-color: var(--_ts_colors---text--blue);
}

.lc-checkbox-custom::after {
  content: "";
  width: 0.35rem;
  height: 0.6rem;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
  display: block;
}

.lc-checkbox-input:checked+.lc-checkbox-custom::after {
  transform: rotate(45deg) scale(1) translate(-0.5px, -0.5px);
}

.lc-checkbox-label {
  color: var(--text--off-white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.45;
  user-select: none;
  opacity: 0.85;
}

.lc-form-submit-btn {
  background-color: var(--_ts_colors---text--blue);
  border: 1.5px solid var(--_ts_colors---text--melon);
  color: var(--white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.85rem 2.5rem;
  border-radius: 3rem;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s, transform 0.15s, box-shadow 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.lc-form-submit-btn:hover {
  background-color: var(--_ts_colors---text--melon);
  color: #24182f;
  box-shadow: 0 8px 20px rgba(83, 104, 255, 0.25);
}

.lc-form-submit-btn:active {
  transform: scale(0.98);
}

.lc-form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ── Responsive adjustments for the new section ── */
@media (max-width: 48rem) {

  .lc-usecases-section,
  .lc-comparison-section,
  .lc-cta-banner-section {
    padding: 5rem 0 0 0;
  }

  .lc-usecases-section {
    padding: 3rem 1rem;
  }

  .lc-usecases-container {
    padding: 0 1.5rem;
  }

  .lc-usecases-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .lc-form-row {
    flex-direction: column;
    gap: 0;
  }

  .lc-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .lc-form-card {
    padding: 2rem 1.5rem;
  }
}

/* ============================================================
   Leadership Check – Program Comparison & CTA Banner Styles
   ============================================================ */

/* ── Section 1: Comparison Block ─────────────────────────── */
.lc-comparison-section {
  background-color: var(--_ts_colors---bg--main_bg);
  width: 100%;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 7.5rem;
}

/* Decorative Framing Lines & Triangles */
.lc-decor-line-left {
  position: absolute;
  top: -50px;
  left: 2%;
  width: 1.5rem;
  height: 120%;
  background-color: #F5A295;
  transform: skewX(-20deg);
  transform-origin: top left;
  z-index: 1;
}

.lc-decor-tri-left {
  position: absolute;
  top: 1.8rem;
  left: 5%;
  width: 0;
  height: 0;
  border-top: 1.2rem solid transparent;
  border-bottom: 1.2rem solid transparent;
  border-left: 1.8rem solid #b5c0b7;
  /* Sage green pointing right */
  z-index: 1;
}

.lc-decor-line-right {
  position: absolute;
  top: -50px;
  right: 2%;
  width: 1.5rem;
  height: 120%;
  background-color: #F5A295;
  transform: skewX(20deg);
  transform-origin: top right;
  z-index: 1;
}

.lc-decor-tri-right {
  position: absolute;
  top: 1.8rem;
  right: 5%;
  width: 0;
  height: 0;
  border-top: 1.2rem solid transparent;
  border-bottom: 1.2rem solid transparent;
  border-right: 1.8rem solid #b5c0b7;
  /* Sage green pointing left */
  z-index: 1;
}

/* Header Area */
.lc-comp-header-wrap {
  max-width: 80rem;
  margin: 0 auto 4rem auto;
  padding: 0 3.5rem;
  position: relative;
  z-index: 5;
}

.lc-comp-header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.lc-comp-logos-stack {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.lc-comp-logos-stack img.st4 {
  height: 3rem;
  align-self: flex-start;
  margin-bottom: 0.5rem;
}

.lc-comp-logos-stack img.ks {
  height: 3.2rem;
  align-self: flex-start;
  margin-bottom: 0.5rem;
}

.lc-comp-logos-stack .lc-footer-logo-url {
  color: var(--white);
  font-size: 1rem;
  font-family: 'IBM Plex Sans', sans-serif;
  margin-bottom: 1rem;
}

.lc-comp-header-right-text {
  color: #ffffff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.4375rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.45;
  max-width: 35rem;
  opacity: 0.95;
}

.lc-comp-main-heading {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  text-align: center;
  margin: 2rem 0 8rem 0;
}

/* 3-Column Card Layout */
.lc-comp-grid-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3.5rem;
  position: relative;
  z-index: 5;
}

.lc-comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.lc-program-card {
  background-color: #b5c0b7;
  border-radius: 1.25rem;
  position: relative;
  padding: 4.5rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.lc-program-card:hover {
  transform: translateY(-2rem);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

/* Floating Icon Container */
.lc-card-floating-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7.5rem;
  height: 8.625rem;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lc-card-floating-icon svg {
  width: 100%;
  height: 100%;
}

/* Card Body Content styling */
.lc-card-tag {
  color: var(--_ts_colors---bg--main_bg);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lc-card-title {
  color: #2D253B;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  min-height: 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Dark purple subheadline band */
.lc-card-subheadline-band {
  background-color: #F5A295;
  color: var(--_ts_colors---bg--main_bg);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem 1.5rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  margin-bottom: 2.2rem;
  line-height: 1.4;
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bullet list styling */
.lc-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.lc-card-item {
  color: #2D253B;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
  position: relative;
  padding-left: 1.5rem;
  text-align: left;
}

.lc-card-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2D253B;
  font-size: 1.4rem;
  line-height: 1.2;
}

/* ── Section 2: Bottom CTA Banner ────────────────────────── */
.lc-cta-banner-section {
  background-color: var(--_ts_colors---bg--main_bg);
  width: 100%;
  padding: 3rem 0;
}

.lc-cta-banner-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.lc-cta-text {
  color: #ffffff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: var(--_ts_colors---text--body-text-paragraph);
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
  text-align: center;
}

.lc-cta-button-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
  width: 15rem;
}

.lc-cta-pill-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background-color: #5368ff;
  border: 1.5px solid #F5A295;
  border-radius: 9999px;
  color: #ffffff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  padding: 0.63rem 1.6rem;
  text-decoration: none;
  transition: background-color 0.25s, border-color 0.25s, transform 0.15s, box-shadow 0.25s;
  box-shadow: 0 0 10px rgba(245, 162, 149, 0.1);
}

.lc-cta-pill-btn:hover {
  background-color: #F5A295;
  color: #2D253B;
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(245, 162, 149, 0.45);
  transform: translateY(-2px);
}

.lc-cta-pill-btn:active {
  transform: translateY(0);
}

/* ── Responsive adjustments ──────────────────────────────── */
@media (max-width: 64rem) {

  .lc-decor-line-left,
  .lc-decor-line-right,
  .lc-decor-tri-left,
  .lc-decor-tri-right {
    display: none;
  }

  .lc-comp-header-wrap {
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
  }

  .lc-comp-main-heading {
    order: 1;
    margin: 0 0 2rem 0;
  }

  .lc-comp-header-top-row {
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    order: 2;
    margin-bottom: 3rem;
  }

  .lc-comp-header-right-text {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.4;
  }

  .lc-comp-grid-container {
    padding: 0 1.5rem;
  }

  .lc-comp-grid {
    grid-template-columns: 1fr;
    gap: 5.5rem;
  }

  .lc-program-card {
    max-width: 30rem;
    margin: 0 auto;
    width: 100%;
  }

  .lc-cta-banner-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .lc-cta-text {
    text-align: center;
  }

  .lc-cta-banner-container .f-margin-bottom-57 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    max-width: 22rem;
    margin: 0 auto;
  }

  .lc-cta-banner-container .f-margin-bottom-57 .lc-btn-pdf {
    width: 100%;
    box-sizing: border-box;
  }

  .lc-cta-button-stack {
    width: 100%;
    max-width: 25rem;
  }
}

/* ============================================================
   New Footer Custom Styles for Leadership Check
   ============================================================ */
.lc-new-footer {
  background-color: var(--_ts_colors---bg--main_bg);
}

.lc-new-foo-list {
  height: auto !important;
  /* Override fixed height of 20rem on desktop */
  padding: 0rem 0;
}

.lc-new-left-wrapper {
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1rem 1.5rem;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--white);
  height: 100%;
}

.lc-new-foo-wp {
  width: 100%;
}

.lc-powered-by {
  font-size: 1.15rem;
  color: var(--_ts_colors---text--melon);
  margin: 0 0 0.5rem 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.lc-ecosystem-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 2rem 0;
}

.lc-experts-heading {
  font-size: 1.35rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.5rem;
  margin: 0 0 1.5rem 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
}

.lc-expert-profile {
  margin-bottom: 2rem;
}

.lc-expert-profile:last-child {
  margin-bottom: 0;
}

.lc-expert-name {
  font-size: 1.15rem;
  color: var(--white);
  margin: 0 0 0.25rem 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
}

.lc-expert-title {
  font-size: 0.85rem;
  color: var(--_ts_colors---text--melon);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem 0;
  font-family: 'IBM Plex Sans', sans-serif;
}

.lc-expert-specialties {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
  margin: 0 0 0.75rem 0;
}

.lc-expert-tagline {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
  margin: 0 0 0.75rem 0;
}

.lc-expert-bio {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #b5c0b7;
  margin: 0;
}

/* Middle Column Photo Styling */
.lc-new-middle-stats-item {
  position: relative;
  overflow: hidden;
  border-width: 0;
  border-radius: 1rem;
  height: 100%;
  align-self: stretch;
  min-height: 25rem;
  background-image: none !important;
}

.lc-footer-bg-photos {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  z-index: 1;
}

.lc-footer-photo-wrapper {
  flex: 1;
  width: 50%;
  height: 100%;
  position: relative;
}

.lc-footer-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  flex: none;
}

.lc-custom-follow-layout {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1rem !important;
}

.lc-social-bottom-row {
  align-self: center !important;
}

.lc-footer-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(360deg, #00000099 10%, #0000001a 65%, #0000004d 85%);
  z-index: 2;
  pointer-events: none;
}

.lc-new-footer-link-wp {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
}

.lc-new-based-foo {
  width: 100%;
  align-items: center;
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 64rem) {
  .lc-new-footer {
    padding-top: 4rem;
    margin-top: 2rem;
  }

  .lc-new-foo-list {
    flex-flow: column;
    padding: 2rem 0;
    gap: 3rem;
  }

  .lc-new-foo-item-left {
    min-height: auto;
  }

  .lc-new-left-wrapper {
    padding: 0 1.5rem;
  }

  .lc-new-middle-stats-item {
    min-height: 28rem;
    margin: 0;
    border-radius: 0;
  }

  .lc-new-footer-link-wp {
    justify-content: center !important;
    align-items: center !important;
  }

  .lc-new-based-foo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .lc-new-based-foo .follow-wp {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .lc-new-based-foo .walsh-footer-grid-social {
    justify-content: center !important;
    width: 100% !important;
  }
}

/* Mid-Tablet Breakpoint (<= 675px) */
@media (max-width: 675px) {
  .lc-comp-logos-stack .lc-footer-logo-url {
    display: none !important;
  }
}

/* Small Mobile Breakpoint (<= 479px) */
@media (max-width: 479px) {
  .lc-comp-logos-stack {
    display: none !important;
  }
}

/* Ensure reCAPTCHA badge sits above all other elements */
.grecaptcha-badge {
  z-index: 2147483647 !important;
}

/* Logo icons in social row: same size as social icons, painted black */
.walsh-icon-social.walsh-icon-logo {
  max-height: 1.13rem !important;
  width: auto;
  object-fit: contain;
  filter: brightness(0);
}