.profile-section {
  background: linear-gradient(180deg, #f3f4f2 0%, #f8f8f6 100%);
  color: var(--ink);
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: clamp(46px, 8vw, 112px);
  align-items: center;
  padding: clamp(40px, 6vw, 68px);
  border: 1px solid rgba(25, 26, 29, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-lift);
}

.profile-photo-wrap {
  border: 1px solid rgba(25, 26, 29, 0.1);
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
}

.profile-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
}

.profile-copy {
  min-width: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.profile-copy h2 {
  color: var(--ink);
}

.profile-copy p {
  margin: 0;
}

.profile-copy p + p {
  margin-top: 20px;
}

.profile-brand {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
}

.profile-role {
  margin: 16px 0 28px;
  color: var(--green);
  font-weight: 800;
}

.profile-actions {
  margin-top: 34px;
}

.profile-actions .button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(25, 26, 29, 0.22);
}

@media (max-width: 920px) {
  .profile-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .profile-photo-wrap {
    width: min(260px, 54vw);
  }
}

@media (max-width: 640px) {
  .profile-layout {
    gap: 28px;
    padding: 16px;
    box-shadow: var(--shadow);
  }

  .profile-photo-wrap {
    width: 100%;
    margin-inline: 0;
    padding: 0;
    overflow: hidden;
  }

  .profile-photo {
    aspect-ratio: 4 / 3;
    object-position: center 36%;
  }

  .profile-copy {
    font-size: 0.88rem;
    line-height: 1.82;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .profile-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
    line-height: 1.18;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .profile-brand {
    margin-top: 12px;
  }

  .profile-role {
    margin: 12px 0 20px;
    font-size: clamp(1rem, 5vw, 1.22rem);
    line-height: 1.45;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .profile-copy p + p {
    margin-top: 16px;
  }
}

@media (max-width: 360px) {
  .profile-layout {
    padding: 12px;
  }

  .profile-copy {
    font-size: 0.86rem;
  }
}
