/* ============================================================
   DARTEE — EDITORIAL CREDIBILITY BAND
   Refines ONLY the "As seen on" + pull-quote strip.
   Loaded after all other homepage styles.
   ============================================================ */

.dartee-home .pressbar.pressbar--editorial,
.dartee-home .proofstrip.proofstrip--editorial {
  --cred-cream: #F4F0E6;
  --cred-green: #082A24;
  --cred-green-soft: #33463F;
  --cred-pink: #EC4D8B;
  --cred-hair: rgba(8, 42, 36, .10);
  --cred-rule: rgba(8, 42, 36, .14);

  background-color: var(--cred-cream) !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* ---------- Top band: press credentials ---------- */
.dartee-home .pressbar.pressbar--editorial {
  padding: clamp(34px, 3.4vw, 52px) 0 clamp(24px, 2.4vw, 36px) !important;
  border-bottom: 1px solid var(--cred-rule) !important;
}

.dartee-home .pressbar.pressbar--editorial .wrap {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  text-align: center !important;
}

.dartee-home .pressbar.pressbar--editorial .pressbar__eyebrow {
  display: inline-block !important;
  font-family: "Archivo", system-ui, sans-serif !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: .26em !important;
  text-transform: uppercase !important;
  color: var(--cred-pink) !important;
  margin: 0 0 clamp(18px, 2.2vw, 26px) !important;
  padding: 0 !important;
  text-align: center !important;
  opacity: 1 !important;
}

.dartee-home .pressbar.pressbar--editorial .pressbar__logos,
.dartee-home .pressbar.pressbar--editorial .pressbar__creds {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(28px, 5vw, 64px) !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  max-width: 720px !important;
  margin: 0 auto !important;
}

.dartee-home .pressbar.pressbar--editorial .pressbar__cred {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  line-height: 1 !important;
  text-align: center !important;
  color: var(--cred-green) !important;
}

.dartee-home .pressbar.pressbar--editorial .pressbar__cred-name {
  font-family: "Archivo", system-ui, sans-serif !important;
  font-size: clamp(17px, 2.2vw, 22px) !important;
  font-weight: 700 !important;
  letter-spacing: .02em !important;
  text-transform: none !important;
  color: var(--cred-green) !important;
}

.dartee-home .pressbar.pressbar--editorial .pressbar__cred-name b {
  font-weight: 900 !important;
  color: var(--cred-green) !important;
}

.dartee-home .pressbar.pressbar--editorial .pressbar__cred-detail {
  display: block !important;
  font-family: "Archivo", system-ui, sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  color: var(--cred-green-soft) !important;
  margin-top: 7px !important;
}

.dartee-home .pressbar.pressbar--editorial .pressbar__cred-rule {
  display: block !important;
  width: 1px !important;
  height: clamp(34px, 4vw, 46px) !important;
  background-color: var(--cred-hair) !important;
  flex: none !important;
}

/* ---------- Bottom band: editorial pull quotes ---------- */
.dartee-home .proofstrip.proofstrip--editorial {
  padding: clamp(22px, 2.4vw, 34px) 0 !important;
}

.dartee-home .proofstrip.proofstrip--editorial .proofstrip__row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  gap: 0 !important;
}

.dartee-home .proofstrip.proofstrip--editorial .proofstrip__quotes {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  align-items: start !important;
  justify-content: center !important;
  gap: 0 !important;
  width: 100% !important;
  max-width: 1040px !important;
  margin: 0 auto !important;
}

.dartee-home .proofstrip.proofstrip--editorial .proofstrip__quotes blockquote {
  margin: 0 !important;
  padding: 0 clamp(18px, 2.2vw, 32px) !important;
  border: 0 !important;
  text-align: center !important;
  position: relative !important;
}

.dartee-home .proofstrip.proofstrip--editorial .proofstrip__quotes blockquote:not(:last-child)::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 1px !important;
  height: 55% !important;
  background-color: var(--cred-hair) !important;
}

.dartee-home .proofstrip.proofstrip--editorial .proofstrip__quotes blockquote p {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-style: italic !important;
  font-size: clamp(14.5px, 1.4vw, 16.5px) !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  letter-spacing: .01em !important;
  color: var(--cred-green-soft) !important;
  margin: 0 !important;
  text-wrap: balance;
}

.dartee-home .proofstrip.proofstrip--editorial .proofstrip__sep,
.dartee-home .proofstrip.proofstrip--editorial .proofstrip__quotes > span:not(blockquote) {
  display: none !important;
}


/* ---------- Mobile ---------- */
@media (max-width: 760px) {
  .dartee-home .pressbar.pressbar--editorial {
    padding: 28px 0 22px !important;
  }

  .dartee-home .pressbar.pressbar--editorial .pressbar__creds {
    gap: 18px 24px !important;
  }

  .dartee-home .pressbar.pressbar--editorial .pressbar__cred-rule {
    display: none !important;
  }

  .dartee-home .pressbar.pressbar--editorial .pressbar__cred-name {
    font-size: 16px !important;
  }

  .dartee-home .proofstrip.proofstrip--editorial .proofstrip__quotes {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .dartee-home .proofstrip.proofstrip--editorial .proofstrip__quotes blockquote {
    padding: 0 12px !important;
  }

  .dartee-home .proofstrip.proofstrip--editorial .proofstrip__quotes blockquote:not(:last-child)::after {
    display: none !important;
  }

  .dartee-home .proofstrip.proofstrip--editorial .proofstrip__quotes blockquote p {
    font-size: 16px !important;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .dartee-home .proofstrip.proofstrip--editorial .proofstrip__quotes blockquote p {
    font-size: 15px !important;
  }
}
