.editorial .header {
  margin-bottom: 0;
}

.editorial .Content {
  padding-top: 0;
}

.ed-hero {
  width: 100%;
  margin-bottom: 5vh;
  margin-top: 3vh;
}

.ed-hero img,
.ed-hero video {
  width: 100%;
  display: block;
  max-height: 80vh;
  object-fit: cover;
}

.ed-header {
  padding-top: 0;
  padding-bottom: 4vh;
}

.ed-title {
  font-size: 4em;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 0.05em;
}

.ed-tagline {
  font-size: 4em;
  font-weight: 500;
  font-style: normal;
  line-height: 0.95;
  letter-spacing: -0.02em;
  opacity: 0.65;
}

.ed-meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4vw;
  margin-bottom: 6vh;
  padding-bottom: 4vh;
}

.ed-description {
  flex: 2;
  font-size: 1.05em;
  line-height: 1.75;
  max-width: 58%;
}

.ed-credits {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2em;
}

/* full-width image */
.ed-image {
  width: 100%;
  margin-bottom: 0;
}

.ed-image img,
.ed-image video {
  width: 100%;
  display: block;
}

.ed-caption {
  font-size: 0.8em;
  opacity: 0.45;
  margin-top: 0.5em;
  letter-spacing: 0.02em;
}

/* body text block */
.ed-body {
  max-width: 62%;
  margin: 5vh 0;
  font-size: 1.05em;
  line-height: 1.85;
}

/* two-up image grid */
.ed-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
}

/* half-width image */
.ed-half {
  width: 50%;
  margin-bottom: 0;
}

.ed-half.right {
  margin-left: auto;
}

.ed-half img,
.ed-half video {
  width: 100%;
  display: block;
}

/* auto-switching carousel */
.ed-carousel {
  position: relative;
  overflow: hidden;
}

.ed-carousel-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.ed-carousel-slide:first-child {
  position: relative;
}

.ed-carousel-slide.active {
  opacity: 1;
}

/* text + image side by side */
.ed-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 0;
}

.ed-split.reverse {
  direction: rtl;
}

.ed-split.reverse > * {
  direction: ltr;
}

.ed-split-text {
  font-size: 1.05em;
  line-height: 1.8;
  padding: 2vw 2vw 0 0;
}

.ed-split.reverse .ed-split-text {
  padding: 2vw 0 0 2vw;
}

.ed-split-text .ed-label {
  margin-bottom: 0.75em;
}

.ed-split-media img,
.ed-split-media video {
  width: 100%;
  display: block;
}

/* accent pull-quote */
.ed-pullquote {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.1;
  color: var(--my-variable);
  margin: 6vh 0;
  letter-spacing: -0.01em;
  max-width: 75%;
}

/* section label */
.ed-label {
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
  margin-bottom: 1em;
}

@media only screen and (max-width: 768px) {
  .ed-title {
    font-size: 2em;
  }
  .ed-tagline {
    font-size: 2em;
  }
  .ed-meta {
    flex-direction: column;
    gap: 2em;
  }
  .ed-description {
    max-width: 100%;
  }
  .ed-body {
    max-width: 100%;
  }
  .ed-grid-2 {
    grid-template-columns: 1fr;
  }
  .ed-half {
    width: 100%;
  }
  .ed-split {
    grid-template-columns: 1fr;
  }
  .ed-split.reverse {
    direction: ltr;
  }
  .ed-pullquote {
    font-size: 1.6em;
    max-width: 100%;
  }
}
