/* ============================================================
   EDITORIAL PAUSE — warm-cream negative space between chapters.
   Base variant is pure empty space; .editorial-pause--brand
   carries the quiet brand mantra between the Muni / Why Dartee
   two-panel editorial spread and The Dartee Standard section.
   ============================================================ */

.dartee-home .editorial-pause {
  width: 100%;
  background: var(--d-cream, #F4F0E6);
  border: 0;
  margin: 0;
  padding: 0;
  /* keep any inherited patterns / pinstripes / shadows out */
  box-shadow: none !important;
  background-image: none !important;
}

/* ---------- BRAND MANTRA PAUSE ---------- */
.dartee-home .editorial-pause--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 28px);
  padding: 0 20px;
  text-align: center;
}

.dartee-home .editorial-pause--brand .editorial-pause__line {
  display: block;
  font-family: Archivo, system-ui, sans-serif;
  font-size: clamp(10px, 1.05vw, 13px);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: #082A24;
  white-space: nowrap;
  margin: 0;
}

/* Two small vertical accent bars — one green, one pink — between the phrases */
.dartee-home .editorial-pause--brand .editorial-pause__bar {
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 10px;
  opacity: 0.85;
}

.dartee-home .editorial-pause--brand .editorial-pause__bar--green {
  background: #082A24;
  margin: 0 2px 0 0.8em;
}

.dartee-home .editorial-pause--brand .editorial-pause__bar--pink {
  background: #EC4D8B;
  margin: 0 0.8em 0 2px;
}

/* Extremely thin dark-green rules, stopping well before the edges */
.dartee-home .editorial-pause--brand .editorial-pause__rule {
  display: block;
  width: clamp(40px, 12vw, 140px);
  height: 1px;
  background: rgba(8, 42, 36, 0.18);
  flex: 0 0 auto;
}

/* Desktop */
@media (min-width: 1025px) {
  .dartee-home .editorial-pause { height: clamp(56px, 5vw, 64px); }
  .dartee-home .editorial-pause--brand { height: clamp(90px, 9vw, 120px); }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .dartee-home .editorial-pause { height: clamp(40px, 4.5vw, 48px); }
  .dartee-home .editorial-pause--brand { height: clamp(70px, 8vw, 90px); }
}

/* Mobile */
@media (max-width: 767px) {
  .dartee-home .editorial-pause { height: clamp(32px, 3.5vw, 40px); }
  .dartee-home .editorial-pause--brand {
    height: clamp(70px, 10vw, 90px);
    padding: 0 16px;
    gap: 10px;
  }

  .dartee-home .editorial-pause--brand .editorial-pause__line {
    font-size: clamp(9px, 2.4vw, 12px);
    letter-spacing: 0.12em;
  }

  .dartee-home .editorial-pause--brand .editorial-pause__rule {
    width: clamp(24px, 8vw, 60px);
  }

  .dartee-home .editorial-pause--brand .editorial-pause__bar {
    height: 8px;
  }

  .dartee-home .editorial-pause--brand .editorial-pause__bar--green {
    margin: 0 2px 0 0.6em;
  }

  .dartee-home .editorial-pause--brand .editorial-pause__bar--pink {
    margin: 0 0.6em 0 2px;
  }
}
