h1 {
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px; /* 138.889% */
}

/* Page container */
.le-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

/* Head */
.le-head {
  padding: 0;
  margin: 80px 0;
  width: 100%;
}
.le-title {
  margin: 0 0 10px 0;
}

.accent {
  margin-top: 10px;
  display: inline-block;
  width: 299px;
  height: 10px;
  background-image: url("../img/accents/lived_experience/header_chevron.svg");
  background-repeat: no-repeat;
  background-size: contain; /* or 'cover', depending on your art */
  background-position: left center;
}

/* Two columns (sticky left, content right) */
.le-main {
  padding: 24px 0 80px;
}
.le-two-cols {
  display: flex;
  align-items: flex-start;
  gap: 32px; /* the Figma gap */
}
.le-left {
  position: sticky;
  top: 100px; /* sticks under the header */
  width: 392px;
  min-height: 1px;
}
.le-left__inner {
  display: inline-block;
  width: 102px;
  height: 65px;
  background: url("../img/lived_experience/le_icon.svg") no-repeat 0 0 / 100%
    100%;
}

/* Right column */
.le-right {
  flex: 0 0 816px; /* match your right column width */
  max-width: 816px;
}

.le-component-container {
  padding: 60px 0;
  border-bottom: 1px solid #dedede;
}
.le-component-container:first-child {
  padding-top: 0;
}
.le-component-container:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Section block */
.le-section__title {
  margin: 0 0 12px 0;
  font-weight: 600;
}
.le-section__body > *:first-child {
  margin-top: 0;
}
.le-section__body > *:last-child {
  margin-bottom: 0;
}

/* Quote block (dark card) */

.le-quote {
  background: #0b0b0b;
  color: #fff;
  border-radius: 16px;
  padding: 40px;
}
.le-quote__icon {
  width: 56px;
  height: 43px;
  margin-bottom: 24px;
  background: url("../img/icons/quote_marks.svg") no-repeat center/contain;
}
.le-quote__text {
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 150% */
}
.le-quote__meta {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.le-quote__name {
  color: var(--500-Yellow, #ffc845);
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 166.667% */
}
.le-quote__pos {
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 160% */
}

/* Small screens */
@media (max-width: 1024px) {
  .le-two-cols {
    gap: 48px;
  }
  .le-left {
    flex-basis: 200px;
    top: 72px;
  }
  .le-right {
    flex-basis: 1;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .le-two-cols {
    flex-direction: column;
    gap: 24px;
  }
  .le-left {
    position: static;
    flex-basis: auto;
  }
  .le-right {
    width: 100%;
  }
  .le-quote {
    border-radius: 12px;
  }
}

/* Explore / related lived experiences */
.le-related {
  padding: 80px 0;
}
.le-related .le-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 12px;
}

.accent-explore {
  margin-top: 10px;
  display: inline-block;
  width: 112px;
  height: 9px;
  background-image: url("../img/accents/lived_experience/explore_accent.svg");
  background-repeat: no-repeat;
  background-size: contain; /* or 'cover', depending on your art */
  background-position: left center;
}

/* 3-up grid, 32px gap, collapses on smaller screens */
.le-related__grid {
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 392px);
  gap: 32px;
  align-items: start;
  overflow: visible;
}

/* Card */
.le-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Image tile: 392 × 312, cover, rounded */
.le-card__img {
  display: block;
  width: 392px;
  height: 312px;
  border-radius: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Fallback (no image) */
.le-card--fallback .le-card__img {
  background-color: #00807d; /* brand teal */
}

/* Title + right chevron row */
.le-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.le-card__title {
  color: #000;
  font: 600 16px/1.5 Poppins, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial;
  text-decoration: none;
}

.le-card__title:hover {
  text-decoration: underline;
}

.le-card__cta {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
}

/* Responsive tweaks */
@media (max-width: 1280px) {
  .le-related__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .le-card__img {
    width: 100%;
    height: 0;
    padding-bottom: calc(312 / 392 * 100%);
  } /* keep aspect ratio */
}
@media (max-width: 900px) {
  .le-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .le-related__grid {
    grid-template-columns: 1fr;
  }
}
