/* ===== Tokens ===== */
:root {
  --navy: #0a0f1f;
  --navy-2: #101731;
  --blue: #0021a5;
  --blue-dark: #050d3d;
  --orange: #fa4616;
  --orange-dark: #d63a10;
  --white: #ffffff;
  --ink: #10131a;
  --gray-600: #5a6072;
  --gray-200: #e7e8ee;
  --gray-100: #f5f6fa;
  --font-head: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --radius: 14px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Type ===== */
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 12px;
}
.eyebrow--light { color: #ffb199; }
.display {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
.display--md { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.display.light, .light { color: var(--white); }
.display .accent, .accent { color: var(--orange); }
.center { text-align: center; }
.lede {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 0 28px;
}
.lede--light { color: #cfd4ea; }
.lede--narrow { margin-left: auto; margin-right: auto; text-align: center; }
.fine-print { font-size: 0.85rem; color: var(--gray-600); margin-top: 14px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-dark); }
.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--outline-light { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); }
.btn--blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn--small { padding: 10px 20px; font-size: 0.75rem; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.link-arrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--orange);
  border-bottom: 1px solid transparent;
}
.link-arrow:hover { border-color: var(--orange); }
.light .link-arrow, .section--dark .link-arrow { color: #ff8a63; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  font-size: 1rem;
  white-space: nowrap;
}
.brand--accent { color: var(--orange); }
.site-nav {
  display: flex;
  gap: 26px;
  margin-right: auto;
  flex-wrap: wrap;
}
.site-nav a {
  color: #cfd4ea;
  font-size: 0.9rem;
  font-weight: 500;
}
.site-nav a:hover { color: var(--white); }
.site-nav--mobile { display: none; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .site-header__inner .site-nav { display: none; }
  .site-header__inner .btn { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
  }
  .nav-toggle span { width: 22px; height: 2px; background: var(--white); }
  .site-nav--mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 0 24px 20px;
  }
  .site-nav--mobile.is-open { display: flex; }
  .site-nav--mobile a { color: #cfd4ea; }
  .site-nav--mobile .btn { align-self: flex-start; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    radial-gradient(900px 550px at 85% -8%, rgba(250,70,22,0.20), transparent 60%),
    radial-gradient(800px 520px at 2% 108%, rgba(0,33,165,0.35), transparent 62%),
    linear-gradient(160deg, var(--navy-2) 0%, var(--navy) 100%);
  padding: 90px 0 140px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero__content .display { color: var(--white); }
.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__logo { width: 100%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35)); }
.next-event-badge {
  position: absolute;
  right: 24px;
  bottom: 0;
  background: var(--orange);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  max-width: 650px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  display: block;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.next-event-badge:hover,
.next-event-badge:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.next-event-badge__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 4px;
}
.next-event-badge__label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.85;
}
.next-event-badge__title { font-weight: 700; margin: 0; font-size: 1.15rem; }
.next-event-badge__countdown {
  font-family: var(--font-head);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero { padding-bottom: 40px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { margin-top: 40px; }
  .hero__logo { max-width: 280px; margin: 0 auto; }
  .next-event-badge { position: static; margin-top: 60px; margin-bottom: 0; max-width: none; }
}

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section--dark { background: var(--navy-2); color: var(--white); }
.section--cta { background: var(--navy-2); color: var(--white); }
.section--tint { background: var(--gray-100); }
.section--cta .lede { margin-left: auto; margin-right: auto; color: #cfd4ea; }

.who-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.stats { display: grid; gap: 28px; }
.stat__number {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--orange);
  margin: 0;
}
.stat__label { margin: 4px 0 0; color: var(--gray-600); }

/* ===== Sponsor-page event grid (compact cards) ===== */
.event-grid--compact { display: grid; gap: 20px; grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
.event-card {
  display: flex;
  gap: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
}
.event-card__date {
  flex: none;
  width: 64px;
  text-align: center;
  font-family: var(--font-head);
}
.event-card__month { display: block; font-size: 0.75rem; letter-spacing: 0.1em; color: var(--orange); }
.event-card__day { display: block; font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1; }
.event-card__tags { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.tag {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 999px;
}
.tag--muted { background: rgba(255,255,255,0.12); color: #cfd4ea; }

/* ===== Sponsor logo badge (shown once an event is sponsored) =====
   Floated right so the tags/title/description text wraps around it —
   its height never pushes content down, and (unlike absolute
   positioning) the browser reflows the text itself, so it can never
   sit underneath the badge no matter how long the description runs. */
.sponsor-badge {
  float: right;
  margin: 0 0 14px 16px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 12px 18px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  max-width: 260px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
a.sponsor-badge:hover, a.sponsor-badge:focus-visible {
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}
.sponsor-badge__label {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  white-space: nowrap;
}
.sponsor-badge img {
  display: block;
  max-height: 64px;
  max-width: 260px;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* Slightly smaller cap on the compact sponsor-page card so the logo doesn't overwhelm it */
.event-card .sponsor-badge img { max-height: 48px; max-width: 200px; }
.event-card h3 { font-family: var(--font-head); margin: 0 0 8px; font-size: 1.15rem; }
.event-card p { color: #cfd4ea; margin: 0 0 10px; font-size: 0.92rem; overflow-wrap: anywhere; }
.event-card__meta { clear: right; color: #9aa2c0 !important; font-size: 0.85rem !important; }
.event-card__map-link { color: inherit; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.35); text-underline-offset: 2px; }
.event-card__map-link:hover { color: var(--orange); text-decoration-color: currentColor; }
.event-card__desc a { color: inherit; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.35); text-underline-offset: 2px; }
.event-card__desc a:hover { color: var(--orange); text-decoration-color: currentColor; }
.event-card__desc ul, .event-card__desc ol { margin: 0 0 10px; padding-left: 1.2em; }
.event-card__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px; }
.event-card__desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}
.event-card__desc.is-expanded { display: block; overflow: visible; }
.event-card .desc-toggle { color: var(--orange); }

/* ===== Home-page events: segmented tabs + vertical timeline ===== */
.section--events { background: var(--gray-100); }
.section--events .display { color: var(--blue); }
.section--events .lede { color: var(--gray-600); }

.events-tabs-wrap { display: flex; justify-content: center; margin: 32px 0 48px; }
.events-tabs {
  display: inline-flex;
  gap: 2px;
  background: var(--white);
  border: 1px solid rgba(0,33,165,0.15);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.events-tab {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--gray-600);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.events-tab.is-active { background: var(--blue); color: var(--white); }
.events-tab:not(.is-active):hover { color: var(--blue); }

.timeline { max-width: 820px; margin: 0 auto; }
.timeline-item {
  position: relative;
  padding-left: 44px;
  padding-bottom: 40px;
  border-left: 1px solid rgba(0,33,165,0.15);
  scroll-margin-top: 100px;
}
.timeline-item:last-child,
.timeline-item.is-last-visible { border-left-color: transparent; padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -9px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid var(--gray-100);
}
.timeline-card {
  display: flex;
  gap: 24px;
  background: var(--white);
  border: 1px solid rgba(0,33,165,0.1);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.timeline-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08); transform: translateY(-2px); }
.timeline-card__date {
  flex: none;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.timeline-card__month { font-family: var(--font-head); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: #e5d5c0; }
.timeline-card__day { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; line-height: 1; }
.timeline-card__body { flex: 1; min-width: 0; }
.timeline-card__tags { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.timeline-card__body--sponsored .timeline-card__tags,
.timeline-card__body--sponsored h3 { padding-right: 220px; }
.tag-text {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.tag-text--muted { color: rgba(0,33,165,0.5); }
.timeline-card h3 { font-family: var(--font-head); font-size: 1.25rem; margin: 0 0 8px; color: var(--ink); }
.timeline-card__desc p { color: var(--gray-600); margin: 0 0 14px; overflow-wrap: anywhere; }
.timeline-card__desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}
.timeline-card__desc.is-expanded { display: block; overflow: visible; }
.timeline-card__desc a { color: inherit; text-decoration: underline; text-decoration-color: rgba(0,0,0,0.2); text-underline-offset: 2px; }
.timeline-card__desc a:hover { color: var(--orange); text-decoration-color: currentColor; }
.timeline-card__desc ul, .timeline-card__desc ol { margin: 0 0 14px; padding-left: 1.2em; }
.timeline-card__meta { clear: right; display: flex; gap: 24px; flex-wrap: wrap; color: var(--gray-600); font-size: 0.88rem; margin-bottom: 18px; }
.timeline-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.timeline-card__map-link { color: inherit; text-decoration: underline; text-decoration-color: rgba(0,0,0,0.2); text-underline-offset: 2px; }
.timeline-card__map-link:hover { color: var(--orange); text-decoration-color: currentColor; }
.timeline-card__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.desc-toggle {
  display: none;
  margin: -4px 0 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--blue);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.desc-toggle.is-visible { display: inline-block; }

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.15s ease;
}
.pill-btn--solid { background: var(--blue); color: var(--white); }
.pill-btn--solid:hover { filter: brightness(1.15); }
.pill-btn--outline { border-color: rgba(0,33,165,0.25); color: var(--blue); }
.pill-btn--outline:hover { background: rgba(0,33,165,0.05); }
.pill-btn--outline-orange { border-color: rgba(250,70,22,0.3); color: var(--orange); }
.pill-btn--outline-orange:hover { background: rgba(250,70,22,0.05); }
.icon { width: 16px; height: 16px; flex: none; }

@media (max-width: 640px) {
  .timeline-item { padding-left: 28px; }
  .timeline-dot { left: -9px; }
  .timeline-card { flex-direction: column; }
  .timeline-card__date { flex-direction: row; width: auto; height: auto; padding: 8px 16px; gap: 8px; align-self: flex-start; }
  /* Too little width to float the badge beside the text and still read well — stack it above instead. */
  .sponsor-badge { float: none; margin: 0 0 14px; }
}

@media (max-width: 480px) {
  .sponsor-badge { float: none; margin: 0 0 14px; }
}

/* ===== Den / CTA blocks ===== */
.den { text-align: center; max-width: 640px; margin: 0 auto; }
.den .lede { margin-left: auto; margin-right: auto; }
.den .btn-row { justify-content: center; }
.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ===== Marquee ===== */
.marquee {
  background: var(--orange);
  overflow: hidden;
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll 22s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  font-size: 1.1rem;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #cfd4ea; padding: 56px 0 24px; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer__col p { margin: 8px 0; font-size: 0.9rem; }
.site-footer__links { display: flex; flex-direction: column; gap: 10px; }
.site-footer__links a:hover { color: var(--white); }
.site-footer__copyright { font-size: 0.8rem; color: #838aa8; margin-top: 20px; }

@media (max-width: 700px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

/* ===== Page hero (non-home) ===== */
.page-hero {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 90px 0 70px;
  text-align: center;
}
.page-hero .lede { margin-left: auto; margin-right: auto; }
.page-hero .btn { margin-top: 8px; }

/* ===== Prose / two-col ===== */
.prose { max-width: 760px; margin: 0 auto; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 700px) {
  .two-col { grid-template-columns: 1fr; }
}
.checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--gray-600);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.section--dark .checklist li { color: #cfd4ea; }

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.team-card__avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.team-card__avatar--photo {
  background-color: rgba(255,255,255,0.06);
  background-size: cover;
  background-position: center;
}
.team-card h3 { font-family: var(--font-head); margin: 0 0 4px; font-size: 1rem; }
.team-card__role { color: var(--orange); font-size: 0.85rem; margin: 0 0 2px; }
.team-card__degree { color: #9aa2c0; font-size: 0.8rem; margin: 0 0 14px; }

@media (max-width: 860px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Scholarship "How It Grew" history timeline ===== */
.history-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.history-timeline__item {
  border-top: 3px solid var(--orange);
  padding-top: 16px;
}
.history-timeline__year { font-family: var(--font-head); color: var(--orange); font-weight: 700; font-size: 1.4rem; margin: 0 0 6px; }
.history-timeline__item h3 { font-family: var(--font-head); margin: 0 0 8px; font-size: 1.05rem; }
.history-timeline__item p { color: #cfd4ea; font-size: 0.92rem; }

@media (max-width: 860px) {
  .history-timeline { grid-template-columns: 1fr; }
}

/* ===== Sponsor tiers ===== */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.tier-card h3 { font-family: var(--font-head); margin: 0 0 8px; }
.tier-card__price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2rem;
  color: var(--orange);
  margin: 0 0 20px;
}
.tier-card .checklist { text-align: left; margin-bottom: 24px; }

@media (max-width: 860px) {
  .tier-grid { grid-template-columns: 1fr; }
}

/* ===== Newsletters ===== */
.newsletter-featured { max-width: 1080px; margin: 0 auto; text-align: center; }
.newsletter-embed {
  width: 100%;
  height: 85vh;
  min-height: 640px;
  max-height: 1400px;
  margin: 8px 0 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
}
.newsletter-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-height: 750px) {
  .newsletter-embed { height: 75vh; min-height: 480px; }
}

.newsletter-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.newsletter-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.newsletter-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.newsletter-card__date {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}
.newsletter-card__title { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.newsletter-card .link-arrow { margin-top: 4px; }

@media (max-width: 860px) {
  .newsletter-archive-grid { grid-template-columns: 1fr; }
}
