/* ============================================
   Editorial Layout Module
   ============================================ */
.editorial-layout {
  position: relative;
  width: 100%;
  background-color: #0E151D;
  padding-bottom: 60px;
  margin: 0;
}
.editorial-layout__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* ---- Image area ---- */
.editorial-layout__video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.editorial-layout__video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.editorial-layout__image-wrapper {
  position: relative;
  width: 74.5%;
  margin-left: auto;
  margin-right: 0;
}
.editorial-layout__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* Editorial logo - overlaps bottom right of image */
.editorial-layout__logo {
  position: absolute;
  bottom: -42px;
  right: 70px;
  width: 166px;
  height: 155px;
  z-index: 2;
}

/* ---- Heading block - overlaps image ---- */
.editorial-layout__heading-block {
  position: relative;
  margin-top: -95px;
  max-width: 640px;
  z-index: 2;
}
.editorial-layout__heading {
  font-family: 'Dazzed', sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 112%;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin: 0 0 19px 0;
}
.editorial-layout__subheading {
  font-family: 'Dazzed', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 155%;
  color: #B3FF5C;
  margin: 0;
  max-width: 560px;
}

/* ---- Bottom content row ---- */
.editorial-layout__content-row {
  display: flex;
  gap: 0;
  margin-top: 18px;
}
.editorial-layout__col {
  flex: 1;
  font-family: 'Dazzed', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 200%;
  color: #CDCDCD;
  letter-spacing: 0.3px;
  padding-left: 0;
  padding-right: 20px;
}
.editorial-layout__col--2 ul {
  list-style: disc;
  padding-left: 0;
  padding-right: 20px;
  margin: 0 40px;
}
.editorial-layout__col--2 ul li {
  font-family: 'Dazzed', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 200%;
  color: #CDCDCD;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  padding-left: 0;
  padding-right: 0;
}
.editorial-layout__col--2 ul li::marker {
  font-size: 8px;
  color: #CDCDCD;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991px) {
   .editorial-layout__container {
    padding: 0 32px 24px 32px;
  }
  .editorial-layout__image-wrapper {
    width: 100%;
  }
  .editorial-layout__heading {
    font-size: 42px;
  }
  .editorial-layout__heading-block {
    margin-top: 20px;
  }
  .editorial-layout__logo {
    width: 120px;
    height: 112px;
    right: 40px;
    bottom: -30px;
  }
  .editorial-layout__content-row {
    flex-wrap: wrap;
  }
  .editorial-layout__col {
    flex: 1 1 45%;
  }
  .editorial-layout__col--3 {
    flex: 1 1 100%;
  }
}
@media (max-width: 767px) {
  .editorial-layout__container {
    padding: 0 24px 12px 24px;
  }
  .editorial-layout__heading {
    font-size: 32px;
    text-align: center;
  }
  .editorial-layout__subheading {
     font-size: 16px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .editorial-layout__heading-block .editorial-layout__subheading {
    font-size: 16px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
  .editorial-layout__heading-block {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .editorial-layout__logo {
    width: 90px;
    height: 84px;
    right: 20px;
    bottom: -20px;
  }
  .editorial-layout__content-row {
    flex-direction: column;
    gap: 24px;
  }
  .editorial-layout__col {
    flex: 1 1 100%;
    text-align: center;
     padding-left: 24px;
  padding-right: 24px;
  }
}
@media (max-width: 480px) {
  .editorial-layout__heading-block {
    margin-top: 24px;
  }
  .editorial-layout__image-wrapper {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }
    .editorial-layout__col {
  padding-left: 0;
  padding-right: 0;
}
  .editorial-layout {
  padding-bottom: 0px;
}
