/* ══════════════════════════════════════════════════════════════════
   BRAND FEATURING — Editorial positioning system
   ══════════════════════════════════════════════════════════════════ */

/* ─── FEATURED BRAND MODULE ─── */
.bf-featured {
  padding: 0 0 3rem;
}
.bf-featured-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: linear-gradient(135deg, rgba(212,168,83,0.03) 0%, rgba(255,255,255,0.01) 50%, rgba(212,168,83,0.02) 100%);
  border: 1px solid rgba(212,168,83,0.08);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease-out, box-shadow 0.25s ease-out;
}
.bf-featured-card:hover {
  border-color: rgba(212,168,83,0.18);
  box-shadow: 0 12px 48px rgba(0,0,0,0.2), 0 0 24px rgba(212,168,83,0.03);
}
.bf-featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(212,168,83,0.2) 50%, transparent 90%);
}

.bf-eyebrow {
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent, #d4a853);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.bf-left { flex: 1; min-width: 0; }
.bf-brand-name {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0f2f5;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.bf-tagline {
  font-size: 0.8rem;
  color: rgba(148,163,184,0.65);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.bf-highlight {
  font-size: 0.7rem;
  color: rgba(148,163,184,0.45);
  font-style: italic;
}

.bf-stats {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
}
.bf-stat { text-align: center; }
.bf-stat-val {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: #f0f2f5;
  letter-spacing: -0.03em;
  font-feature-settings: 'tnum';
}
.bf-stat-lbl {
  display: block;
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.4);
  margin-top: 0.2rem;
}

.bf-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent, #d4a853);
  letter-spacing: 0.03em;
}
.bf-cta-arrow {
  transition: transform 0.2s ease-out;
  font-size: 0.9rem;
}
.bf-featured-card:hover .bf-cta-arrow { transform: translateX(4px); }

@media (max-width: 800px) {
  .bf-featured-card { flex-direction: column; gap: 1.5rem; text-align: center; }
  .bf-stats { justify-content: center; }
}

/* ─── BRAND SPOTLIGHT ─── */
.bf-spotlight {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.025);
}
.bf-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.bf-spot-eyebrow {
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent, #d4a853);
  opacity: 0.6;
  margin-bottom: 0.6rem;
}
.bf-spot-name {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0f2f5;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.bf-spot-tagline {
  font-size: 0.85rem;
  color: rgba(148,163,184,0.6);
  margin-bottom: 1rem;
}
.bf-spot-desc {
  font-size: 0.82rem;
  color: rgba(148,163,184,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.bf-spot-stats {
  display: flex;
  gap: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.bf-spot-stat-val {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: #f0f2f5;
  font-feature-settings: 'tnum';
}
.bf-spot-stat-lbl {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.4);
  margin-top: 0.15rem;
}
.bf-spot-ctas {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
@media (max-width: 800px) {
  .bf-spotlight-inner { grid-template-columns: 1fr; }
}

/* ─── BRAND BADGES on cards ─── */
.bb-badges {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.4rem;
}
.bb-badge {
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15em 0.45em;
  border-radius: 3px;
  white-space: nowrap;
}
.bb-ultra   { background: rgba(212,168,83,0.1); color: #d4a853; }
.bb-leader  { background: rgba(96,165,250,0.1); color: #60a5fa; }
.bb-demand  { background: rgba(74,222,128,0.1); color: #4ade80; }
.bb-inventory { background: rgba(148,163,184,0.08); color: rgba(148,163,184,0.6); }
.bb-current { background: rgba(167,139,250,0.1); color: #a78bfa; }

/* ─── SPONSORED LABELS ─── */
.bf-sponsored-tag {
  display: inline-block;
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.5);
  background: rgba(148,163,184,0.06);
  padding: 0.12em 0.45em;
  border-radius: 3px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* Sponsored featured card — subtle distinction */
.bf-featured-card.bf-sponsored {
  border-color: rgba(148,163,184,0.08);
  background: linear-gradient(135deg, rgba(148,163,184,0.015) 0%, rgba(255,255,255,0.01) 50%, rgba(148,163,184,0.01) 100%);
}
.bf-featured-card.bf-sponsored::before {
  background: linear-gradient(90deg, transparent 10%, rgba(148,163,184,0.1) 50%, transparent 90%);
}
