.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 18px;
  align-items: start;
}

.profile-card {
  display: grid;
  gap: 16px;
}

.profile-card-head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.profile-card-head h3 {
  margin: 0;
}

.profile-kicker {
  margin-bottom: 4px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.profile-photo-section {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.profile-photo {
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(216, 180, 106, 0.34);
  border-radius: 32px;
  background: var(--gold-2);
  color: #151007;
  box-shadow: var(--shadow-gold);
  font-size: 36px;
  font-weight: 950;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-photo-copy {
  min-width: 0;
}

.profile-photo-copy strong {
  color: var(--text);
}

.profile-photo-copy p {
  margin: 5px 0 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.profile-photo-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 1050px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .profile-grid {
    gap: 12px;
  }

  .profile-card {
    gap: 13px;
  }

  .profile-photo-section {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    padding: 14px;
    border-radius: 17px;
  }

  .profile-photo {
    width: 84px;
    height: 84px;
    border-radius: 24px;
  }

  .profile-photo-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}
