/* ============================================================
   Widget · Key Takeaways
   ============================================================
   Sage-toned summary card. Mirrors `.takeaways` from the
   Alcohol Withdrawal mockup. Mobile sizes are the default;
   desktop scales up so it reads as a peer of body paragraphs,
   not a footnote.
   ============================================================ */

.bdc-key-takeaways {
  background: var(--bdc-sage-soft);
  border-radius: var(--bdc-r-lg);
  padding: 20px 22px;
  margin: 0 0 28px;
  font-family: var(--bdc-sans);
}

.bdc-key-takeaways__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bdc-sage);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bdc-key-takeaways__icon {
  flex-shrink: 0;
}

.bdc-key-takeaways__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.bdc-key-takeaways__item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--bdc-ink);
  align-items: start;
}

.bdc-key-takeaways__item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--bdc-sage);
  border-radius: 50%;
  margin-top: 9px;
}

.bdc-key-takeaways__item strong {
  color: var(--bdc-ink);
  font-weight: 600;
}

.bdc-key-takeaways__item a {
  color: var(--bdc-sage-2);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
.bdc-key-takeaways__item a:hover {
  text-decoration-thickness: 2px;
}

/* ───── Desktop scaling ─────
   Same two-step pattern as Emergency Warning. Item dot scales
   with text so it never looks like a leftover pixel. */

@media (min-width: 768px) {
  .bdc-key-takeaways {
    padding: 24px 28px;
    margin: 0 0 32px;
  }
  .bdc-key-takeaways__label {
    font-size: 13px;
    margin-bottom: 14px;
    gap: 10px;
  }
  .bdc-key-takeaways__icon {
    width: 16px;
    height: 16px;
  }
  .bdc-key-takeaways__list {
    gap: 14px;
  }
  .bdc-key-takeaways__item {
    font-size: 17.5px;
    line-height: 1.55;
    grid-template-columns: 20px 1fr;
    gap: 12px;
  }
  .bdc-key-takeaways__item::before {
    width: 7px;
    height: 7px;
    margin-top: 11px;
  }
}

@media (min-width: 1200px) {
  .bdc-key-takeaways {
    padding: 28px 32px;
  }
  .bdc-key-takeaways__item {
    font-size: 18px;
  }
}

/* ───── Specificity safety ─────
   The believe-detox theme styles `.bdc-post-content-col ul li`
   (specificity 0,1,2) with site color #2A3441 and 16px size.
   Our `.bdc-key-takeaways__item` is (0,1,0) → loses to theme on
   color AND size. Re-declaring under `.bdc-v3` bumps to (0,2,0)
   which beats (0,1,2) on the class count. @media queries are
   re-declared too so desktop scaling survives the same way. */

.bdc-v3 .bdc-key-takeaways__label { color: var(--bdc-sage); }
.bdc-v3 .bdc-key-takeaways__item {
  color: var(--bdc-ink);
  font-size: 14.5px;
  line-height: 1.45;
}
.bdc-v3 .bdc-key-takeaways__item strong { color: var(--bdc-ink); }
.bdc-v3 .bdc-key-takeaways__item a { color: var(--bdc-sage-2); }

@media (min-width: 768px) {
  .bdc-v3 .bdc-key-takeaways__item {
    font-size: 17.5px;
    line-height: 1.55;
  }
}

@media (min-width: 1200px) {
  .bdc-v3 .bdc-key-takeaways__item {
    font-size: 18px;
  }
}
