/*
 * blocks/editorial-text/style.css
 * Centered editorial intro text with quieter luxury spacing.
 */

.editorial-text {
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}

.editorial-text__inner {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.editorial-text__eyebrow {
  margin: 0 0 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.editorial-text__title {
  margin-bottom: 1rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.editorial-text__body {
  max-width: 34rem;
  margin: 0 auto;
}

.editorial-text__body p {
  margin-bottom: 1rem;
  line-height: 1.85;
}

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

.editorial-text.block--default {
  background-color: var(--wp--preset--color--bg-light, #F5F1EB);
}

.editorial-text.block--soft {
  background-color: var(--wp--preset--color--bg-soft, #EAE3D9);
}

.editorial-text.block--catalogue {
  background:
    linear-gradient(180deg, rgba(188, 162, 130, 0.08) 0%, rgba(188, 162, 130, 0) 100%),
    var(--wp--preset--color--bg-light, #F5F1EB);
}

.editorial-text.block--dark {
  background-color: var(--wp--preset--color--text-primary, #2C1A12);
}

.editorial-text.block--accent {
  background-color: var(--wp--preset--color--accent, #6B1E1E);
}

.editorial-text.block--default .editorial-text__title,
.editorial-text.block--soft .editorial-text__title,
.editorial-text.block--catalogue .editorial-text__title {
  color: var(--color-primary);
}

.editorial-text.block--default .editorial-text__body,
.editorial-text.block--soft .editorial-text__body,
.editorial-text.block--catalogue .editorial-text__body {
  color: var(--color-text-soft);
}

.editorial-text.block--catalogue .editorial-text__eyebrow {
  color: rgba(139, 38, 53, 0.88);
}

.editorial-text.block--catalogue .editorial-text__inner {
  max-width: 50rem;
  margin: 0;
  text-align: left;
}

.editorial-text.block--catalogue .editorial-text__divider {
  width: clamp(7rem, 14vw, 10rem);
  height: 1px;
  margin: 0 0 1.5rem;
  background: rgba(139, 38, 53, 0.22);
}

.editorial-text.block--catalogue .editorial-text__eyebrow {
  margin-bottom: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
}

.editorial-text.block--catalogue .editorial-text__title {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.editorial-text.block--catalogue .editorial-text__body {
  max-width: 30rem;
  margin: 0;
}

.editorial-text.block--catalogue .editorial-text__body p {
  font-size: 1rem;
  line-height: 1.9;
}

.editorial-text.block--dark .editorial-text__title,
.editorial-text.block--accent .editorial-text__title {
  color: var(--color-ivory);
}

.editorial-text.block--dark .editorial-text__body,
.editorial-text.block--accent .editorial-text__body {
  color: rgba(252, 248, 242, 0.8);
}

.editorial-text.block--dark .editorial-text__eyebrow,
.editorial-text.block--accent .editorial-text__eyebrow {
  color: rgba(180, 154, 108, 0.84);
}

@media (max-width: 768px) {
  .editorial-text {
    padding: 3.75rem 0;
  }

  .editorial-text__inner,
  .editorial-text__body {
    max-width: 100%;
  }

  .editorial-text.block--catalogue .editorial-text__title,
  .editorial-text.block--catalogue .editorial-text__body {
    max-width: 100%;
  }
}
