/* ============================================================
   Vertical / industry landing pages — net-new components.
   Layered on top of site.css (which defines the :root palette).
   Added 2026-06-19. Reuses --navy, --gold, --tan, --text-* vars.
   ============================================================ */

.vert-hero { text-align: center; }

.vert-eyebrow {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Regulatory "duty" callout */
.vert-callout {
  max-width: 840px;
  margin: 1.75rem auto 0;
  background: var(--navy-mid);
  color: var(--tan);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  text-align: left;
  line-height: 1.65;
}
.vert-callout strong { color: var(--gold-light); }
.vert-callout cite {
  color: var(--text-light);
  font-style: normal;
  font-size: 0.82rem;
  display: block;
  margin-top: 0.8rem;
}

/* Clean checkmark list ("what a panel looks for") */
.vert-list {
  list-style: none;
  max-width: 780px;
  margin: 1.25rem auto 0;
  padding: 0;
}
.vert-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2rem;
  border-bottom: 1px solid var(--tan-darker);
  color: var(--text-mid);
}
.vert-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.65rem;
  color: var(--gold);
  font-weight: 700;
}
.vert-list li strong { color: var(--text-dark); }

/* Pricing placeholder — clearly marked slot to wire in after the SKU rework */
.vert-pricing-slot {
  max-width: 780px;
  margin: 2rem auto 0;
  border: 2px dashed var(--gold);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  text-align: center;
  background: rgba(200, 151, 42, 0.06);
}
.vert-pricing-slot strong {
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.04em;
  color: var(--navy);
  font-size: 1.15rem;
}
.vert-pricing-slot p { color: var(--text-mid); margin-top: 0.4rem; }

/* Scope disclaimer / small print */
.vert-disclaimer {
  max-width: 860px;
  margin: 2.25rem auto 2.5rem;
  padding: 0 1.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.55;
  text-align: center;
}

/* Hub cards: equal height, top-aligned, badge pinned to the bottom so tiles line up */
.serve-grid { align-items: stretch; }
.vert-hub-link { text-decoration: none; color: inherit; display: flex; height: 100%; }
.vert-hub-link > .serve-card { width: 100%; display: flex; flex-direction: column; }
.vert-hub-soon {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  padding-top: 0.7rem;
}

/* Gold inline accent for hero words */
.vert-gold { color: var(--gold); }

/* Packages/Pricing slot hidden until the SKU rework (Sidney, 2026-06-20).
   Markup is kept on the pages for easy restore: delete this one rule to show it again. */
.vert-pricing-slot { display: none; }

/* ============================================================
   Tile restyle (Sidney, 2026-06-20): match the Blog & Tips cards.
   A navy header band holds the gold icon, white body below, a drop
   shadow, and NO thin blue top strip. Done in CSS only (the existing
   icon container becomes the band via negative margins). Scoped to
   .vert-page (base.njk adds it to <body>) so the homepage is untouched.
   ============================================================ */

.vert-page .prop-card,
.vert-page .serve-card {
  border-top: none;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(11, 21, 38, 0.13);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vert-page .prop-card:hover,
.vert-page .serve-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(11, 21, 38, 0.20);
}

/* The existing icon container, bled out to the card edges, becomes the band.
   Negative margins must match each card's padding (prop 1.9rem, serve 1.75rem). */
.vert-page .prop-icon { margin: -1.9rem -1.9rem 1.3rem; }
.vert-page .serve-icon { margin: -1.75rem -1.75rem 1.3rem; }
.vert-page .prop-icon,
.vert-page .serve-icon {
  background: radial-gradient(circle at 28% 25%, rgba(30, 70, 104, 0.55), transparent 62%), linear-gradient(135deg, #0B1526 0%, #1E4668 100%);
  color: var(--gold);
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vert-page .prop-icon svg,
.vert-page .serve-icon svg {
  width: 44px;
  height: 44px;
  color: var(--gold);
}
