/* ═══════════════════════════════════════════════════════════
   CLO Hero Section Shortcode
   ═══════════════════════════════════════════════════════════ */

/* ── Byline ──────────────────────────────────────────────── */
.cb-hero-byline {
  margin-top: 0.75rem;
  font-size: 12px;
  line-height: 1.5;
  color: #9ca3af;
}

.cb-hero-byline a {
  color: #d1d5db;
  text-decoration: none;
}

.cb-hero-byline a:hover {
  text-decoration: underline;
}

/* ── Dot separator (byline + trust bar) ──────────────────── */
.cb-hero-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #0075EB;
  vertical-align: middle;
  margin-inline: 8px;
}

/* ── Tooltip icon override ────────────────────────────────── */
.cb-hero-byline .tooltip-icon svg,
.cb-hero-intro .tooltip-icon svg,
.cb-hero-toc .tooltip-icon svg,
.cb-hero-trust .tooltip-icon svg {
  fill: white;
  height: 10px;
  width: 10px;
  transform: translateY(1px);
}

/* ── Intro copy ──────────────────────────────────────────── */
.cb-hero-intro {
  margin-top: 1.25rem;
  font-size: 15px;
  line-height: 1.625;
  color: #d1d5db;
  max-width: 48rem;
  text-wrap: balance;
}

.cb-hero-intro p {
  margin: 0;
}

.cb-hero-intro a {
  color: #0075EB;
  text-decoration: none;
}

.cb-hero-intro a:hover {
  text-decoration: underline;
}

/* ── TOC (On this page) ──────────────────────────────────── */
.cb-hero-toc {
  margin-top: 1.5rem;
  max-width: 910px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cb-hero-toc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.cb-hero-toc-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
  flex-shrink: 0;
}

.cb-hero-toc-label {
  font-size: 13px;
  font-weight: 600;
  color: #d1d5db;
}

.cb-hero-toc-chevron {
  width: 0.875rem;
  height: 0.875rem;
  color: #6b7280;
  margin-left: auto;
  transition: transform 0.2s ease;
}

.cb-hero-toc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cb-hero-toc-content.open {
  max-height: 400px;
}

.cb-hero-toc-grid {
  padding: 0 1rem 0.75rem;
  margin-left: 1.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
  row-gap: 0.375rem;
}

.cb-hero-toc-grid a {
  font-size: 12px;
  color: #0075EB;
  text-decoration: none;
  padding: 0.125rem 0;
}

.cb-hero-toc-grid a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .cb-hero-toc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Trust bar ───────────────────────────────────────────── */
.cb-hero-trust {
  margin-top: 1rem;
  font-size: 12px;
  line-height: 1.5;
  color: #9ca3af;
}

.cb-hero-trust strong {
  color: white;
  font-weight: 500;
}

.cb-hero-trust a {
  color: #0075EB;
  text-decoration: none;
  font-weight: 500;
}

.cb-hero-trust a:hover {
  text-decoration: underline;
}
