/**
 * wc-hc-editorial.css
 * HC Editorial Spread — image left, pull headline + warm + prose right.
 */

.editorial-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
}

.img-editorial {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
}

.img-editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
}

.editorial-pull {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--red-mid);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-sm);
}

.t-warm.editorial-warm {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
  line-height: 1.55;
  margin-bottom: var(--sp-md);
}

.editorial-prose {
  font-size: var(--t-body);
  line-height: 1.75;
  color: var(--dark);
  overflow-wrap: break-word;
}

.editorial-prose p {
  margin-bottom: var(--sp-sm);
}

.editorial-prose p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .editorial-spread {
    grid-template-columns: 1fr;
  }
}
