/* ============================================================
   Anthony Rebello — anthonyhrebello.com
   Shared stylesheet — mixed dark/light theme
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #1a1714;
  --warm-dark: #141210;
  --surface-dark: #221e1b;
  --mid: #6b5e52;
  --warm-mid: #9c8b7e;
  --border-dark: rgba(255,255,255,0.07);
  --border-light: #e4dbd2;
  --cream: #f5f1ec;
  --paper: #faf8f5;
  --accent: #b85c38;
  --accent-light: #d4795a;
  --accent-green: #4a9068;
  --accent-blue: #4a6e90;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ── NAV — always dark ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4rem;
  background: rgba(26, 23, 20, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.3); }

.nav-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--cream);
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-mid);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent-light); }

/* ── FOOTER — always dark ── */
footer {
  background: var(--warm-dark);
  color: var(--warm-mid);
  text-align: center;
  padding: 2.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
footer span { color: var(--accent-light); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  border-radius: 3px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,92,56,0.35); }
.btn-outline { background: transparent; color: var(--cream); border: 1.5px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--accent-light); color: var(--accent-light); }
.btn-outline-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--border-light); }
.btn-outline-dark:hover { border-color: var(--accent); color: var(--accent); }

/* ── CALLOUT ── */
.callout {
  background: var(--cream);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 4px 4px 0;
  font-size: 0.88rem;
  color: var(--mid);
  font-style: italic;
  margin-top: 1.25rem;
  line-height: 1.75;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
}
.js-ready .reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTION EYEBROW ── */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.section-eyebrow-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.section-eyebrow-line {
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

/* ============================================================
   INDEX.HTML
   ============================================================ */

/* HERO — dark */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 4rem 4rem;
  gap: 5rem;
  background: var(--ink);
}
.hero-text { animation: fadeUp 0.9s ease both; }

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(184,92,56,0.4);
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--accent-light); }

.hero-bio {
  font-size: 1.05rem;
  color: var(--warm-mid);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image { animation: fadeUp 0.9s 0.2s ease both; position: relative; }
.hero-image::before {
  content: '';
  position: absolute;
  top: -1.5rem; right: -1.5rem;
  width: 100%; height: 100%;
  border: 2px solid var(--border-dark);
  border-radius: 4px;
  z-index: 0;
}
.hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(15%) brightness(0.88);
}

section:not(.hero) { padding: 7rem 4rem; }
.section-inner { max-width: 960px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 3rem;
  line-height: 1.2;
}

/* RESEARCH — light */
#research { background: var(--cream); }
#research .section-title { color: var(--ink); }

.research-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.research-grid .research-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: calc(50% - 1rem); }

.research-card {
  background: var(--paper);
  border-radius: 6px;
  padding: 2rem;
  border-left: 3px solid var(--accent);
  transition: transform 0.25s, box-shadow 0.25s;
}
.research-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,23,20,0.08); }
.research-card-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.research-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--ink); }
.research-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.75; }

/* ABOUT — light */
#about { background: var(--paper); }
#about .section-title { color: var(--ink); }

.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: start; }
.about-text p { color: var(--mid); margin-bottom: 1.25rem; font-size: 0.98rem; line-height: 1.85; }

.sidebar-block { margin-bottom: 2.5rem; }
.sidebar-block h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}
.sidebar-block ul { list-style: none; }
.sidebar-block ul li {
  font-size: 0.88rem;
  color: var(--mid);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sidebar-block ul li::before { content: '—'; color: var(--accent); font-size: 0.7rem; }

/* CV — dark */
#cv { background: var(--ink); }
#cv .section-label { color: var(--accent-light); }
#cv .section-title { color: var(--cream); }

.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5rem; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.timeline-item { position: relative; margin-bottom: 3rem; padding-left: 1.5rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.3rem; top: 0.55rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 3px rgba(184,92,56,0.2);
}
.timeline-subhead {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 2.5rem 0 1.5rem 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.timeline-subhead:first-child { margin-top: 0; }

.timeline-meta { font-size: 0.75rem; letter-spacing: 0.12em; color: var(--warm-mid); margin-bottom: 0.35rem; text-transform: uppercase; }
.timeline-title { font-family: var(--serif); font-size: 1.1rem; color: var(--cream); margin-bottom: 0.25rem; }
.timeline-org { font-size: 0.85rem; color: var(--warm-mid); margin-bottom: 0.6rem; }
.timeline-desc { font-size: 0.88rem; color: rgba(232,224,216,0.55); line-height: 1.75; }

/* PRESENTATIONS — light */
#presentations { background: var(--cream); }
#presentations .section-title { color: var(--ink); }

.pres-list { display: flex; flex-direction: column; gap: 1.5rem; }
.pres-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: var(--paper);
  border-radius: 6px;
  align-items: start;
  transition: box-shadow 0.2s;
}
.pres-item:hover { box-shadow: 0 6px 24px rgba(26,23,20,0.07); }
.pres-year { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--border-light); line-height: 1; padding-top: 0.25rem; min-width: 3.5rem; }
.pres-type { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.pres-title { font-family: var(--serif); font-size: 1rem; color: var(--ink); margin-bottom: 0.3rem; font-style: italic; }
.pres-venue { font-size: 0.85rem; color: var(--mid); }

/* CONTACT — dark */
#contact { background: var(--surface-dark); }
#contact .section-label { color: var(--accent-light); }
#contact .section-title { color: var(--cream); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-text p { color: var(--warm-mid); font-size: 1rem; line-height: 1.8; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--cream);
  font-size: 0.9rem;
  padding: 0.9rem 1.25rem;
  border: 1.5px solid var(--border-dark);
  border-radius: 4px;
  transition: all 0.2s;
}
.contact-link:hover { border-color: var(--accent); color: var(--accent-light); transform: translateX(4px); }
.contact-link-icon { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; opacity: 0.5; }

/* ============================================================
   RESEARCH.HTML & INVOLVEMENT.HTML — subpages
   ============================================================ */

/* Page header — dark */
.page-header {
  padding: 10rem 4rem 5rem;
  background: var(--ink);
  border-bottom: 1px solid var(--border-dark);
}
.page-header-inner { max-width: 960px; margin: 0 auto; }

.page-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.page-header p {
  font-size: 1.05rem;
  color: var(--warm-mid);
  max-width: 560px;
  line-height: 1.8;
}

/* Content area — light */
.content {
  max-width: 960px;
  margin: 0 auto;
  padding: 6rem 4rem;
}

main { background: var(--paper); }

/* Research cards */
.research-section { margin-bottom: 6rem; }
.research-section:last-child { margin-bottom: 0; }

.project-card {
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.project-card:hover { box-shadow: 0 12px 40px rgba(26,23,20,0.08); transform: translateY(-3px); }
.project-card + .project-card { margin-top: 1.5rem; }

.card-accent-bar { height: 3px; background: var(--accent); }
.card-accent-bar.green { background: var(--accent-green); }
.card-accent-bar.blue  { background: var(--accent-blue); }

.card-body { padding: 2rem 2.25rem 2.25rem; }
.card-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }

.card-status {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  background: rgba(184,92,56,0.1);
  color: var(--accent);
}
.card-status.ongoing  { background: rgba(74,144,104,0.1); color: var(--accent-green); }
.card-status.upcoming { background: rgba(74,110,144,0.1); color: var(--accent-blue); }

.card-date { font-size: 0.78rem; color: var(--warm-mid); letter-spacing: 0.05em; }
.card-body h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--ink); margin-bottom: 0.35rem; line-height: 1.3; }
.card-org { font-size: 0.83rem; color: var(--warm-mid); margin-bottom: 1.25rem; }
.card-body p { font-size: 0.95rem; color: var(--mid); line-height: 1.85; margin-bottom: 1rem; }
.card-body p:last-child { margin-bottom: 0; }

.card-bullets { list-style: none; margin: 1rem 0; display: flex; flex-direction: column; gap: 0.55rem; }
.card-bullets li { font-size: 0.9rem; color: var(--mid); padding-left: 1.25rem; position: relative; line-height: 1.7; }
.card-bullets li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-size: 0.75rem; top: 0.3rem; }

.card-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); }
.card-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--warm-mid);
  background: var(--cream);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  border: 1px solid var(--border-light);
}

/* Leadership cards */
.leadership-section { margin-bottom: 6rem; }
.leadership-section:last-child { margin-bottom: 0; }

.role-card {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0 2rem;
  padding: 2rem 2.25rem;
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  transition: box-shadow 0.25s, transform 0.25s;
  align-items: start;
}
.role-card + .role-card { margin-top: 1.25rem; }
.role-card:hover { box-shadow: 0 10px 36px rgba(26,23,20,0.08); transform: translateY(-3px); }

.role-icon-wrap { display: flex; flex-direction: column; align-items: center; padding-top: 0.25rem; }
.role-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(184,92,56,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.role-icon-line { width: 1px; flex: 1; min-height: 1.5rem; background: var(--border-light); margin-top: 0.75rem; }

.role-header { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.35rem; }
.role-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.role-badge {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
  background: rgba(184,92,56,0.1);
  color: var(--accent);
}
.role-org { font-size: 0.82rem; color: var(--warm-mid); margin-bottom: 0.25rem; }
.role-date { font-size: 0.78rem; color: var(--border-light); margin-bottom: 1rem; letter-spacing: 0.04em; }
.role-desc { font-size: 0.93rem; color: var(--mid); line-height: 1.8; }

/* ============================================================
   404.HTML
   ============================================================ */

.error-page {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
}
.error-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 4rem 4rem;
}
.error-inner { max-width: 640px; width: 100%; }
.error-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.error-number {
  font-family: var(--serif);
  font-size: clamp(7rem, 20vw, 13rem);
  font-weight: 400;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 224, 216, 0.12);
  margin-bottom: 0;
  user-select: none;
}
.error-divider {
  width: 3rem;
  height: 2px;
  background: var(--accent);
  margin: 2rem 0;
}
.error-heading {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.error-heading em { font-style: italic; color: var(--accent-light); }
.error-desc {
  font-size: 1rem;
  color: var(--warm-mid);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 420px;
}
.error-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.error-links { border-top: 1px solid var(--border-dark); padding-top: 2.5rem; }
.error-links-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 1.25rem;
}
.error-links-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.error-links-nav a {
  font-size: 0.88rem;
  color: var(--warm-mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.error-links-nav a:hover { color: var(--accent-light); }
.error-links-nav a::before { content: '→'; font-size: 0.75rem; color: var(--accent); }
.error-footer {
  background: var(--warm-dark);
  color: var(--warm-mid);
  text-align: center;
  padding: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.error-footer span { color: var(--accent-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  nav { padding: 1rem 1.75rem; }
  .nav-links { gap: 1.5rem; }

  .hero { grid-template-columns: 1fr; padding: 7rem 1.75rem 4rem; gap: 2rem; overflow: hidden; }
  .hero-image { order: -1; max-width: 100%; width: 100%; }
  .hero-image::before { display: none; }
  .hero-image img { max-height: 420px; width: 100%; object-fit: cover; aspect-ratio: auto; }

  section:not(.hero) { padding: 4rem 1.75rem; }
  .research-grid { grid-template-columns: 1fr; }
  .research-grid .research-card:last-child:nth-child(odd) { grid-column: auto; max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .page-header { padding: 7rem 1.75rem 3rem; }
  .content { padding: 3rem 1.75rem; }

  .role-card { grid-template-columns: 1fr; gap: 1rem; }
  .role-icon-line { display: none; }
}

/* ── MOBILE NAV ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  position: relative;
  z-index: 400;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ink);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-drawer a:hover,
.nav-drawer a.active { color: var(--accent-light); }
.nav-drawer-close {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--warm-mid);
  cursor: pointer;
  font-family: var(--sans);
  line-height: 1;
  padding: 0.5rem;
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 6rem 1.25rem 3rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-bio { font-size: 0.95rem; }

  section:not(.hero) { padding: 3.5rem 1.25rem; }
  .page-header { padding: 6rem 1.25rem 2.5rem; }
  .content { padding: 2.5rem 1.25rem; }

  .pres-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .pres-year { font-size: 0.75rem; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--sans); font-weight: 500; }

  .contact-links { margin-top: 0; }

  .card-body { padding: 1.5rem; }
  .research-card { padding: 1.5rem; }

  .error-main { padding: 6rem 1.25rem 3rem; }
  .error-actions { flex-direction: column; }
  .error-links-nav { gap: 1.25rem; }
}
