/* ============================================================================
   JNZ Insurance — Coverage hub page styles
   ============================================================================
   Loaded only on /coverage/. Depends on /styles.css being loaded first.
   Hero, header, footer, buttons, pillars, FAQ, section-navy, quote-cta, the
   complete coverage tabs/featured/groups pattern, and the centered section-head
   modifier all come from /styles.css (or, for the centered modifiers, the
   shared styles loaded by /styles.css).

   This file owns: the carrier-split 2-col grid + carrier-block cards (with
   icon header + 2-col carrier-name list), the carrier-disclaimer caption,
   and small responsive tweaks.
============================================================================ */

/* ============ Centered section-head + prose modifiers (used in stacked layouts) ============
   Mirror of the modifiers in about.css so /coverage/ doesn't depend on about.css. */
.section-head--center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
/* Lede inside a centered section-head needs margin: 0 auto to center the block
   (the default .section-head .lede in styles.css is max-width: 620px + margin: 0,
   which left-anchors the block inside the centered section-head wrapper). */
.section-head--center .lede {
  margin-left: auto;
  margin-right: auto;
}
.about-prose {
  color: var(--jnz-charcoal);
  font-size: 17px;
  line-height: 1.7;
  max-width: 760px;
}
.about-prose p { margin: 0 0 18px; }
.about-prose p:last-child { margin-bottom: 0; }
.about-prose a {
  color: var(--jnz-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color var(--dur-fast) var(--ease-out);
}
.about-prose a:hover { color: var(--jnz-navy); }
.about-prose--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============ Carriers we work with — 2-col split of carrier-blocks ============ */
.carrier-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.carrier-block {
  background: var(--bg);
  border: 1px solid rgba(18, 58, 92, 0.06);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-1);
}
.carrier-block-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--divider);
}
.carrier-block-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: rgba(46, 111, 149, 0.10);
  color: var(--jnz-blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.carrier-block-icon svg { width: 20px; height: 20px; }
.carrier-block-title {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--jnz-navy);
  margin: 0;
  letter-spacing: -0.005em;
}
.carrier-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}
.carrier-list li {
  font-size: 14px;
  color: var(--jnz-charcoal);
  font-weight: var(--fw-semibold);
  padding: 6px 0 6px 14px;
  position: relative;
  line-height: 1.4;
}
.carrier-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--jnz-teal);
}
.carrier-disclaimer {
  font-size: 13px;
  line-height: 1.55;
  color: var(--jnz-slate);
  margin: 0 auto;
  max-width: 720px;
  text-align: center;
  font-style: italic;
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .carrier-split { grid-template-columns: 1fr; gap: 20px; }
  .carrier-block { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .carrier-list { grid-template-columns: 1fr; }
}
