/* STEM page — light extensions on site.css + sport.css */

.stem-tracks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 1.5rem;
}

.stem-tracks li {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.stem-tracks b {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stem-robots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stem-robots figure {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.stem-robots img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  background: var(--paper-2);
}

.stem-robots figcaption {
  padding: 1.1rem 1.25rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.stem-robots figcaption b {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.stem-contact {
  grid-template-columns: 1fr;
  align-items: start;
  max-width: 28rem;
}

.stem-contact-person {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.stem-contact-person img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.stem-contact-person span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.15rem 0 0.35rem;
}

.stem-contact-person a {
  color: var(--accent);
  font-weight: 600;
}

.stem-cta-row {
  margin-top: 1.75rem;
}

@media (max-width: 800px) {
  .stem-tracks,
  .stem-robots {
    grid-template-columns: 1fr;
  }

  .stem-robots img {
    height: 220px;
  }
}
