/* ============================================
   SAMPADA AYURVEDIC CENTRE — About Doctor CSS
   ============================================ */

.profile-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: var(--space-12);
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .profile-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.profile-visual {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}
@media (max-width: 1024px) {
  .profile-visual { position: relative; top: auto; }
}

.profile-avatar {
  font-size: 96px;
  margin-bottom: var(--space-6);
  width: 160px;
  height: 160px;
  border-radius: var(--radius-full);
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.profile-credentials h3 {
  font-size: var(--text-2xl);
  color: var(--primary-800);
  margin-bottom: var(--space-2);
}

.profile-credentials p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 2px;
}

.profile-credentials .reg-number {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px dashed var(--border-medium);
}

.profile-content h2 {
  font-size: var(--text-3xl);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.profile-content .large-text {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.profile-content h3 {
  font-size: var(--text-xl);
  color: var(--primary-700);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  border-bottom: 2px solid var(--primary-100);
  padding-bottom: var(--space-2);
}

.profile-content ul {
  margin-bottom: var(--space-8);
  padding-left: var(--space-6);
}

.profile-content li {
  list-style-type: disc;
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
}

.cta-box {
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin-top: var(--space-10);
}

.cta-box h4 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--primary-800);
  margin-bottom: var(--space-2);
}

.cta-box p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.cta-box__buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .cta-box__buttons .btn {
    width: 100%;
  }
}
