.contact-person-profile {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px;
  margin-top: 24px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(15, 23, 32, 0.06);
}

.contact-person-profile-photo-frame {
  margin: 0;
  width: 240px;
  min-width: 240px;
  border-radius: 24px;
  overflow: hidden;
  background: #f7f8fa;
}

.contact-person-profile-photo {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.contact-person-profile-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  max-width: 420px;
}

.contact-person-profile-name {
  margin: 0 0 6px;
  font-size: 2.2rem;
  line-height: 1.05;
  font-weight: 700;
  color: #0f1720;
  letter-spacing: -0.02em;
}

.contact-person-profile-role {
  margin: 0 0 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #8a97a3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-person-profile-description {
  margin: 0 0 18px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #5f6b77;
}

.contact-person-profile-divider {
  width: 40px;
  height: 2px;
  background: #e5e9ef;
  margin-bottom: 14px;
}

.contact-person-profile-email {
  font-size: 1rem;
  color: #d98b17;
  text-decoration: none;
  font-weight: 600;
}

.contact-person-profile-email:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .contact-person-profile {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 24px;
  }

  .contact-person-profile-photo-frame {
    width: 100%;
    max-width: 280px;
    min-width: 0;
  }

  .contact-person-profile-photo {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .contact-person-profile-name {
    font-size: 1.8rem;
  }
}
