/* ============================================================
   Bright Roots Wellbeing — free resource (lead-capture) pages
   Poster preview beside a short details form. Used by the free
   downloads that post to /freebie-send.php.
   ============================================================ */

.brw-freebie {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 48px;
  align-items: start;
}

.brw-freebie-art img {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.brw-freebie-form h2 { margin-top: 0; }
.brw-freebie-form > p { color: var(--muted); }

/* -- FORM EXTRAS (select, checkbox, honeypot, small print) -- */
.brw-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: #fff;
  color: var(--text);
}

.brw-form input:focus-visible,
.brw-form select:focus-visible,
.brw-form textarea:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 1px;
}

.brw-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .93rem;
  color: var(--muted);
  cursor: pointer;
}

.brw-check input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
  accent-color: var(--accent);
}

.brw-formnote {
  font-size: .85rem;
  color: var(--muted);
  margin: 14px 0 0;
}

/* Honeypot — off-screen for people, irresistible to bots. */
.brw-hp { position: absolute; left: -9999px; }

/* -- FREE PRICE TAG (shop cards) -- */
.brw-ebook .price--free { color: var(--accent); }

@media (max-width: 820px) {
  .brw-freebie { grid-template-columns: 1fr; gap: 28px; }
  .brw-freebie-art { max-width: 380px; margin: 0 auto; }
}
