/* Companies House Data section styles - extends fb-page design system */

.chd-meta{
  font-size:13px;
  color:var(--text-muted);
  margin:0 0 28px;
  padding-bottom:16px;
  border-bottom:1px solid var(--glass-border);
}
.chd-stat-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-bottom:28px;
}
@media (max-width:640px){
  .chd-stat-row{grid-template-columns:repeat(2,1fr);}
}
.chd-stat{
  background:var(--surface-elevated);
  border:1px solid var(--glass-border);
  border-radius:16px;
  padding:22px 16px;
  text-align:center;
}
.chd-stat .fb-num{
  font-size:clamp(18px,3.5vw,24px);
  font-weight:800;
  color:var(--text-primary);
  letter-spacing:-0.01em;
}
.chd-stat .fb-num.fb-pos{color:#34d399;}
.chd-stat .fb-num.fb-neg{color:#f87171;}
.chd-stat .fb-lab{
  display:block;
  margin-top:6px;
  font-size:10.5px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text-muted);
}
.chd-section{margin-bottom:8px;}
.chd-section h2{
  font-size:22px;
  font-weight:800;
  color:var(--text-primary);
  margin:0 0 16px;
  letter-spacing:-0.01em;
}
.chd-section h3{
  font-size:16px;
  font-weight:700;
  color:var(--text-primary);
  margin:28px 0 12px;
}
.chd-section p{
  font-size:16px;
  line-height:1.75;
  color:var(--text-secondary);
  margin:0 0 16px;
}
.chd-section p:last-child{margin-bottom:0;}
.chd-section strong{color:var(--text-primary);}
.chd-insights{
  list-style:none;
  margin:0 0 8px;
  padding:0;
}
.chd-insights li{
  position:relative;
  padding:12px 0 12px 24px;
  border-bottom:1px solid var(--glass-border);
  font-size:15px;
  line-height:1.6;
  color:var(--text-secondary);
}
.chd-insights li:last-child{border-bottom:none;}
.chd-insights li::before{
  content:'';
  position:absolute;
  left:0;
  top:19px;
  width:7px;
  height:7px;
  background:var(--accent-amber);
  border-radius:2px;
}
.chd-insights li strong{color:var(--text-primary);}
.chd-table-caption{
  display:block;
  font-size:12.5px;
  font-style:italic;
  color:var(--text-muted);
  margin:24px 0 10px;
}
.chd-about{
  font-size:13px;
  color:var(--text-muted);
  line-height:1.65;
  padding:16px 20px;
  background:var(--surface-card);
  border-left:3px solid var(--accent-amber);
  border-radius:0 12px 12px 0;
  margin:8px 0 0;
}
.chd-cta{
  background:linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border:1px solid var(--glass-border-strong);
  border-radius:20px;
  padding:30px 32px;
  margin-top:8px;
  color:#fff;
}
.chd-cta h2{color:#fff;margin:0 0 10px;font-size:20px;}
.chd-cta p{color:#c9d4e0;margin:0 0 18px;font-size:15px;}
.chd-cta a{
  display:inline-block;
  background:var(--accent-amber);
  color:#00112A;
  font-weight:700;
  padding:12px 22px;
  border-radius:10px;
  text-decoration:none;
  font-size:14px;
}

/* ---- Hub listing page ---- */
.chd-hub-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
@media (max-width:768px){
  .chd-hub-grid{grid-template-columns:1fr;}
}
.chd-hub-card{
  display:block;
  background:var(--surface-card);
  border:1px solid var(--glass-border);
  border-radius:20px;
  padding:28px 30px;
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  text-decoration:none;
  transition:border-color .15s ease, transform .15s ease;
}
.chd-hub-card:hover{
  border-color:var(--glass-border-strong);
  transform:translateY(-2px);
}
.chd-hub-card .fb-eyebrow{margin-bottom:14px;}
.chd-hub-card h2{
  font-size:19px;
  font-weight:700;
  color:var(--text-primary);
  margin:0 0 10px;
  line-height:1.35;
}
.chd-hub-card p{
  font-size:14.5px;
  line-height:1.6;
  color:var(--text-secondary);
  margin:0 0 14px;
}
.chd-hub-card .chd-hub-link{
  font-size:13.5px;
  font-weight:600;
  color:var(--fb-accent, var(--accent-blue));
  display:inline-flex;
  align-items:center;
  gap:6px;
}
