/* ======================================================
// parent-grid.css — 01.12.2026 — 03:28 PM 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-fill, minmax(220px, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 28px auto;
  padding: 0 12px;
}

.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;
}

.tbp-parent-card a {
  text-decoration: none;
}

/* ======================================================
   Grandchild Roll-Up Links
   ====================================================== */

.tbp-parent-card-children {
  padding: 6px 10px 10px;
  text-align: center;
  font-size: 12px;              /* slightly smaller */
  line-height: 1.45;
}

.tbp-parent-card-children a {
  color: #c9a84e;               /* muted site-gold */
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.tbp-parent-card-children a:hover {
  color: #f6d27b;               /* primary gold on hover */
  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 I — Parent Description Snippet */
.tbp-parent-description {
  max-width: 980px;
  margin: 22px auto;
  text-align: center;
}

/* BLOCK J — Promo Bar (normalize spacing) */
.tbp-parent-promo {
  max-width: 980px;
  margin: 28px auto;
  text-align: center;
}

/* ======================================================
   END OF FILE: parent-grid.css
   ====================================================== */
