/* ========================================
   His Love Humanitarian Outreach CDC
   Modern Design System
   ======================================== */

:root {
  --primary: #8B2635;
  --primary-dark: #6E1E2A;
  --primary-light: #A63D4D;
  --accent: #C9A227;
  --accent-light: #DDB94E;
  --text: #1A1A1A;
  --text-light: #555555;
  --text-muted: #777777;
  --bg: #FFFFFF;
  --bg-warm: #FDF8F3;
  --bg-light: #F5F0EB;
  --border: #E8E0D8;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  display: block;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section.light { background: var(--bg-warm); }

.section.dark {
  background: var(--primary);
  color: var(--white);
}

.section.dark a { color: var(--accent-light); }

.section.dark .eyebrow { color: var(--accent); }

.center { text-align: center; }

.center .narrow {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid.two {
  grid-template-columns: 1fr;
  align-items: center;
}

.grid.three {
  grid-template-columns: 1fr;
}

.grid.four {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid.two { grid-template-columns: 1fr 1fr; }
  .grid.three { grid-template-columns: repeat(2, 1fr); }
  .grid.four { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid.three { grid-template-columns: repeat(3, 1fr); }
  .grid.four { grid-template-columns: repeat(4, 1fr); }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1.3;
}

.logo span {
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Nav links */
.desktop-nav {
  display: none;
  gap: 2rem;
  align-items: center;
}

.desktop-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding: 0.25rem 0;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-sm);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--primary-dark);
  color: var(--white) !important;
}

/* Mobile Menu */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-weight: 600;
  color: var(--text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 900px) {
  .desktop-nav { display: flex; }
  .mobile-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.01em;
}

.btn.primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn.primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn.secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.btn.secondary:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn.white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn.white:hover {
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

.btn.full { width: 100%; }

/* Hero */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--primary-dark);
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(30, 10, 12, 0.72) 0%, rgba(110, 30, 42, 0.65) 50%, rgba(30, 10, 12, 0.72) 100%),
    radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero .eyebrow {
  color: var(--accent-light);
  letter-spacing: 0.15em;
}

.hero h1 {
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.hero .buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn.secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.hero .btn.secondary:hover {
  background: var(--white);
  color: var(--primary);
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.hero-badge svg {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.card p:last-child { margin-bottom: 0; }

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.card.scripture {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.card.scripture h3 { color: var(--accent); }

.card.stat {
  text-align: center;
  padding: 2rem 1.5rem;
}

.card.stat strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.card.stat span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.card.featured {
  border: 2px solid var(--primary);
  position: relative;
}

.card.featured::before {
  content: 'Featured';
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 0 var(--radius-md) 0 var(--radius-sm);
}

/* Stat block (large numbers) */
.stat-block {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Donation box */
.donation-box {
  background: var(--white);
}

.donation-box h3 { color: var(--primary); }

.donation-box ul {
  list-style: none;
  margin: 1.5rem 0;
}

.donation-box li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.donation-box li:last-child { border-bottom: none; }

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.donation-amounts button,
.donation-amounts a {
  padding: 0.75rem;
  border: 2px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.donation-amounts button:hover,
.donation-amounts button.active,
.donation-amounts a:hover,
.donation-amounts a.active {
  border-color: #00d632;
  background: #eaffef;
  color: #000;
}

/* Forms */
.form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.form input,
.form textarea,
.form select {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  transition: var(--transition);
  color: var(--text);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.1);
}

.form textarea { resize: vertical; min-height: 120px; }

/* Page Header (for inner pages) */
.page-header {
  padding: 10rem 0 4rem;
  position: relative;
  background-color: var(--primary-dark);
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(30, 10, 12, 0.78) 0%, rgba(110, 30, 42, 0.72) 100%),
    radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 { margin-bottom: 0.5rem; }

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.breadcrumb a { color: var(--accent-light); }

.breadcrumb a:hover { color: var(--white); }

/* Image placeholders / decorative blocks */
.img-block {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Timeline / Story */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.timeline-item h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Contact card */
.contact-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.contact-card a { color: var(--accent-light); }

.contact-card p { margin-bottom: 1rem; }

/* Info list */
.info-list {
  list-style: none;
  margin: 1.5rem 0;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.info-list li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Accordion */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  transition: var(--transition);
}

.accordion-header:hover { background: var(--bg-warm); }

.accordion-header .icon {
  transition: var(--transition);
  flex-shrink: 0;
}

.accordion-header.active .icon { transform: rotate(180deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body.open {
  max-height: 500px;
}

.accordion-body > div {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}

/* Footer */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-links a:hover { color: var(--white); }

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Testimonial */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
  position: absolute;
  top: 1rem;
  left: 2rem;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 2rem 0;
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Programs detail */
.program-detail {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.program-detail:last-child { border-bottom: none; }

.program-detail h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.program-detail p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Values grid */
.value-card {
  text-align: center;
  padding: 2rem;
}

.value-card .value-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.value-card .value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.value-card h4 {
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Newsletter / subscribe */
.subscribe-form {
  display: flex;
  gap: 0.5rem;
  max-width: 450px;
  margin: 1.5rem auto 0;
}

.subscribe-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--primary);
}

@media (max-width: 480px) {
  .subscribe-form { flex-direction: column; }
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .section { padding: 3rem 0; }
  .hero p { font-size: 1rem; }
  .card { padding: 1.5rem; }
  .page-header { padding: 7rem 0 3rem; }
}

/* Skip link accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus { top: 0; }

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
  z-index: 850;
  gap: 0.75rem;
}

.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.sticky-cta .btn-give {
  background: var(--primary);
  color: var(--white);
}

.sticky-cta .btn-contact {
  background: var(--bg-warm);
  color: var(--primary);
  border: 1.5px solid var(--border);
}

@media (max-width: 767px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* Social links */
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* Cash App donation styles */
.cashapp-btn {
  background: #00d632 !important;
  color: #000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
}

.cashapp-btn:hover {
  background: #00bc2d !important;
}

.cashapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #000;
  color: #00d632;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
}

