/* =========================================================
   Policy Pros USA — Site Stylesheet
   Theme: Red, White & Blue — classic, professional
   ========================================================= */

:root {
  --navy: #0A2463;
  --navy-dark: #061847;
  --navy-soft: #1B3A8A;
  --red: #B91C26;
  --red-dark: #8E1620;
  --gold: #D4AF37;
  --cream: #FBF9F4;
  --white: #FFFFFF;
  --gray-50: #F7F8FA;
  --gray-100: #EEF1F5;
  --gray-200: #DDE3EC;
  --gray-400: #8A93A0;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --shadow-sm: 0 1px 2px rgba(10,36,99,.06), 0 1px 3px rgba(10,36,99,.08);
  --shadow-md: 0 8px 24px rgba(10,36,99,.10);
  --shadow-lg: 0 24px 48px rgba(10,36,99,.18);
  --radius: 6px;
  --radius-lg: 12px;
  --container: 1180px;
  --font-serif: "Playfair Display", "Times New Roman", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* =====  Reset / base  ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--red); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--gray-50); }
.section-navy { background: var(--navy); color: #E5EAF5; }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-navy .eyebrow { color: var(--gold); }

.center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--gray-600); max-width: 720px; margin: 0 auto 1.5em; }
.section-navy .lead { color: #C9D2E8; }

/* =====  Top bar  ===== */
.topbar {
  background: var(--navy-dark);
  color: #C9D2E8;
  font-size: .88rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: #C9D2E8; }
.topbar a:hover { color: var(--gold); }
.topbar .stripe {
  display: inline-block; width: 28px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--red) 0 33%, var(--white) 33% 66%, var(--navy-soft) 66%);
  margin-right: 10px; vertical-align: middle;
  border: 1px solid rgba(255,255,255,.4);
}
.topbar-info span { margin-right: 18px; }
.topbar-info span:last-child { margin-right: 0; }

/* =====  Header / nav  ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 48px;
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
}
.brand-mark img, .brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-sans); font-weight: 800; font-size: 1.15rem;
  color: var(--navy); letter-spacing: .02em; text-transform: uppercase;
}
.brand-name .usa { color: var(--red); margin-left: 4px; }
.brand-tag  {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gray-600); margin-top: 5px; font-weight: 600;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block; padding: 10px 14px;
  font-weight: 500; color: var(--gray-800);
  border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--gray-100); }
.nav-links a.active { color: var(--red); }
.nav-cta { margin-left: 10px; }
.nav-cta .btn {
  padding: 10px 18px;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 6px;
  box-shadow: none;
}
.nav-cta .btn:hover { transform: none; box-shadow: 0 2px 8px rgba(185,28,38,.25); }

.nav-toggle {
  display: none; background: transparent; border: 0; cursor: pointer;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--navy); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--navy);
}
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }

@media (max-width: 880px) {
  .nav-links {
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-top: 1px solid var(--gray-200);
    padding: 8px 16px 16px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 12px; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { width: 100%; margin: 8px 0 0; text-align: center; }
}

/* =====  Buttons  ===== */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  cursor: pointer; border: 0;
  transition: transform .12s, box-shadow .15s, background .15s, color .15s;
  text-align: center;
}
.btn-primary {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 12px rgba(185,28,38,.28);
}
.btn-primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-1px); }
.btn-secondary {
  background: var(--navy); color: var(--white);
}
.btn-secondary:hover { background: var(--navy-dark); color: var(--white); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.6);
}
.btn-ghost:hover { background: var(--white); color: var(--navy); }
.btn-outline {
  background: transparent; color: var(--navy); border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* =====  Hero  ===== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -20%, rgba(212,175,55,.18), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #04102E 100%);
  color: var(--white);
  padding: 96px 0 120px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.03) 0 18px, transparent 18px 38px);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), #F1D27A);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { color: #C9D2E8; font-size: 1.18rem; max-width: 560px; }
.hero .btn-row { margin-top: 28px; }
.hero-meta {
  display: flex; gap: 32px; margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 24px;
}
.hero-meta .stat strong {
  font-family: var(--font-serif); font-size: 1.8rem; color: var(--gold);
  display: block; line-height: 1;
}
.hero-meta .stat span { font-size: .85rem; color: #C9D2E8; }

.hero-card {
  position: relative;
  background: var(--white); color: var(--gray-800);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--red);
}
.hero-card::before {
  content: ""; position: absolute; top: -6px; right: 0;
  height: 6px; width: 38%;
  background: var(--navy);
}
.hero-card h3 { color: var(--navy); margin-bottom: 6px; }
.hero-card .small { font-size: .85rem; color: var(--gray-600); margin-bottom: 18px; }
.hero-card .field { display: block; margin-bottom: 12px; }
.hero-card label { font-size: .82rem; font-weight: 600; color: var(--gray-600); display: block; margin-bottom: 4px; }
.hero-card input, .hero-card select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  font: inherit; color: var(--gray-800); background: var(--white);
}
.hero-card input:focus, .hero-card select:focus { outline: 2px solid var(--navy-soft); border-color: var(--navy-soft); }
.hero-card .btn { width: 100%; margin-top: 4px; }
.hero-card .badge {
  position: absolute; top: -16px; left: 24px;
  background: var(--gold); color: var(--navy-dark);
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  padding: 6px 12px; border-radius: 20px; text-transform: uppercase;
}

@media (max-width: 880px) {
  .hero { padding: 64px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-meta { flex-wrap: wrap; gap: 18px; }
}

/* Page header (smaller hero for inner pages) */
.page-hero {
  background:
    radial-gradient(900px 400px at 100% -10%, rgba(212,175,55,.18), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 72px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero h1 { color: var(--white); margin-bottom: 8px; }
.page-hero p { color: #C9D2E8; max-width: 720px; font-size: 1.1rem; }
.page-hero .crumb {
  display: inline-block; font-size: .85rem; color: #C9D2E8;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px;
}
.page-hero .crumb a { color: var(--gold); }

/* =====  Cards / grids  ===== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .15s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--navy-soft); }
.card .icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white); display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.card .icon.red { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.card h3 { color: var(--navy); margin-bottom: 8px; }
.card p { color: var(--gray-600); margin-bottom: 14px; }
.card .more { font-weight: 600; color: var(--red); }
.card .more:hover { color: var(--red-dark); }

/* Service tile (highlighted) */
.tile {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 460px;
}
.tile::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red) 0 33%, var(--white) 33% 66%, var(--navy) 66%);
}
.tile h3 { margin-top: 8px; }
.tile ul { padding-left: 0; list-style: none; margin: 16px 0; }
.tile ul li { position: relative; padding-left: 28px; margin-bottom: 8px; color: var(--gray-600); }
.tile ul li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: grid; place-items: center; font-size: .75rem; font-weight: 700;
}
/* Keep the subtitle line under each h3 a consistent height so bullet lists
   start at the same y-axis across tiles in a row */
.tile > .text-muted:first-of-type {
  min-height: 2.8em;
  margin-bottom: 12px !important;
}
/* The "Most popular" badge floats as a corner ribbon so it doesn't push
   the rest of the tile content down, keeping the popular tile aligned with
   its neighbors */
.tile > .eyebrow:first-child {
  position: absolute;
  top: 14px;
  right: 14px;
  margin: 0;
  padding: 4px 12px;
  background: var(--red);
  color: var(--white) !important;
  border-radius: 999px;
  font-size: .7rem;
  letter-spacing: .12em;
  box-shadow: 0 2px 6px rgba(185,28,38,.35);
}
/* Push the trailing "Best for" paragraph (if present) — or otherwise the
   button — to the bottom so every tile aligns at the baseline */
.tile > ul + .text-muted {
  margin-top: auto;
}
.tile > ul + .btn,
.tile > ul + a.btn {
  margin-top: auto;
}
.tile > .btn,
.tile > a.btn,
.tile > a.more {
  align-self: flex-start;
}
/* Make all grid cells stretch to the tallest in the row */
.grid { align-items: stretch; }
.grid > * { height: 100%; }

/* Why choose us list */
.why-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.why-list li {
  display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start;
}
.why-list .num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-family: var(--font-serif); font-weight: 700;
  display: grid; place-items: center;
  border: 2px solid var(--gold);
}
.why-list h4 { margin-bottom: 4px; }
.why-list p { margin: 0; color: var(--gray-600); }

/* Two-column intro block */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 32px; } }

/* Stat strip */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-md);
  margin-top: -64px; position: relative; z-index: 2;
}
.stats .stat-block { text-align: center; }
.stats .stat-block strong {
  display: block; font-family: var(--font-serif); font-size: 2.2rem;
  color: var(--navy); line-height: 1;
}
.stats .stat-block span { display: block; color: var(--gray-600); font-size: .92rem; margin-top: 8px; }
.stats .stat-block .dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  background: var(--red); margin-right: 6px; vertical-align: middle;
}
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); margin-top: -32px; } }

/* Testimonials */
.quote {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
}
.quote::before {
  content: "“"; position: absolute; top: 0; left: 24px;
  font-family: var(--font-serif); font-size: 5rem; color: var(--red); line-height: 1;
}
.quote p { color: var(--gray-800); font-size: 1.05rem; margin-top: 28px; margin-bottom: 18px; }
.quote .author { display: flex; align-items: center; gap: 12px; }
.quote .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: grid; place-items: center; font-weight: 700;
  border: 2px solid var(--gold);
}
.quote .author strong { display: block; color: var(--navy); }
.quote .author span { font-size: .85rem; color: var(--gray-600); }
.quote .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 6px; }

/* FAQ */
.faq details {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 18px 22px; margin-bottom: 12px;
  transition: border-color .15s, box-shadow .2s;
}
.faq details[open] { border-color: var(--navy-soft); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--red); font-size: 1.4rem; line-height: 1;
  transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 12px 0 0; color: var(--gray-600); }

/* Carrier strip */
.carriers {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; align-items: center;
}
.carriers .logo {
  height: 80px; border: 1px solid var(--gray-200); border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 700; color: var(--navy);
  background: var(--white);
  letter-spacing: .04em;
  padding: 12px;
  transition: box-shadow .15s, transform .15s;
}
.carriers .logo:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.carriers .logo img {
  max-height: 100%; max-width: 100%; width: auto; height: auto;
  object-fit: contain; display: block;
}
.carriers-banner {
  max-width: 980px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.carriers-banner img { width: 100%; height: auto; display: block; }
@media (max-width: 880px) { .carriers { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .carriers { grid-template-columns: repeat(2, 1fr); } }

/* CTA banner */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(10,36,99,.95), rgba(6,24,71,.95)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 12px, transparent 12px 24px);
  color: var(--white);
  padding: 64px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 8px;
}
.cta-banner::before { left: 0; background: var(--red); }
.cta-banner::after  { right: 0; background: var(--red); }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: #C9D2E8; max-width: 640px; margin: 0 auto 24px; }

/* =====  Forms  ===== */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field-full { grid-column: 1 / -1; }
.form label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--gray-800); margin-bottom: 6px;
}
.form input, .form select, .form textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  font: inherit; color: var(--gray-800); background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(27,58,138,.15);
}
.form textarea { min-height: 130px; resize: vertical; }
.form .checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--gray-600); }
.form .checkbox input { width: auto; margin-top: 4px; }
.form .submit-row { margin-top: 20px; }

/* Contact info column */
.contact-info {
  background: var(--navy); color: #E5EAF5; border-radius: var(--radius-lg);
  padding: 36px; height: 100%;
}
.contact-info h3 { color: var(--white); }
.contact-info p { color: #C9D2E8; }
.contact-info .item {
  display: grid; grid-template-columns: 40px 1fr; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-info .item:last-child { border-bottom: 0; }
.contact-info .ico {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: grid; place-items: center; font-size: 1rem;
}
.contact-info strong { color: var(--white); display: block; margin-bottom: 2px; }
.contact-info a { color: var(--gold); }

/* =====  Footer  ===== */
.site-footer {
  background: var(--navy-dark); color: #C9D2E8;
  padding: 64px 0 24px;
}
.site-footer h4 {
  font-family: var(--font-sans); font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.site-footer .grid { gap: 36px; }
.site-footer p { color: #C9D2E8; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer a { color: #C9D2E8; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 48px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .85rem; color: #8A93A0;
}
.footer-flag {
  display: inline-block; width: 36px; height: 24px; border-radius: 2px;
  background:
    linear-gradient(to bottom,
      var(--red) 0 14.3%, var(--white) 14.3% 28.6%,
      var(--red) 28.6% 42.9%, var(--white) 42.9% 57.1%,
      var(--red) 57.1% 71.4%, var(--white) 71.4% 85.7%,
      var(--red) 85.7% 100%);
  position: relative; vertical-align: middle; margin-right: 8px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.2);
}
.footer-flag::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 50%; height: 53.85%; background: var(--navy);
  border-bottom-right-radius: 1px;
}

/* =====  Utility  ===== */
.text-muted { color: var(--gray-600); }
.divider {
  height: 4px; width: 56px; border-radius: 2px;
  background: linear-gradient(90deg, var(--red) 0 33%, var(--white) 33% 66%, var(--navy) 66%);
  margin: 0 0 18px;
  border: 1px solid var(--gray-200);
}
.center .divider { margin-left: auto; margin-right: auto; }
.notice {
  background: #FFF8E6; border: 1px solid #F1D27A; color: #5E4406;
  padding: 14px 18px; border-radius: var(--radius); font-size: .92rem;
}
