.profile { padding: var(--section-pad) 0; }
.profile__label {
  font-size: 13px; letter-spacing: 0.06em; color: var(--c-steel);
  text-align: center; margin-bottom: 12px;
}
.profile__heading { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.profile__inner {
  display: flex; gap: clamp(36px, 5vw, 64px); align-items: flex-start;
}
.profile__photo {
  flex-shrink: 0; width: clamp(180px, 20vw, 240px);
  border-radius: var(--card-radius); background: var(--c-light-gray);
  border: 1px solid var(--c-card-light-border);
  overflow: hidden;
}
.profile__photo img {
  width: 100%; height: auto; display: block;
}
.profile__name {
  font-size: clamp(20px, 2.5vw, 28px); font-weight: var(--fw-bold);
  margin-bottom: 20px; line-height: 1.3;
}
.profile__name span {
  display: block; font-family: var(--font-en); font-size: 14px;
  font-weight: var(--fw-light); color: var(--c-steel); margin-top: 4px;
  letter-spacing: 0.04em;
}
.profile__career {
  margin-bottom: 28px;
}
.profile__career p {
  font-size: 14px; color: var(--c-text-on-light-sub); line-height: 1.9;
}
.profile__message {
  font-size: 15px; line-height: 1.9; padding: clamp(20px, 2.5vw, 28px);
  border-left: 3px solid var(--c-accent);
  background: var(--c-off-white); border-radius: 0 var(--card-radius) var(--card-radius) 0;
  color: var(--c-text-on-light); font-style: normal;
}
