/* Verified badge explainer — [bs_verified] (pages 150489/150498/150502).
 * Builds on the shared bs-ui components (bs-update-info.css) + embedded
 * [bs_faq hero="0"] (bs-faq.css). Brand cyan family; dark under html.bs-dark.
 */

.bs-vf-hero-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bs-vf-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #1DB0E1;
  color: #fff;
  box-shadow: 0 8px 20px rgba(29, 176, 225, 0.35);
}
.bs-vf-hero-badge svg { width: 30px; height: 30px; }

/* Means / does-not-mean cards */
.bs-vf-meaning {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 36px 0 44px;
}
.bs-vf-means .bs-ui-note-icon { background: #e6f7ee; color: #16a34a; }
.bs-vf-notmeans .bs-ui-note-icon { background: #fdeeee; color: #dc2626; }

/* Section headings */
.bs-vf-heading {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: #171717;
  margin: 0 0 8px;
}
.bs-vf-intro {
  font-size: 15px;
  line-height: 1.6;
  color: #44515c;
  margin: 0 0 18px;
}

/* Entity guide cards */
.bs-vf-get { margin: 0 0 44px; }
.bs-vf-entities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.bs-vf-entity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e2eef5;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(23, 23, 23, 0.04);
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.bs-vf-entity:hover {
  border-color: #9AE0F7;
  box-shadow: 0 10px 24px rgba(29, 176, 225, 0.13);
  transform: translateY(-2px);
}
.bs-vf-entity-label {
  font-size: 16px;
  font-weight: 700;
  color: #171717;
}
.bs-vf-entity-text {
  font-size: 13px;
  line-height: 1.5;
  color: #6b7f8c;
  min-height: 40px;
}
.bs-vf-entity-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #1DB0E1;
  margin-top: auto;
}
.bs-vf-entity-link svg { width: 15px; height: 15px; }

/* Verified list pills */
.bs-vf-lists { margin: 0 0 44px; }
.bs-vf-list-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bs-vf-list-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #d3edf9;
  background: #e8f7fc;
  color: #206389;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.bs-vf-list-pill svg { width: 16px; height: 16px; color: #1DB0E1; }
.bs-vf-list-pill:hover {
  background: #d7f0fa;
  border-color: #9AE0F7;
  color: #206389;
}

/* Embedded FAQ spacing */
.bs-vf-faq { margin: 0 0 44px; }

/* Contact CTA */
.bs-vf-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
  background: linear-gradient(135deg, #e8f7fc 0%, #f4fbfe 100%);
  border: 1px solid #d3edf9;
  border-radius: 16px;
}
.bs-vf-contact .bs-vf-heading { margin-bottom: 4px; }
.bs-vf-contact .bs-vf-intro { margin-bottom: 0; }
.bs-vf a.bs-vf-contact-btn {
  flex: 0 0 auto;
  display: inline-block;
  padding: 12px 26px;
  border-radius: 10px;
  background: #1DB0E1;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease;
}
.bs-vf a.bs-vf-contact-btn:hover { background: #1697c2; color: #fff; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1023px) {
  .bs-vf-entities { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .bs-vf-meaning { grid-template-columns: 1fr; margin: 26px 0 32px; }
  .bs-vf-heading { font-size: 20px; }
  .bs-vf-entities { grid-template-columns: 1fr; }
  .bs-vf-entity-text { min-height: 0; }
  .bs-vf-get, .bs-vf-lists, .bs-vf-faq { margin-bottom: 32px; }
  .bs-vf-contact { flex-direction: column; align-items: flex-start; padding: 22px; }
}

/* ── Dark mode ──────────────────────────────────────────── */
html.bs-dark .bs-vf-heading { color: #f9fafb; }
html.bs-dark .bs-vf-intro { color: #cbd5e1; }
html.bs-dark .bs-vf-means .bs-ui-note-icon { background: #143526; color: #4ade80; }
html.bs-dark .bs-vf-notmeans .bs-ui-note-icon { background: #3a1a1a; color: #f87171; }
html.bs-dark .bs-vf-entity {
  background: #1e1e32;
  border-color: #2a2a44;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
html.bs-dark .bs-vf-entity:hover { border-color: #3b6a80; }
html.bs-dark .bs-vf-entity-label { color: #f9fafb; }
html.bs-dark .bs-vf-entity-text { color: #8896a3; }
html.bs-dark .bs-vf-list-pill {
  background: #252540;
  border-color: #2a2a44;
  color: #9AE0F7;
}
html.bs-dark .bs-vf-list-pill:hover { background: #2a2a48; border-color: #3b6a80; }
html.bs-dark .bs-vf-contact {
  background: linear-gradient(135deg, #1d3a4d 0%, #16162a 100%);
  border-color: #2a2a44;
}
html.bs-dark .bs-vf a.bs-vf-contact-btn { background: #1DB0E1; color: #fff; }
