.peer-support-body .career-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(72, 140, 136, 0.28) 0%, transparent 36%),
    radial-gradient(circle at 16% 82%, rgba(229, 195, 126, 0.14) 0%, transparent 28%),
    linear-gradient(135deg, #081321 0%, #0a1825 46%, #08111c 100%);
}

.peer-support-body .hero-subtitle-p {
  max-width: 580px;
}

.peer-support-body .peer-hero-visual {
  justify-content: center;
}

.peer-video-frame {
  width: min(100%, 640px);
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(229, 195, 126, 0.22);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.peer-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.peer-contact-pill {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  width: min(100%, 760px);
}

.peer-contact-pill-label {
  display: block;
  margin: 0;
  color: var(--text-1);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.peer-contact-pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.peer-contact-pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(229, 195, 126, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.peer-contact-pill a::after {
  display: none;
}

.peer-contact-pill-link:hover {
  color: #fff;
  background: rgba(229, 195, 126, 0.08);
  border-color: rgba(229, 195, 126, 0.4);
  transform: translateY(-1px);
}

.peer-overview-card {
  height: 100%;
  min-height: 100%;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
}

.peer-overview-card-inner,
.peer-resource-panel,
.peer-action-card,
.peer-contact-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: var(--sp-8);
}

.peer-overview-card-inner .section-title {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
}

.peer-resource-panel,
.peer-action-card {
  height: 100%;
}

.peer-resource-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.peer-resource-panel .section-label {
  margin-bottom: 0.5rem;
  display: block;
}

.peer-resource-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(229, 195, 126, 0.15);
  border-radius: 20px;
  transition: all 0.3s ease;
  align-items: center;
}

.peer-resource-item:hover {
  background: rgba(229, 195, 126, 0.06);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.peer-resource-icon {
  width: 48px;
  height: 48px;
  background: rgba(229, 195, 126, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(229, 195, 126, 0.2);
}

.peer-resource-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.peer-resource-item strong {
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.peer-resource-item p {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.peer-action-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-5);
}

.peer-contact-stack {
  display: grid;
  gap: var(--sp-5);
}

.peer-contact-card {
  background: rgba(255, 255, 255, 0.025);
}

.peer-contact-card a,
.peer-service-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.peer-support-actions-section {
  border-top: 1px solid var(--border);
}

.peer-section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-12);
}

.peer-service-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.peer-service-card {
  display: grid;
  gap: var(--sp-4);
  text-align: left;
}

.peer-service-card a {
  width: fit-content;
  border-bottom: 1px solid rgba(229, 195, 126, 0.35);
  padding-bottom: 0.18rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.peer-service-card a:hover,
.peer-contact-card a:hover {
  color: #fff;
  border-color: #fff;
}

@media (max-width: 992px) {
  .peer-video-frame {
    aspect-ratio: 16 / 9;
  }

  .peer-contact-pill {
    width: 100%;
  }

  .peer-contact-pill-links {
    flex-direction: column;
    align-items: stretch;
  }

  .peer-contact-pill-link {
    width: 100%;
  }

  .peer-service-cards {
    grid-template-columns: 1fr;
  }
}
