#primary .ghrc-doctor-detail-photo[data-doctor-photo="avatar"] {
  background:
    radial-gradient(
      circle at 30% 18%,
      rgba(255, 255, 255, 0.86),
      transparent 26%
    ),
    linear-gradient(135deg, rgba(14, 143, 197, 0.18), rgba(41, 168, 143, 0.13));
}

#primary .ghrc-doctor-detail-photo[data-doctor-photo="avatar"] img {
  object-fit: contain;
  object-position: center center;
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

#primary .ghrc-doctor-profile-sections {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

#primary .ghrc-doctor-profile-section {
  border: 1px solid rgba(14, 143, 197, 0.14);
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(238, 248, 248, 0.48) 100%
  );
  box-shadow: 0 16px 34px -30px rgba(22, 19, 63, 0.36);
  padding: clamp(1rem, 2vw, 1.35rem);
}

#primary .ghrc-doctor-profile-section h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.35;
}

#primary .ghrc-doctor-profile-section p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.94rem;
  line-height: 1.65;
}

#primary .ghrc-doctor-profile-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

#primary .ghrc-doctor-profile-list li {
  position: relative;
  min-height: 3rem;
  border: 1px solid rgba(14, 143, 197, 0.12);
  border-radius: 8px;
  background: #fff;
  color: hsl(var(--muted-foreground));
  line-height: 1.45;
  padding: 0.78rem 0.9rem 0.78rem 2rem;
}

#primary .ghrc-doctor-profile-list li::before {
  content: "";
  position: absolute;
  top: 1.18rem;
  left: 0.9rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--ghrc-teal);
  box-shadow: 0 0 0 4px rgba(41, 168, 143, 0.12);
}

@media (max-width: 768px) {
  #primary .ghrc-doctor-profile-list {
    grid-template-columns: 1fr;
  }
}
