/*
 * page-siug.css
 * Shared across all four Start It Up Georgia pages (landing, Lesson Labs,
 * Mentors, 2020 Recap) — same reuse pattern this theme already uses for CPT
 * archives sharing their page-template's CSS handle (see the $archive_css
 * map in functions.php).
 *
 * Same cascade issue documented in page-studio.css: companies.html (later in the
 * concatenated main.css) adds display:flex + gap:8px + ::after ruler to
 * .section-label; this page needs the plain block version instead.
 */
.section-label {
  color: var(--blue);
  display: block;
  gap: 0;
}
.section-label::after {
  display: none;
}

/* .how-grid assumes exactly 4 steps + 3 arrows (1fr 44px x3 1fr) sitewide;
   this page has 3 steps + 2 arrows. Scoped to match main.css's own
   .how-grid breakpoint (max-width:1100px) exactly — without this, the
   override's higher specificity beats the mobile fallback below 1100px,
   which still collapses .how-arrow via display:none, and the 3 real
   .how-step items then auto-place into the arrows' 44px tracks instead
   of the 1fr ones, causing severe overlap. */
@media (min-width: 1101px) {
  .av-page-siug .how-grid-3 {
    grid-template-columns: 1fr 44px 1fr 44px 1fr;
  }
}

/* Partner logo grid — no existing static logo-grid component on the site to
   reuse (the homepage's "Companies We've Grown" strip is an animated marquee,
   not a fit for a fixed historical list), so this mirrors the visual language
   of .company-card (white tile, subtle border, centered content) at a smaller
   scale appropriate for plain logo credits. */
.siug-partners-section {
  padding: 72px 56px 96px;
}
.siug-partners-header {
  text-align: center;
  margin-bottom: 40px;
}
.siug-partners-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.siug-partner-tile {
  aspect-ratio: 1;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.siug-partner-tile:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.siug-partner-tile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

/* Lesson Labs / Mentors CTA links inside How It Worked steps */
.how-step-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.how-step-link:hover {
  color: var(--blue-dark);
}

@media (max-width: 900px) {
  .siug-partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .siug-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Shared page intro paragraph — Lesson Labs / Mentors / 2020 Recap headers */
.siug-intro {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 300;
  max-width: 720px;
  margin-bottom: 40px;
}

/* Lesson Labs list */
.siug-lesson-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.siug-lesson {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.siug-lesson:last-child {
  border-bottom: 1px solid var(--border);
}
.siug-lesson-date {
  text-align: center;
}
.siug-lesson-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue-pale);
  letter-spacing: -0.03em;
  line-height: 1;
}
.siug-lesson-day {
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 600;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.siug-lesson-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.siug-lesson-body > p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 18px;
}
.siug-instructor {
  display: flex;
  align-items: center;
  gap: 14px;
}
.siug-instructor-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.siug-instructor-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}
.siug-instructor-bio {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
  max-width: 520px;
}

/* Mentors grid — simple text tiles, no photos in the source material */
.siug-mentor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.siug-mentor-tile {
  background: var(--light);
  border-radius: 10px;
  padding: 16px 18px;
}
.siug-mentor-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.siug-mentor-org {
  font-size: 0.76rem;
  color: var(--gray);
  font-weight: 400;
}

/* 2020 Recap stat grid — light-mode variant of the homepage's .about-stats
   (that pattern is built for a dark/translucent section; this page is
   plain white, so colors are adapted while keeping the same big-number +
   uppercase-label convention). */
.siug-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.siug-stat {
  background: white;
  padding: 28px 16px;
  text-align: center;
}
.siug-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.siug-stat-label {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .siug-lesson {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .siug-lesson-date {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .siug-mentor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .siug-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .siug-mentor-grid {
    grid-template-columns: 1fr;
  }
}
