.about-profile-wrap {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 40px;
}

.about-profile-image {
  min-height: 430px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(18, 35, 63, .14);
  background: #d8e8f5;
}

.about-profile-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.about-profile-panel {
  padding: 34px 38px;
  border: 1px solid #c6def1;
  border-radius: 8px;
  background: linear-gradient(135deg, #bfe9fb 0%, #c5d1e9 100%);
  box-shadow: 0 22px 65px rgba(18, 72, 119, .12);
}

.about-profile-panel h2 {
  margin: 18px 0 12px;
  color: #10233f;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.about-profile-panel p {
  margin: 0 0 24px;
  color: #314767;
  font-size: 17px;
  line-height: 1.7;
}

.about-info-table {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, .28);
}

.about-info-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, .48);
}

.about-info-row:last-child {
  border-bottom: 0;
}

.about-info-label,
.about-info-value {
  padding: 13px 16px;
  color: #0f2b4a;
  line-height: 1.45;
}

.about-info-label {
  font-weight: 900;
  background: rgba(255, 255, 255, .32);
}

.about-info-value {
  font-weight: 650;
}

.about-profile-panel .neo-btn {
  box-shadow: 0 16px 42px rgba(24, 136, 255, .18);
}

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

  .about-profile-image,
  .about-profile-image img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .about-profile-panel {
    padding: 26px 20px;
  }

  .about-info-row {
    grid-template-columns: 1fr;
  }

  .about-info-label {
    padding-bottom: 6px;
  }

  .about-info-value {
    padding-top: 6px;
  }
}
