/* ==========================================================================
   Ṣirāṭ Project — design system
   Brand carried over from siratproject.alkisafoundation.org:
   navy #043c54, coral #e88560, mint/green accents, cream, gold CTA.
   Headings: Quincy CF Bold (self-hosted). Body: Poppins.
   ========================================================================== */

@font-face {
  font-family: "Quincy CF Bold";
  src: url("/assets/fonts/Quincy-CF-Bold.otf") format("opentype");
  font-display: swap;
  font-weight: 700;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

:root {
  /* brand palette */
  --navy: #043c54;
  --navy-dark: #023044;
  --navy-tint-10: #0d4d68;
  --coral: #e88560;
  --coral-dark: #d96f48;
  --gold: #c99a3f;
  --gold-dark: #b6822a;
  --mint: #bbe8c8;
  --mint-light: #dcfaf9;
  --teal-light: #d1f0ef;
  --green: #a0d381;
  --cream: #faf5f2;
  --cream-2: #f8f2ed;
  --white: #ffffff;
  --ink: #043c54;
  --ink-soft: #3c5c6c;
  --line: rgba(4, 60, 84, 0.12);

  --font-display: "Quincy CF Bold", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", Helvetica, Arial, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(4, 60, 84, 0.06);
  --shadow-md: 0 12px 32px rgba(4, 60, 84, 0.12);
  --shadow-lg: 0 24px 60px rgba(4, 60, 84, 0.18);

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 1em; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--coral-dark);
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { position: relative; }
.section-pad { padding: clamp(56px, 9vw, 108px) 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85em 1.7em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 0.6em 1.3em; font-size: 0.85rem; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar a { color: inherit; }
.topbar .social { display: flex; gap: 12px; align-items: center; }
.topbar .social svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- header / nav ---------- */
header.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.logo img { height: 54px; width: auto; }
nav.main-nav { flex: 1; display: flex; justify-content: center; }
nav.main-nav > ul { display: flex; gap: 30px; align-items: center; }
nav.main-nav > ul > li { position: relative; }
nav.main-nav > ul > li > a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  padding: 10px 2px;
  display: inline-block;
}
nav.main-nav > ul > li:hover > a { color: var(--coral-dark); }
nav.main-nav > ul > li > a.active { color: var(--coral-dark); }
.has-dropdown > ul.dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  background: var(--white);
  min-width: 210px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.has-dropdown:hover ul.dropdown { display: flex; }
ul.dropdown li a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}
ul.dropdown li a:hover { background: var(--cream); color: var(--navy); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--navy); }

@media (max-width: 900px) {
  nav.main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--navy);
    padding: 100px 32px 40px;
    display: flex;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  nav.main-nav.open { transform: translateX(0); }
  nav.main-nav > ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  nav.main-nav > ul > li { width: 100%; }
  nav.main-nav > ul > li > a { color: var(--white); font-size: 1.15rem; padding: 12px 0; }
  .has-dropdown ul.dropdown {
    position: static; display: flex; box-shadow: none; background: rgba(255,255,255,0.06);
    margin-bottom: 6px;
  }
  ul.dropdown li a { color: rgba(255,255,255,0.85); }
  ul.dropdown li a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
  .nav-toggle { display: inline-flex; z-index: 60; }
  .nav-toggle.is-open svg { stroke: var(--white); }
}

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-dark) 68%);
  color: var(--white);
  overflow: hidden;
}
.hero .wrap { padding-top: clamp(48px, 8vw, 88px); padding-bottom: clamp(48px, 8vw, 88px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: var(--white); }
.hero p.lede { font-size: 1.08rem; color: rgba(255,255,255,0.85); max-width: 52ch; }
.hero-actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.hero-art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* simple page header (non-home pages) */
.page-hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-dark) 75%);
  color: var(--white);
  padding: 64px 0 72px;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.35em; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 62ch; font-size: 1.05rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--white); }

/* ---------- stat tiles ---------- */
.stat-strip { background: var(--cream); }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-tile {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.stat-tile .stat-ring {
  width: 64px; height: 64px; margin: 0 auto 14px;
  border-radius: 50%;
  border: 3px solid var(--coral);
  display: flex; align-items: center; justify-content: center;
  color: var(--coral-dark);
}
.stat-tile h3 { font-size: 1.9rem; color: var(--navy); margin-bottom: 0.15em; }
.stat-tile p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 860px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- generic section helpers ---------- */
.section-head { max-width: 760px; margin: 0 0 40px; }
.section-head.center { margin-inline: auto; text-align: center; }
.bg-cream { background: var(--cream); }
.bg-mint { background: var(--mint-light); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

.quote-block {
  background: var(--white);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  font-style: italic;
  color: var(--ink-soft);
  margin: 24px 0;
}
.quote-block cite { display: block; font-style: normal; font-size: 0.82rem; color: var(--coral-dark); margin-top: 8px; }

/* ---------- audience cards (inmates / families / chaplains) ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.audience-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.audience-card .thumb { aspect-ratio: 16/11; overflow: hidden; background: var(--cream-2); }
.audience-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.audience-card .thumb.thumb-icon { display: flex; align-items: center; justify-content: center; padding: 20px; }
.audience-card .thumb.thumb-icon img { width: auto; height: auto; max-width: 85%; max-height: 90px; object-fit: contain; }

/* icon-panel: for small brand glyphs (not photos) that need a generous, tinted frame instead of being stretched */
.icon-panel {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.icon-panel.tint-mint { background: var(--mint-light); }
.icon-panel.tint-coral { background: #fbe9e1; }
.icon-panel img { width: auto; height: auto; max-width: 150px; max-height: 150px; object-fit: contain; }
.audience-card .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.audience-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 10px; }
.audience-card ul li { padding-left: 20px; position: relative; }
.audience-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
}
.audience-card .cta { margin-top: auto; }
@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; } }

/* ---------- program / feature cards (icon tiles) ---------- */
.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.feature-card img { width: 56px; height: 56px; object-fit: contain; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
.feature-card p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 14px; }
@media (max-width: 900px) { .card-row { grid-template-columns: 1fr; } }

/* ---------- testimonials ---------- */
.testimonial-slider { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }
.testimonial-slide p { font-size: 1.15rem; font-family: var(--font-display); font-weight: 700; color: var(--navy); line-height: 1.4; }
.testimonial-slide cite { display: block; margin-top: 14px; font-family: var(--font-body); font-style: normal; font-size: 0.85rem; color: var(--coral-dark); font-weight: 600; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.slider-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line); padding: 0; }
.slider-dots button.active { background: var(--coral); width: 22px; border-radius: 5px; }
.slider-arrows { display: flex; justify-content: center; gap: 18px; margin-top: 18px; }
.slider-arrows button { background: var(--white); border: 1px solid var(--line); border-radius: 50%; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.slider-arrows svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; }

/* ---------- magazine / updates cards ---------- */
.mag-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mag-card { text-align: center; }
.mag-card .cover { border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 14px; aspect-ratio: 3/4; background: var(--cream-2); }
.mag-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.mag-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.mag-card p { font-size: 0.8rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 900px) { .mag-grid { grid-template-columns: repeat(2, 1fr); } }

.update-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.update-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.update-card .thumb { aspect-ratio: 4/3; background: var(--cream-2); overflow: hidden; }
.update-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.update-card .body { padding: 18px 20px; }
.update-card h4 { font-size: 1rem; margin-bottom: 6px; }
.update-card p { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 900px) { .update-grid { grid-template-columns: 1fr; } }

/* ---------- donate widget shell ---------- */
.donate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  color: var(--ink);
}
.donate-toggle { display: flex; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 4px; margin-bottom: 20px; }
.donate-toggle button { flex: 1; border: none; background: none; padding: 10px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.9rem; color: var(--ink-soft); }
.donate-toggle button.active { background: var(--navy); color: var(--white); }
.donate-amounts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.donate-amounts label {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px;
  display: flex; flex-direction: column; cursor: pointer; font-size: 0.85rem; color: var(--ink-soft);
}
.donate-amounts input { display: none; }
.donate-amounts label span.amt { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.donate-amounts label:has(input:checked) { border-color: var(--coral); background: var(--cream); }
.donate-card form input[type="text"], .donate-card form input[type="email"] {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--line); margin-bottom: 12px; font-family: inherit;
}

/* campaign cards on donate page */
.campaign-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.campaign-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.campaign-card h3 { font-size: 1.1rem; }
.campaign-card p { font-size: 0.9rem; color: var(--ink-soft); flex: 1; }
.campaign-grid > div { display: flex; justify-content: center; }
@media (max-width: 900px) { .campaign-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .campaign-grid { grid-template-columns: 1fr; } }

/* ---------- forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.form-row { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-row input, .form-row textarea {
  padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--line); font-family: inherit; font-size: 0.95rem; resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--coral); outline-offset: 1px; }

/* ---------- shop ---------- */
.shop-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.shop-filters button {
  border: 1px solid var(--line); background: var(--white); padding: 8px 18px; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600; color: var(--ink-soft);
}
.shop-filters button.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.product-card .cover { aspect-ratio: 3/4; background: var(--cream-2); overflow: hidden; }
.product-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card h4 { font-size: 0.92rem; font-family: var(--font-body); font-weight: 600; margin: 0; }
.product-card .price { color: var(--coral-dark); font-weight: 700; margin-top: auto; }
.product-card select { margin-top: 6px; padding: 6px; border-radius: 8px; border: 1px solid var(--line); font-size: 0.8rem; }
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- letters gallery ---------- */
.letters-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.letters-grid figure { margin: 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); background: var(--cream-2); }
.letters-grid figcaption { padding: 12px 16px; font-size: 0.82rem; color: var(--ink-soft); }
@media (max-width: 700px) { .letters-grid { grid-template-columns: 1fr; } }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.team-card { display: flex; gap: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); }
.team-card img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: var(--cream-2); }
.team-card .name { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); }
.team-card .role { font-size: 0.82rem; color: var(--coral-dark); font-weight: 600; margin-bottom: 6px; }
.team-card p.bio { font-size: 0.86rem; color: var(--ink-soft); margin: 0; }
.team-card details summary { color: var(--coral-dark); font-weight: 600; cursor: pointer; font-size: 0.82rem; margin-top: 6px; }
.advisor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.advisor-card { text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 20px; }
.advisor-card .avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--mint-light); margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); color: var(--navy); font-size: 1.4rem; }
@media (max-width: 860px) { .team-grid, .advisor-grid { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
footer.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 32px;
}
.footer-grid h4 { color: var(--white); font-family: var(--font-body); font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid p { font-size: 0.88rem; color: rgba(255,255,255,0.68); }
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; font-size: 0.88rem; }
.footer-grid a:hover { color: var(--coral); }
.footer-logo img { height: 46px; margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0; font-size: 0.8rem; color: rgba(255,255,255,0.55); text-align: center; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; padding-bottom: 8px; } }

/* ---------- misc ---------- */
.divider-arrow { width: 34px; height: 34px; opacity: 0.5; margin: 0 auto 18px; }
.tag-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--mint-light); color: var(--navy);
  padding: 6px 14px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600;
}
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.iframe-embed { width: 100%; border: none; border-radius: var(--radius-md); overflow: hidden; }
.note-callout {
  background: var(--mint-light);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 0.88rem;
  color: var(--navy);
  border: 1px solid var(--teal-light);
}
