/* IBDFM.org - Professional Institutional Design
   Authority, Professionalism, Trust, Knowledge, Business, Leadership
*/

:root {
  --primary: #0a2540; /* Deep navy - authority */
  --primary-light: #12365f;
  --secondary: #c9a86a; /* Muted gold - prestige */
  --secondary-dark: #a88a4f;
  --accent: #1a6fb5; /* Professional blue */
  --dark: #0f172a;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --success: #065f46;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
  --radius: 4px;
  --radius-lg: 8px;
  --font-heading: 'Instrument Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p { margin-bottom: 1rem; color: var(--gray-700); }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--primary); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.section-lg { padding: 5.5rem 0; }
@media (min-width: 768px) { .section { padding: 5rem 0; } .section-lg { padding: 7rem 0; } }

/* Top Bar */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.top-bar a { color: rgba(255,255,255,0.9); }
.top-bar a:hover { color: var(--secondary); }
.top-bar-links { display: flex; gap: 1.25rem; align-items: center; }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}
.logo-mark {
  width: 52px; height: 52px;
  background: var(--primary);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.05em;
  border-radius: 2px;
}
.logo-text { line-height: 1.15; }
.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  letter-spacing: -0.03em;
  display: block;
}
.logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.6rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: all 0.2s;
  position: relative;
}
.nav-link:hover { color: var(--primary); background: var(--gray-50); }
.nav-link.active { color: var(--primary); font-weight: 600; }
.nav-link.has-dropdown::after {
  content: '▾';
  margin-left: 0.35rem;
  font-size: 0.7rem;
  opacity: 0.6;
}
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  display: none;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-item {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-radius: var(--radius);
}
.dropdown-item:hover { background: var(--gray-50); color: var(--primary); }

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-light); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  font-weight: 700;
}
.btn-secondary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--gray-300);
}
.btn-outline:hover { border-color: var(--primary); background: var(--primary); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.95rem 1.8rem; font-size: 1rem; }

/* Mobile Nav */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  width: 44px; height: 44px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--primary);
  margin: 4px 0;
  transition: 0.2s;
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    align-items: stretch;
  }
  .main-nav.open .nav-dropdown .dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: var(--gray-50);
    margin-top: 0.25rem;
  }
  .mobile-toggle { display: flex; }
  .header-actions .btn { display: none; }
  .header-actions .btn.mobile-visible { display: inline-flex; }
}

/* Hero */
.hero {
  position: relative;
  background: var(--primary);
  color: var(--white);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,37,64,0.92) 0%, rgba(10,37,64,0.78) 55%, rgba(10,37,64,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 4rem 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 60ch;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-stats {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-value { font-size: 1.5rem; font-weight: 800; color: var(--white); display: block; line-height: 1; }
.stat-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); margin-top: 0.35rem; display: block; }

.hero-slider {
  position: relative;
}
.hero-slide { display: none; }
.hero-slide.active { display: flex; }

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}
.slider-dot {
  width: 36px; height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}
.slider-dot.active { background: var(--secondary); width: 48px; }

/* Section headers */
.section-header {
  margin-bottom: 2.75rem;
  max-width: 720px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 0.85rem; }
.section-header p { font-size: 1.05rem; color: var(--gray-600); }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
}
.card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-body { padding: 1.5rem; }
.card-image { width: 100%; height: 200px; object-fit: cover; background: var(--gray-100); }
.card-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}
.card-title { font-size: 1.15rem; margin-bottom: 0.6rem; line-height: 1.35; }
.card-title a { color: var(--primary); }
.card-text { font-size: 0.92rem; color: var(--gray-600); line-height: 1.6; }

/* Grid */
.grid { display: grid; gap: 1.5rem; }
.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: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* Feature blocks */
.feature-icon {
  width: 48px; height: 48px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid; place-items: center;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* About snippet */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray-700);
  font-size: 0.95rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 100%;
  display: grid; place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
}

/* Membership tiers */
.tier-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  background: var(--white);
  position: relative;
  transition: 0.25s;
}
.tier-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gray-300); }
.tier-card.featured { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.tier-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.tier-grade { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 0.35rem; }
.tier-name { font-size: 1.35rem; font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; }
.tier-exp { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1rem; }

/* Resource Centre */
.resource-toolbar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.search-box {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.15rem 0.15rem 0.15rem 0.9rem;
  min-width: 320px;
  flex: 1;
  max-width: 480px;
}
.search-box input {
  border: none;
  outline: none;
  flex: 1;
  padding: 0.6rem 0;
  font-size: 0.92rem;
  background: transparent;
}
.search-box button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
}
.filter-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pill {
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
}
.pill:hover, .pill.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

.resource-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  transition: 0.25s;
}
.resource-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.resource-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.resource-category {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
  background: var(--gray-100);
  color: var(--gray-700);
}
.resource-category.research { background: #dbeafe; color: #1e40af; }
.resource-category.institutional { background: #fef3c7; color: #92400e; }
.resource-category.reports { background: #d1fae5; color: #065f46; }
.resource-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; line-height: 1.35; }
.resource-card p { font-size: 0.9rem; color: var(--gray-600); flex: 1; }
.resource-meta { font-size: 0.8rem; color: var(--gray-500); margin-top: 1rem; display: flex; gap: 1rem; }
.resource-actions { display: flex; gap: 0.5rem; margin-top: 1rem; }

/* Programme */
.programme-card { display: flex; flex-direction: column; height: 100%; }
.programme-image { height: 190px; object-fit: cover; background: var(--gray-100); }
.programme-date {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* Leadership */
.leader-card { text-align: center; padding: 1.5rem; }
.leader-avatar {
  width: 96px; height: 96px;
  border-radius: 100%;
  object-fit: cover;
  margin: 0 auto 1rem;
  background: var(--gray-100);
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}
.leader-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.15rem; }
.leader-role { font-size: 0.82rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* CTA Banner */
.cta-banner {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(201,168,106,0.15) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.7); }
@media (max-width: 768px) { .cta-banner { grid-template-columns: 1fr; padding: 2rem; } }

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding-top: 4rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo-title { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-heading {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a { color: rgba(255,255,255,0.65); transition: 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--gray-500);
  border-bottom: 1px solid var(--border);
  background: var(--gray-50);
}
.breadcrumb a { color: var(--gray-600); }
.breadcrumb a:hover { color: var(--primary); }

/* Page header */
.page-header {
  padding: 3.5rem 0 2.5rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}
.page-header h1 { margin-bottom: 0.75rem; }
.page-header p { font-size: 1.1rem; max-width: 65ch; }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--gray-800); }
.form-control {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: inherit;
  transition: 0.2s;
  background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,37,64,0.08); }
textarea.form-control { min-height: 120px; resize: vertical; }

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
th { background: var(--gray-50); text-align: left; padding: 0.9rem 1rem; font-weight: 700; color: var(--primary); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
td { padding: 0.85rem 1rem; border-top: 1px solid var(--border); color: var(--gray-700); }
tr:hover td { background: var(--gray-50); }

/* Alert */
.alert { padding: 0.9rem 1.1rem; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 1rem; border: 1px solid; }
.alert-success { background: #d1fae5; border-color: #a7f3d0; color: #065f46; }
.alert-error { background: #fee2e2; border-color: #fecaca; color: #991b1b; }
.alert-info { background: #dbeafe; border-color: #bfdbfe; color: #1e40af; }

/* Utilities */
.text-center { text-align: center; }
.text-muted { color: var(--gray-500); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.bg-light { background: var(--gray-50); }
.border-top { border-top: 1px solid var(--border); }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.badge {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-primary { background: var(--primary); color: var(--white); }
.badge-gold { background: var(--secondary); color: var(--primary); }

/* Verify CTA */
.verify-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.verify-box h3 { color: var(--white); margin-bottom: 0.35rem; }
.verify-box p { color: rgba(255,255,255,0.7); margin: 0; }

/* Prose */
.prose { max-width: 75ch; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 2rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: 0.5rem; color: var(--gray-700); }
.prose blockquote {
  border-left: 3px solid var(--secondary);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--gray-600);
  font-style: italic;
}
