/* ======================================================
   parent-grid.css — 01.20.2026 — 03:58 am CST
   The Bee Place 3.0 — Parent Grid Module (Cards)
   ====================================================== */

/* ======================================================
   Parent Grid — TBP 3.0
   ====================================================== */

.tbp-parent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 220px));
  gap: 22px;
  max-width: 980px;
  margin: 28px auto;
  padding: 0 12px;
  justify-content: center;
}

.tbp-parent-card {
  background: #000;
  border: 1px solid #3a2a12;
  box-shadow: 0 0 0 1px #000;
  transition: transform .15s ease, box-shadow .15s ease;
}

.tbp-parent-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.6);
}

.tbp-parent-card img {
  display: block;
  width: 100%;
  height: auto;
}

.tbp-parent-card-title {
  text-align: center;
  padding: 10px 8px;
  font-size: 15px;
  font-weight: 600;
  color: #f6d27b;
  background: #000;
  border-top: 1px solid #3a2a12;
}

/* FIX: Explicit parent card link color */
.tbp-parent-card a,
.tbp-parent-card a:visited {
  color: #FDFC01;               /* TBP Yoke */
  text-decoration: none;
}

.tbp-parent-card a:hover {
  text-decoration: underline;
}

/* ======================================================
   Grandchild Roll-Up Links
   ====================================================== */

.tbp-parent-card-children {
  padding: 6px 10px 10px;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
}

.tbp-parent-card-children a {
  color: #c9a84e;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.tbp-parent-card-children a:hover {
  color: #f6d27b;
  text-decoration: underline;
}

/* ======================================================
   Parent Page — Centering Rules
   ====================================================== */

.tbp-parent-page {
  text-align: center;
}

/* BLOCK F — Parent Title */
.tbp-parent-title {
  max-width: 980px;
  margin: 24px auto 12px;
}

.tbp-parent-title h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #f6d27b;
}

/* BLOCK G — Parent Explained Snippet */
.tbp-parent-explained {
  max-width: 980px;
  margin: 0 auto 22px;
  text-align: center;
}

/* BLOCK — Parent FAQs Snippet */
.tbp-parent-faqs {
  max-width: 980px;
  margin: 0 auto 22px;
  text-align: left;
}

/* BLOCK I — Parent Description Snippet */
.tbp-parent-description {
  max-width: 980px;
  margin: 22px auto;
  text-align: left;
}

/* BLOCK ML — Promo Bar */
.tbp-parent-promo {
  max-width: 980px;
  margin: 28px auto;
  text-align: center;
}

/* ======================================================
   Tier-1 Hero Responsive Layout (safe)
   ====================================================== */

.tbp-parent-hero > div {
  display: flex;
  gap: 22px;
  align-items: center;
}

/* Desktop / tablet */
.tbp-hero-img,
.tbp-hero-text {
  flex: 0 0 50%;
}

.tbp-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile break */
@media (max-width: 640px) {
  .tbp-parent-hero > div {
    flex-direction: column;
  }

  .tbp-hero-img,
  .tbp-hero-text {
    flex: 0 0 100%;
  }
}

/* ======================================================
   END OF FILE: parent-grid.css
   ====================================================== */
