/* ============================================
   EDITORIAL FEATURE — Asymmetric layout
   ============================================ */

.editorial {
  padding: 100px var(--side-pad) var(--section-pad-mobile);
  overflow: hidden;
}

.editorial__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.editorial__image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.editorial__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* Corner brackets — decorative editorial touch */
.editorial__image::before,
.editorial__image::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
  opacity: 0.6;
}

.editorial__image::before {
  top: 16px;
  left: 16px;
  border-width: 1px 0 0 1px;
}

.editorial__image::after {
  bottom: 16px;
  right: 16px;
  border-width: 0 1px 1px 0;
}

.editorial__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial__eyebrow {
  margin-bottom: 20px;
}

.editorial__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.editorial__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--warm-gray);
  margin-bottom: 12px;
}

.editorial__signature {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--charcoal);
  margin-top: 16px;
}

.editorial__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  transition: gap 0.3s var(--ease-out);
}

.editorial__link:hover {
  gap: 14px;
}

.editorial__link svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}

@media (min-width: 768px) {
  .editorial {
    padding: 160px 40px var(--section-pad-desktop);
  }

  .editorial__inner {
    flex-direction: row;
    gap: 0;
    align-items: center;
  }

  .editorial__image {
    width: calc(60% + 40px);
    flex-shrink: 0;
    margin-left: -40px;
  }

  .editorial__image img {
    aspect-ratio: 4 / 5;
  }

  .editorial__text {
    width: 40%;
    padding-left: 64px;
    padding-right: 24px;
  }

  .editorial__title {
    font-size: 44px;
  }

  .editorial__image::before,
  .editorial__image::after {
    width: 60px;
    height: 60px;
  }

  .editorial__image::before {
    top: 24px;
    left: 24px;
  }

  .editorial__image::after {
    bottom: 24px;
    right: 24px;
  }
}

@media (min-width: 1200px) {
  .editorial__image {
    width: calc(60% + 60px);
    margin-left: -60px;
  }

  .editorial__text {
    padding-left: 80px;
  }

  .editorial__title {
    font-size: 52px;
  }
}
