/**
 * Bahrain Skills - Brand components
 * Logo lockup, verified badge, brand typography helpers.
 * Brand identity handoff 2026-07-19.
 */

/* ===== Horizontal logo lockup (header) ===== */
.bs-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
}
.bs-brand-lockup .bs-logo-mark {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}
.bs-brand-lockup .bs-wordmark {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: #1C1D22;          /* Ink */
  white-space: nowrap;
}
.bs-brand-lockup .bs-wordmark .bs-wordmark-accent {
  color: #CE1126;          /* Manama Red */
}

/* On dark surfaces (e.g. footer) */
.bs-on-dark .bs-brand-lockup .bs-wordmark { color: #fff; }
.bs-on-dark .bs-brand-lockup .bs-wordmark .bs-wordmark-accent { color: #F0788A; }

/* RTL: mark sits to the right of the wordmark, mirrored spacing */
html[dir="rtl"] .bs-brand-lockup,
body.rtl .bs-brand-lockup,
.r_to_l .bs-brand-lockup {
  flex-direction: row-reverse;
}

@media (max-width: 575.98px) {
  .bs-brand-lockup .bs-wordmark { font-size: 21px; }
  .bs-brand-lockup .bs-logo-mark { width: 34px; height: 34px; }
}

/* ===== Verified / premium badge ===== */
.bs-verified-badge {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

/* ===== Brand typography helpers ===== */
.bs-display,
h1.bs-display, h2.bs-display, h3.bs-display {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
