/* ================= AFSN SPOTLIGHT GRID — Stanford News style ================= */

.afsn-sg {
  background: #f2f1ee;
  padding: 80px 20px;
}

.afsn-sg-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.afsn-sg-intro h2 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.15;
}

.afsn-sg-intro p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: #444;
  max-width: 460px;
  margin: 0 0 28px;
}

.afsn-sg-cta {
  display: inline-block;
  background: var(--afsn-red, #7a0c1e);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: 26px;
  transition: background 0.2s ease;
}

.afsn-sg-cta:hover { background: var(--afsn-red-dark, #5c0916); }

.afsn-sg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.afsn-sg-card {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.afsn-sg-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0c295e;
}

.afsn-sg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0c295e;
}

.afsn-sg-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(10,33,88,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.25s ease, transform 0.2s ease;
}

.afsn-sg-play:hover {
  background: rgba(10,33,88,0.55);
  transform: translate(-50%, -50%) scale(1.06);
}

.afsn-sg-play::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
  margin-left: 3px;
}

.afsn-sg-card.is-playing .afsn-sg-play {
  opacity: 0;
  pointer-events: none;
}

.afsn-sg-body {
  padding: 20px 4px 0;
}

.afsn-sg-tags {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.afsn-sg-label,
.afsn-sg-cat {
  color: var(--afsn-red, #7a0c1e);
}

.afsn-sg-sep {
  color: #ccc;
  margin: 0 6px;
}

.afsn-sg-body h3 {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.afsn-sg-body p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #666;
  margin: 0 0 16px;
}

.afsn-sg-meta {
  display: block;
  font-size: 0.8rem;
  color: #888;
}

@media (min-width: 1000px) {
  .afsn-sg-container {
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .afsn-sg { padding: 50px 16px; }
  .afsn-sg-grid { grid-template-columns: 1fr; gap: 32px; }
  .afsn-sg-intro p { max-width: 100%; }
}

