/* Shoulder - Design Partners Page
   ========================================================================== */

/* ==========================================================================
   Hero
   ========================================================================== */

.dp-hero {
  padding: 56px 0 0;
  margin-bottom: 8px;
}

.dp-hero-content {
  max-width: 680px;
}

.dp-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(57, 217, 138, 0.10);
  color: #6ee7a8;
  border: 1px solid rgba(57, 217, 138, 0.25);
  border-radius: 20px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dp-hero-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 16px 0 16px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.dp-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 12px;
  max-width: 600px;
  line-height: 1.6;
}

.dp-subtitle:last-of-type {
  margin-bottom: 0;
}

.dp-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.dp-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border2);
}

.dp-section:last-child {
  border-bottom: none;
}

.dp-prose {
  max-width: 680px;
}

.dp-prose h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.3;
}

.dp-prose p {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.dp-prose p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Lists
   ========================================================================== */

.dp-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dp-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--border2);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.dp-list li:last-child {
  border-bottom: none;
}

.dp-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted2);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.dp-cta-section {
  border-bottom: none;
}

.dp-cta-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .dp-hero {
    padding: 36px 0 0;
  }

  .dp-hero-content h1 {
    font-size: 1.65rem;
  }

  .dp-section {
    padding: 36px 0;
  }
}

@media (max-width: 480px) {
  .dp-hero-content h1 {
    font-size: 1.35rem;
  }

  .dp-hero-actions,
  .dp-cta-actions {
    flex-direction: column;
  }

  .dp-hero-actions .btn,
  .dp-cta-actions .btn {
    justify-content: center;
  }
}
