/* DIGITAL SOVEREIGNTY — page-specific styles.
   Builds on the shared tokens/components in home.css (--seagrass/--amber/
   --paprika, .iei-section-inner, .iei-eyebrow, .iei-h2, .iei-body, .iei-btn). */

.ds-main {
  background: var(--cream);
}

/* HERO — light two-column layout: copy on the left, a photo collage
   (one large image + two smaller images) on the right. */
.ds-hero {
  position: relative;
  padding: 64px 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.ds-hero.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

.ds-hero__grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
}

.ds-hero__panel {
  max-width: 460px;
}

.ds-hero__eyebrow {
  display: block;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--seagrass);
  margin-bottom: 14px;
}

.ds-hero__heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1.05;
  color: var(--graphite);
  margin: 0 0 20px;
}

.ds-hero__byline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.45;
  color: var(--seagrass);
  margin: 0 0 20px;
}

.ds-hero__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 14px;
}

.ds-hero__video-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  text-decoration: none;
  color: var(--graphite);
}

.ds-hero__play {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--seagrass);
  color: var(--seagrass);
  font-size: 13px;
  flex-shrink: 0;
}

.ds-hero__video-cta span.mono {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--seagrass);
}

/* PHOTO COLLAGE */
.ds-hero__gallery {
  position: relative;
  display: grid;
  gap: 18px;
}

.ds-hero__gallery-main,
.ds-hero__gallery-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream-alt);
}

.ds-hero__gallery-main {
  aspect-ratio: 16 / 9;
}

.ds-hero__gallery-main img,
.ds-hero__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ds-hero__gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ds-hero__gallery-item {
  aspect-ratio: 4 / 3;
}

.ds-hero__bracket {
  position: absolute;
  top: -22px;
  right: -14px;
  width: 46px;
  height: 46px;
  border-top: 3px solid var(--amber);
  border-right: 3px solid var(--amber);
  border-radius: 0 8px 0 0;
  pointer-events: none;
}

.ds-hero__dots {
  position: absolute;
  bottom: -26px;
  right: -30px;
  width: 74px;
  height: 44px;
  background-image: radial-gradient(var(--paprika) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.55;
  pointer-events: none;
}

/* ANCHOR NAV STRIP */
.ds-anchor-strip {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--charcoal-dark);
  overflow-x: auto;
  scrollbar-width: none;
}

.ds-anchor-strip::-webkit-scrollbar {
  display: none;
}

.ds-anchor-strip__inner {
  display: flex;
  gap: 4px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 36px;
}

.ds-anchor-strip a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(252, 252, 252, 0.65);
  text-decoration: none;
  padding: 16px 18px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.ds-anchor-strip a:hover,
.ds-anchor-strip a:focus-visible {
  color: #fcfcfc;
  border-bottom-color: var(--amber);
}

/* PROGRAM SECTIONS */
.ds-section {
  scroll-margin-top: 54px;
}

.ds-section--alt {
  background: var(--cream-alt);
}

.ds-program__intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.ds-program__intro .iei-eyebrow {
  text-align: center;
}

.ds-program__byline {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 14px 0 0;
}

.ds-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.ds-col__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-text);
  display: block;
  margin-bottom: 10px;
}

.ds-col__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--graphite);
  margin: 0 0 10px;
}

.ds-col__subheading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--graphite);
  margin: 22px 0 8px;
}

.ds-col__subheading:first-of-type {
  margin-top: 0;
}

.ds-col p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 10px;
}

.ds-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ds-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--muted);
}

.ds-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--seagrass);
}

.ds-list--amber li::before {
  background: var(--amber);
}

/* METRICS */
.ds-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}

.ds-metric {
  background: var(--amber-tint);
  border-radius: 12px;
  padding: 16px 18px;
}

.ds-metric strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--graphite);
  line-height: 1.15;
}

.ds-metric span {
  font-size: 13px;
  color: var(--muted);
}

.ds-metric--inline {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: none;
  padding: 0;
}

.ds-metric--inline strong {
  font-size: 15.5px;
  color: var(--primary-text);
}

.ds-metric--inline span {
  font-size: 13.5px;
}

.ds-highlight {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--primary-text);
  background: var(--seagrass-tint);
  border-radius: 999px;
  padding: 8px 16px;
  margin-top: 6px;
}

/* QUOTE */
.ds-quote {
  border-left: 3px solid var(--paprika);
  padding-left: 18px;
  margin: 18px 0 0;
}

.ds-quote__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--paprika);
  margin-bottom: 8px;
}

.ds-quote p {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--graphite);
  margin: 0 0 8px;
}

.ds-quote cite {
  font-style: normal;
  font-size: 12.5px;
  color: var(--muted);
}

/* FREELANCE ACCELERATOR — mixed tinted card grid */
.ds-freelance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.ds-fcol {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ds-fcard {
  background: #fcfcfc;
  border: 1px solid rgba(53, 53, 53, 0.08);
  border-radius: 16px;
  padding: 26px 24px;
  margin: 0;
}

.ds-fcard--mint {
  background: var(--seagrass-tint);
  border-color: transparent;
}

.ds-fcard--amber {
  background: var(--amber-tint);
  border-color: transparent;
}

.ds-fcard__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--seagrass);
  margin-bottom: 12px;
}

.ds-fcard__eyebrow--amber {
  color: var(--amber-text, #b38a00);
}

.ds-fcard__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--graphite);
  margin: 0 0 10px;
}

.ds-fcard p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 10px;
}

.ds-fcard__divider {
  border: none;
  border-top: 1px solid rgba(67, 170, 139, 0.3);
  margin: 22px 0;
}

.ds-fcard__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--seagrass);
  margin-top: 6px;
}

/* Pilot outcomes metrics */
.ds-fmetrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ds-fmetric {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ds-fmetric__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fcfcfc;
  color: var(--seagrass);
  flex-shrink: 0;
}

.ds-fmetric__icon svg {
  width: 20px;
  height: 20px;
}

.ds-fmetric strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--graphite);
  line-height: 1.2;
}

.ds-fmetric span {
  font-size: 12.5px;
  color: var(--muted);
}

/* Quote card */
.ds-fcard--quote {
  display: block;
}

.ds-fcard__quote-mark {
  display: block;
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  color: var(--seagrass);
  line-height: 0.5;
  margin-bottom: 12px;
}

.ds-fcard--quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  color: var(--graphite);
}

.ds-fcard--quote cite {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 2px solid var(--seagrass);
  width: fit-content;
}

/* Mentorship icon row */
.ds-fmentor-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 18px;
}

.ds-fmentor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.ds-fmentor-item__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--seagrass-tint);
  color: var(--seagrass);
}

.ds-fmentor-item__icon svg {
  width: 18px;
  height: 18px;
}

.ds-fmentor-item span {
  font-size: 11px;
  line-height: 1.3;
  color: var(--muted);
}

/* PATHWAY / SUB-PROGRAM CARDS (Digital Studio, Enterprise Lab, ISKOOL, Advanced Pathways) */
.ds-subcard {
  background: var(--surface, #fff);
  border: 1px solid rgba(53, 53, 53, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 16px;
}

.ds-subcard__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--graphite);
  margin: 0 0 6px;
}

.ds-subcard p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 10px;
}

/* CAPACITY-BUILDING COURSES — icon cards, teacher illustration, pathway tiles */
.ds-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.ds-cap-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ds-cap-card {
  background: var(--surface, #fff);
  border: 1px solid rgba(53, 53, 53, 0.08);
  border-radius: 18px;
  padding: 26px 24px;
}

.ds-cap-card--teach {
  background: var(--seagrass-tint);
  border-color: rgba(67, 170, 139, 0.28);
}

.ds-cap-card--teachers {
  background: var(--amber-tint);
  border-color: rgba(253, 202, 2, 0.35);
}

.ds-cap-card--matters {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.ds-cap-card--approach {
  flex: 1;
}

.ds-col__eyebrow--paprika {
  color: var(--paprika);
}

/* icon + text rows, "What We Teach" */
.ds-cap-item {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.ds-cap-item:first-of-type {
  margin-top: 14px;
}

.ds-cap-item__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fcfcfc;
  color: var(--seagrass);
}

.ds-cap-item__icon svg {
  width: 18px;
  height: 18px;
}

.ds-cap-item .ds-col__subheading {
  margin: 0 0 6px;
}

.ds-cap-item p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* teacher illustration */
.ds-cap-illustration {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}

.ds-cap-illustration svg {
  width: 150px;
  height: auto;
}

/* "Why It Matters" decorative dot pattern */
.ds-cap-dots {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 78px;
  height: 78px;
  background-image: radial-gradient(var(--paprika) 2.4px, transparent 2.4px);
  background-size: 13px 13px;
  opacity: 0.55;
  z-index: 0;
}

.ds-cap-card--matters > * {
  position: relative;
  z-index: 1;
}

/* "Our Approach" icon list */
.ds-cap-list {
  list-style: none;
  margin: 14px 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ds-cap-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.ds-cap-list__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--seagrass-tint);
  color: var(--seagrass);
}

.ds-cap-list__icon svg {
  width: 15px;
  height: 15px;
}

/* pathway tiles */
.ds-cap-pathways {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ds-cap-pathway {
  position: relative;
  border-radius: 16px;
  padding: 20px 18px;
}

.ds-cap-pathway--pink {
  background: #fde3da;
}

.ds-cap-pathway--green {
  background: var(--seagrass-tint);
}

.ds-cap-pathway__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fcfcfc;
  margin-bottom: 10px;
}

.ds-cap-pathway--pink .ds-cap-pathway__icon {
  color: var(--paprika);
}

.ds-cap-pathway--green .ds-cap-pathway__icon {
  color: var(--seagrass);
}

.ds-cap-pathway__icon svg {
  width: 17px;
  height: 17px;
}

.ds-cap-pathway .ds-col__eyebrow {
  color: var(--paprika);
  margin-bottom: 6px;
}

.ds-cap-pathway .ds-subcard__heading {
  margin-top: 0;
}

.ds-cap-pathway p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 10px;
}

.ds-cap-pathway__link {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--paprika);
  text-decoration: none;
}

.ds-cap-pathway__link:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .ds-cap-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ds-cap-pathways {
    grid-template-columns: 1fr;
  }
}

/* GUIDING METHODOLOGY — mint background with soft corner blobs/dots */
.ds-methodology-section {
  position: relative;
  overflow: hidden;
  background: var(--cream-alt);
}

.ds-methodology-section .iei-section-inner {
  position: relative;
  z-index: 1;
}

.ds-methodology-section__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.55;
}

.ds-methodology-section__blob--amber {
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: var(--amber-tint);
}

.ds-methodology-section__blob--seagrass {
  top: -90px;
  right: -90px;
  width: 260px;
  height: 260px;
  background: var(--seagrass-tint);
}

.ds-methodology-section__blob--paprika {
  bottom: -100px;
  right: -70px;
  width: 260px;
  height: 260px;
  background: rgba(236, 78, 32, 0.12);
}

.ds-methodology-section__dots {
  position: absolute;
  width: 90px;
  height: 60px;
  background-size: 12px 12px;
  pointer-events: none;
  opacity: 0.6;
}

.ds-methodology-section__dots--amber {
  top: 26px;
  left: 30px;
  background-image: radial-gradient(var(--amber) 2px, transparent 2px);
}

.ds-methodology-section__dots--paprika {
  bottom: 22px;
  right: 34px;
  background-image: radial-gradient(var(--paprika) 2px, transparent 2px);
}

/* METHODOLOGY GRID */
.ds-methodology {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ds-methodology__item {
  position: relative;
  border-radius: 16px;
  padding: 28px 22px;
  background: #fcfcfc;
  border: 1px solid rgba(53, 53, 53, 0.06);
  box-shadow: 0 10px 24px rgba(53, 53, 53, 0.06);
}

.ds-methodology__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.ds-methodology__icon svg {
  width: 24px;
  height: 24px;
}

.ds-methodology__icon--amber {
  background: var(--amber-tint);
  color: var(--amber-text, #b38a00);
}

.ds-methodology__icon--seagrass {
  background: var(--seagrass-tint);
  color: var(--seagrass);
}

.ds-methodology__icon--paprika {
  background: rgba(236, 78, 32, 0.12);
  color: var(--paprika);
}

.ds-methodology__item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--graphite);
  margin: 0 0 8px;
}

.ds-methodology__item p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* CAROUSELS (photo library + impact stories) */
.ds-carousel {
  position: relative;
}

.ds-carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.ds-carousel__track::-webkit-scrollbar {
  display: none;
}

.ds-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.ds-carousel__btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(53, 53, 53, 0.2);
  background: #fcfcfc;
  color: var(--graphite);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ds-carousel__btn:hover {
  background: var(--seagrass-tint);
  border-color: var(--seagrass);
}

.ds-carousel__btn svg {
  width: 18px;
  height: 18px;
}

/* Photo library */
.ds-photo-item {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
}

.ds-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Impact stories */
.ds-story-card {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  background: #fcfcfc;
  border: 1px solid rgba(53, 53, 53, 0.08);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ds-story-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--seagrass-tint);
  color: var(--seagrass);
}

.ds-story-card__avatar svg {
  width: 30px;
  height: 30px;
}

.ds-story-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--graphite);
  margin: 0;
}

.ds-story-card__pathway {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--amber-tint);
  color: var(--secondary-text);
}

.ds-story-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.ds-fpic {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

.ds-fpic a {
  color: var(--paprika);
  font-weight: 700;
  text-decoration: underline;
}

/* CTA extras */
.ds-cta__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.ds-cta__meta a {
  color: var(--muted-dark);
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ds-cta__meta a:hover {
  color: #fcfcfc;
}

@media (max-width: 980px) {
  .ds-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ds-hero__panel {
    max-width: none;
  }

  .ds-columns {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ds-freelance-grid {
    grid-template-columns: 1fr;
  }

  .ds-methodology {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ds-photo-item,
  .ds-story-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .ds-hero {
    padding: 40px 0;
  }

  .ds-hero__grid {
    padding: 0 20px;
  }

  .ds-hero__gallery-row {
    gap: 12px;
  }

  .ds-fmentor-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ds-methodology {
    grid-template-columns: 1fr;
  }

  .ds-photo-item,
  .ds-story-card {
    flex-basis: 84%;
  }

  .ds-anchor-strip__inner {
    padding: 0 20px;
  }
}
