/* ============================================================
   TEDxAsburyPark — Main Stylesheet
   Color scheme: TED Red #E62B1E · Black #0A0A0A · White #FFFFFF
   Display: Bebas Neue · Body: Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --red:       #E62B1E;
  --red-dark:  #b01f14;
  --black:     #0A0A0A;
  --off-black: #1a1a1a;
  --gray-dark: #2d2d2d;
  --gray-mid:  #5a5a5a;
  --gray-light:#c8c8c8;
  --off-white: #f5f5f5;
  --white:     #ffffff;

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 1200px;
  --nav-h: 72px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography Scale ─────────────────────────────────────── */
.display-xl { font-family: var(--font-display); font-size: clamp(4rem, 10vw, 9rem); line-height: 0.92; letter-spacing: 0.01em; }
.display-lg { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 6rem);  line-height: 0.95; }
.display-md { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem);  line-height: 1; }
.display-sm { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem);  line-height: 1.05; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.body-lg  { font-size: 1.125rem; line-height: 1.7; }
.body-md  { font-size: 1rem;     line-height: 1.7; }
.body-sm  { font-size: 0.875rem; line-height: 1.6; }

/* ── Layout Utilities ─────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.section-pad { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-pad-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }

/* ── Signature: Red Idea Line ─────────────────────────────── */
/* A bold left-border red accent on major section heads */
.section-header {
  position: relative;
  padding-left: 1.25rem;
  border-left: 4px solid var(--red);
  margin-bottom: 2.5rem;
}
.section-header .eyebrow { margin-bottom: 0.5rem; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--black);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.5); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.nav__logo img { height: 36px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: 0.5rem 0.75rem;
  border-radius: 3px;
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a.active { color: var(--white); }

.nav__cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 3px;
  transition: background var(--transition) !important;
}
.nav__cta:hover { background: var(--red-dark) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 820px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 2rem;
    gap: 0;
    border-top: 1px solid var(--gray-dark);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 0.85rem 0.5rem; border-bottom: 1px solid var(--gray-dark); border-radius: 0; }
  .nav__links a:last-child { border-bottom: none; }
  .nav__cta { margin-top: 0.75rem; text-align: center; border-radius: 3px !important; border-bottom: none !important; }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 3px;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-red   { background: var(--red);   color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 4px 16px rgba(230,43,30,0.3); }

.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--black); }

.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }

.btn-outline-black { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline-black:hover { background: var(--black); color: var(--white); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.5) 50%,
    rgba(10,10,10,0.1) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 clamp(3rem, 6vw, 5rem);
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero__badge::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

.hero__title { color: var(--white); margin-bottom: 1.25rem; }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-light);
  max-width: 560px;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.65;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero__scroll {
  position: absolute;
  bottom: 2rem; right: clamp(1.25rem, 4vw, 3rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-mid);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--red);
  color: var(--white);
  padding: 1.75rem 0;
}
.stats-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stats-bar__item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0.75rem 1.5rem;
  position: relative;
}
.stats-bar__item + .stats-bar__item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.25);
}
.stats-bar__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  display: block;
}
.stats-bar__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.25rem;
  display: block;
}

/* ── Cards ────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: transparent;
}
.card:hover .card__image img { transform: scale(1.04); }

.card__image { overflow: hidden; aspect-ratio: 16/9; background: var(--off-black); }
.card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }

.card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card__category { margin-bottom: 0.5rem; }
.card__date { font-size: 0.72rem; color: var(--gray-mid); font-weight: 500; margin-bottom: 0.75rem; }
.card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  flex: 1;
}
.card__excerpt { font-size: 0.9rem; color: var(--gray-mid); line-height: 1.65; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap var(--transition);
}
.card__link:hover { gap: 0.7rem; }
.card__link::after { content: '→'; }

/* ── Featured Card (large) ────────────────────────────────── */
.card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--off-black);
  color: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: none;
  margin-bottom: 1.5rem;
}
.card-featured:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.25); }
.card-featured .card__image { aspect-ratio: unset; min-height: 320px; }
.card-featured .card__body { padding: 2.5rem; background: var(--off-black); justify-content: flex-end; }
.card-featured .card__date { color: var(--gray-light); }
.card-featured .card__title { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.card-featured .card__excerpt { color: var(--gray-light); }
.card-featured .card__link { color: var(--red); }

@media (max-width: 680px) {
  .card-featured { grid-template-columns: 1fr; }
  .card-featured .card__image { min-height: 220px; }
}

/* ── Talk Cards ───────────────────────────────────────────── */
.talk-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: flex-start;
  transition: background var(--transition);
}
.talk-card:last-child { border-bottom: none; }
.talk-card__thumb {
  flex-shrink: 0;
  width: 160px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 3px;
  background: var(--off-black);
  position: relative;
}
.talk-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.talk-card:hover .talk-card__thumb img { transform: scale(1.06); }
.talk-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background var(--transition);
}
.talk-card:hover .talk-card__play { background: rgba(230,43,30,0.6); }
.talk-card__play svg { width: 28px; height: 28px; color: var(--white); }
.talk-card__body { flex: 1; }
.talk-card__title { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.1; margin-bottom: 0.5rem; }
.talk-card__meta { font-size: 0.8rem; color: var(--gray-mid); margin-bottom: 0.5rem; }
.talk-card__views { font-size: 0.75rem; color: var(--red); font-weight: 600; }

@media (max-width: 560px) {
  .talk-card { flex-direction: column; }
  .talk-card__thumb { width: 100%; }
}

/* ── Partner Logos ────────────────────────────────────────── */
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
.partner-item {
  flex: 0 0 auto;
  width: clamp(100px, 18%, 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  filter: grayscale(1) opacity(0.55);
  transition: filter var(--transition), transform var(--transition);
}
.partner-item:hover { filter: grayscale(0) opacity(1); transform: scale(1.06); }
.partner-item img { max-height: 60px; width: auto; object-fit: contain; }

/* ── Dark Section ─────────────────────────────────────────── */
.section-dark {
  background: var(--off-black);
  color: var(--white);
}
.section-dark .section-header .eyebrow { color: #ff6b61; }

/* ── Red Section ──────────────────────────────────────────── */
.section-red {
  background: var(--red);
  color: var(--white);
}
.section-red .section-header { border-left-color: var(--white); }
.section-red .section-header .eyebrow { color: rgba(255,255,255,0.75); }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--red) 0%, transparent 70%);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__eyebrow { margin-bottom: 1rem; }
.page-hero__title { margin-bottom: 1rem; }
.page-hero__desc { font-size: 1.1rem; color: var(--gray-light); max-width: 560px; font-weight: 300; }

/* ── CTA Strip ────────────────────────────────────────────── */
.cta-strip {
  background: var(--red);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-strip__title { color: var(--white); margin-bottom: 1rem; }
.cta-strip__sub { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--gray-light);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo { height: 32px; margin-bottom: 1.25rem; }
.footer__about { font-size: 0.875rem; line-height: 1.7; color: var(--gray-mid); max-width: 280px; }
.footer__heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.875rem;
  color: var(--gray-mid);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer__social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gray-dark);
  color: var(--gray-mid);
  font-size: 0.8rem;
  font-weight: 700;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer__social a:hover { border-color: var(--red); color: var(--white); background: var(--red); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-dark);
  font-size: 0.78rem;
  color: var(--gray-mid);
}
.footer__ted-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
}
.footer__ted-badge span {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── About Page ───────────────────────────────────────────── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}
.about-stat {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about-stat:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(230,43,30,0.08); }
.about-stat__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--red);
  line-height: 1;
  display: block;
}
.about-stat__label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-mid); margin-top: 0.5rem; }

@media (max-width: 600px) {
  .about-stats { grid-template-columns: 1fr; }
}

.themes-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.theme-pill {
  font-family: var(--font-display);
  font-size: 1.1rem;
  background: var(--off-black);
  color: var(--white);
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: background var(--transition);
}
.theme-pill:hover { background: var(--red); }

/* ── Get Involved 2-col ───────────────────────────────────── */
.involve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 700px) { .involve-grid { grid-template-columns: 1fr; } }

.involve-card {
  background: var(--off-black);
  color: var(--white);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.involve-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.35); }
.involve-card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.involve-card__body { padding: 2rem; }
.involve-card__title { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.75rem; }
.involve-card__text { font-size: 0.9rem; color: var(--gray-light); line-height: 1.7; margin-bottom: 1.5rem; }

/* ── News section ─────────────────────────────────────────── */
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background var(--transition);
}
.news-item:last-child { border-bottom: none; }
.news-item__num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.25;
  flex-shrink: 0;
  width: 3rem;
  text-align: center;
}
.news-item__body {}
.news-item__date { font-size: 0.72rem; color: var(--gray-mid); font-weight: 500; margin-bottom: 0.35rem; letter-spacing: 0.06em; }
.news-item__title { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.1; margin-bottom: 0.4rem; }
.news-item__title a:hover { color: var(--red); }
.news-item__excerpt { font-size: 0.875rem; color: var(--gray-mid); line-height: 1.6; }

/* ── Venue strip ──────────────────────────────────────────── */
.venue-strip {
  background: var(--off-white);
  padding: 2.5rem 0;
  text-align: center;
}
.venue-strip__text { font-size: 1rem; color: var(--gray-mid); }
.venue-strip__name { font-family: var(--font-display); font-size: 1.8rem; color: var(--black); }

/* ── Scroll-reveal animation ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Misc helpers ─────────────────────────────────────────── */
.text-red   { color: var(--red); }
.text-white { color: var(--white); }
.text-gray  { color: var(--gray-mid); }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-4  { margin-bottom: 2rem; }
.flex-gap { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 680px) { .two-col-text { grid-template-columns: 1fr; } }

/* ── Partners page specific ───────────────────────────────── */
.partner-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  gap: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-align: center;
  min-height: 140px;
}
.partner-logo-card:hover {
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(230,43,30,0.1);
  transform: translateY(-3px);
}
.partner-logo-card img { max-height: 64px; width: auto; object-fit: contain; }
.partner-logo-card__name { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-mid); }
.partner-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
}
