/* ===== EDITORIAL SECTION — Bloc-type CSS (chargé dynamiquement) ===== */

.editorial-section {
  background: var(--bg-cream);
  color: var(--text-dark);
  padding: 8rem 6rem;
  position: relative;
  overflow: hidden;
}

.editorial-section__x-deco {
  position: absolute;
  right: -35px;
  top: 0;
  height: 100%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.editorial-section__x-deco svg {
  height: 100%;
  width: auto;
  display: block;
}

.editorial-section__x-deco svg path {
  fill: var(--accent);
  stroke: none;
}

.editorial-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.editorial-section__subtitle {
  font-family: 'Plaax Ney', sans-serif;
  font-style: oblique;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--accent);
  margin-bottom: 3rem;
  max-width: 700px;
}

.editorial-section__columns {
  column-count: 2;
  column-gap: 4rem;
  margin-bottom: 3rem;
}

.editorial-section__columns p {
  color: var(--text-muted-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  break-inside: avoid;
}

.editorial-section__actions {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .editorial-section {
    padding: 6rem 2rem;
  }

  .editorial-section__columns {
    column-count: 1;
  }
}

@media (max-width: 768px) {
  .editorial-section__actions {
    flex-direction: column;
  }

  .editorial-section__actions .btn {
    white-space: normal;
    height: auto;
    min-height: var(--btn-height);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .editorial-section { padding: 5rem 1rem; }
}
