.profile-about {
  display: grid;
  margin-top: 60px;
  padding: 25px;
  border: 3px solid var(--clr-black);
  grid-template-columns: 0.955fr 2fr;
  gap: 20px;
}

.profile-about.full-name {
    grid-template-columns: 1fr!important;
}

.profile-about.full-name .profile-about-info {
    padding-top: 0;
}

.profile-about-media {
  position: relative;
  min-width: 250px;
}

.profile-about-media:before {
  content: "";
  display: block;
  padding-bottom: 116.28%;
}

.profile-about-media-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.profile-about-info {
  padding-top: 40px;
}

.profile-about-pos {
  margin-top: 15px;
  font-family: var(--acc-font);
  font-size: 16px;
  font-weight: 700;
}

.profile-about-desc {
  margin-top: 40px;
}

@media screen and (max-width: 1440px) {
  .profile-about {
    margin-top: 55px;
  }

  .profile-about-info {
    padding-top: 30px;
  }

  .profile-about-desc {
    margin-top: 30px;
  }
}

@media screen and (max-width: 1164px) {
  .profile-about {
    margin-top: 45px;
    padding: 16px;
    gap: 16px;
  }

  .profile-about-info {
    padding-top: 24px;
  }

  .profile-about-pos {
    font-size: 13px;
  }

  .profile-about-desc {
    margin-top: 24px;
  }
}

@media screen and (max-width: 624px) {
  .profile-about {
    margin-top: 12px;
    grid-template-columns: 1fr;
  }

  .profile-about-media {
    min-width: auto;
    order: 1;
  }

  .profile-about-info {
    padding: 0;
  }

  .profile-about-pos {
    margin-top: 8px;
  }
}
