.outreach-section {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 200, 0, .09), transparent 34%),
    linear-gradient(to bottom, #050505, #090909);
  overflow: hidden;
}

.outreach-header {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.outreach-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.05;
  margin: 24px 0;
}

.outreach-header h2::first-line {
  color: var(--primary);
}

.outreach-header p {
  max-width: 760px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.76);
}

.outreach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1050px;
  margin: auto;
}

.outreach-card {
  padding: 46px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: var(--shadow);
}

.outreach-card.production {
  background: linear-gradient(145deg, #ffd54a, #f5be18);
  color: #111;
}

.slate-label {
  display: inline-block;
  margin-bottom: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,200,0,.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.production .slate-label {
  background: #111;
  color: var(--primary);
}

.outreach-card h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin-bottom: 32px;
}

.production h3 {
  color: #111;
}

.outreach-card ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.outreach-card li {
  position: relative;
  padding-left: 30px;
  color: rgba(255,255,255,.76);
  line-height: 1.7;
  font-weight: 700;
}

.production li {
  color: #2f2f2f;
}

.outreach-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.production li::before {
  color: #7a5200;
}

.outreach-link {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #111;
  font-weight: 900;
}

.outreach-link:hover {
  gap: 18px;
}

@media (max-width: 900px) {
  .outreach-grid {
    grid-template-columns: 1fr;
  }
}