/* ─── HERO ─────────────────────────────────────────────────────────── */
.hero {
  padding-top: 130px;
  padding-bottom: 20px;
  overflow: visible;
}

/* ─── SECTION ──────────────────────────────────────────────────────── */
.about-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 40px 80px;
}

.about-section + .about-section {
  padding-top: 0;
}

.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ─── TEAM GRID ────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.team-card:hover {
  border-color: rgba(var(--accent-rgb), 0.15);
  transform: translateY(-2px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.35), 0 0 60px rgba(var(--accent-rgb), 0.03);
}

.team-card:hover::before { opacity: 1; }

.team-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(var(--accent-rgb), 0.2);
  flex-shrink: 0;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.team-bio {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.team-bio p + p {
  margin-top: 12px;
}

.inner-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 56px 0 48px;
}

/* ─── DC COLOR ─────────────────────────────────────────────────────── */
.dccolor-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.dccolor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.dccolor-card:hover {
  border-color: rgba(var(--accent-rgb), 0.15);
  transform: translateY(-2px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.35), 0 0 60px rgba(var(--accent-rgb), 0.03);
}

.dccolor-card:hover::before { opacity: 1; }

.dccolor-logo-wrap {
  width: 110px;
  height: 110px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dccolor-logo-wrap img {
  width: 130%;
  height: auto;
}

.dccolor-body {
  flex: 1;
}

.dccolor-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.dccolor-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.dccolor-link:hover { color: var(--accent-dim); }

/* ─── PODCAST ──────────────────────────────────────────────────────── */
.podcast-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.podcast-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.podcast-card:hover {
  border-color: rgba(var(--accent-rgb), 0.15);
  transform: translateY(-2px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.35), 0 0 60px rgba(var(--accent-rgb), 0.03);
}

.podcast-card:hover::before { opacity: 1; }

.podcast-icon {
  width: 110px;
  height: 110px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.podcast-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.podcast-card h3,
.dccolor-card h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.podcast-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.podcast-card p + p { margin-bottom: 24px; }

.podcast-listen-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.podcast-listen-link:hover {
  background: rgba(var(--accent-rgb), 0.16);
  border-color: rgba(var(--accent-rgb), 0.35);
}

/* ─── MOBILE ───────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .team-grid { grid-template-columns: 1fr; }
  .podcast-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .about-section { padding: 40px 20px 56px; }
  .team-card { padding: 28px; }
  .podcast-card { padding: 28px; }
  .dccolor-card { padding: 24px; flex-direction: column; align-items: flex-start; }
}
