/* =============== what-included-section start =============== */

.what-included-section {
  padding: 50px 0;
  background-color: var(--Neutral-350);
}

.what-included-title {
  margin: 0 0 4px;
  font-family: HarlowDuoSerifPlain, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 50.4px */
  color: var(--Primary-teal);
  text-align: center;
}

.what-included-description {
  max-width: 627px;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  color: var(--Neutral-50, #363636);
  text-align: center;
}

.thematic-story .what-included-description {
  max-width: 864px;
}

.what-included-list {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  padding: 0;
  margin: 44px 0 0;
  list-style: none;
}

.what-included-item {
  display: flex;
  gap: 24px;
  align-items: center;
}

.what-included-item-image-wrapper {
  flex: 0 0 124px;
  flex-shrink: 0;
  width: 124px;
  height: auto;
  aspect-ratio: 1 /1;
  overflow: hidden;
  border: 2px solid rgba(119, 223, 223, 0.21);
  border-radius: 50%;
}

.what-included-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.what-included-item-title {
  margin: 0 0 4px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  color: var(--Neutral-50);
}

.what-included-item-description {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: rgba(96, 94, 94, 0.8);
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .what-included-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media screen and (max-width: 480px) {
  .what-included-section {
    padding: 32px 0;
  }

  .what-included-title {
    font-size: 28px;
  }

  .what-included-description {
    font-size: 14px;
  }

  .what-included-item {
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }

  .what-included-item-image-wrapper {
    flex: 0 0 72px;
    width: 72px;
  }

  .what-included-item-title {
    font-size: 16px;
    text-align: center;
  }

  .what-included-item-description {
    text-align: center;
  }
}

/* =============== what-included-section end =============== */
