h2 {
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px; /* 125% */
  letter-spacing: -0.5px;
}

h3 {
  color: var(--Black, #000);
  font-family: Poppins;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 133.333% */
}

p {
  color: var(--Black, #000);
  font-family: Poppins;
  font-size: 17px;
  font-style: bold;
  font-weight: 400;
  line-height: 30px; /* 176.471% */
}

.main-container {
  padding-top: 100px;
  margin: 0 auto;
  width: 1240px;
}

.main-container > article {
  display: grid;
  grid-template-columns: 1fr 816px; /* left flexible, right fixed 816px */
  align-items: start;
  overflow: visible; /* allow sticky */
  margin-bottom: 100px;
}

/* Left column: sticky header */
.main-container > article > [left] {
  position: sticky;
  top: var(--sticky-top, 180px);
  align-self: start;
  z-index: 1;
}

/* Right column: fixed content width */
.main-container > article > [right] {
  width: 816px;
  display: grid;
  gap: 1.5rem;
  gap: 40px;
  min-width: 0; /* prevents overflow in grid layouts */
}

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

/* Modifier for rows that shouldn't have a sticky left column */
.two-cols.no-sticky-left > [left] {
  position: static;
}

/* optional: if you want a little breathing room above the slider */
.two-cols.no-sticky-left > [right] {
  display: grid;
  gap: 16px;
}

.page-hero__title {
  margin-left: 0;
  color: #000;
}

.page-hero__content .accent {
  width: 161px;
  height: 9px;
  background-image: url(../img/accents/generics/white-main-header.svg);
  margin-left: 0;
}

@media (max-width: 980px) {
  .main-container.resource-persons {
    width: 100%;
    margin: 0;
    padding: 60px 30px;
  }

  .main-container.resource-persons > article {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .main-container.resource-persons > article > [left] {
    position: static !important;
    padding: 0;
  }

  .main-container.resource-persons .two-cols {
    padding: 0;
    margin-bottom: 0;
  }

  .main-container > article > [right] {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
}
