/* ============================================================
   Profile Page
   ============================================================ */

.profile {
  padding: 80px 0;
}

.profile__card {
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}

.profile__photo {
  flex: 0 0 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-300);
  font-size: 13px;
}

.profile__info {
  flex: 1;
}

.profile__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.profile__text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 2;
}

/* --- CTA wave --- */
.cta--profile {
  background: var(--blue-50);
}

.cta--profile::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,30 C480,60 960,0 1440,30 L1440,0 L0,0Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat top center;
  background-size: cover;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .profile__card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .profile__photo {
    flex: none;
  }
}
