/* DESKTOP*/
@media only screen and (768px < width) {

  .page-font {
    /* font-size: clamp(13px,calc(max(2.9vw,1.5vh) + 0.19rem),40px); */
    color: hsl(214, 17%, 51%) ;
    
    font-weight: 500;
    font-size: clamp(13px,max(0.8vw,1.45vh),25px);
  }

  .page-wrapper {

    min-width: 720px;

    min-height: 380px;
    height: 100%;
    
  }

  .main-wrapper {

    flex-direction: row;
    justify-content: start;

    width: 720px;
    
    min-height: 300px;
    height: 40%;
    
    padding: 0;

    position: relative;
  }

  .main-img-wrapper {
    
    width: 50%;
    height: 100%;

    object-fit: cover;


    border-radius: 12px 0 0 12px ;

  }

  main {
    width: 420px;
    height: 100%;
    padding: 5% 32px 32px 32px;

    border-radius: 0 12px 12px 0;

    position: absolute;
    right: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: min(4%,1px);
  }

  .main-h1 {
    
    width: 100%;
    font-weight: 700;
    font-size: clamp(20px,max(1.5vw,2vh),21px);
  }

  /* .main-text {
    height: 65%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
  } */

  .main-p {
    padding: 0;
  }

  .footer {
    width: 100%;
    height: 24%;
  }

  .avatar-wrapper {
    height: 75%;
  }

  .avatar-information {
    height: 100%;
  }

  .forward-arrow {
    width: 40px;
    height: 40px;
  
  }

  .share-section {
    width: 235px;
    height: 63px;

    bottom: 90px;
    left: auto;
    right: -63px;
    
  }

  

  .share-wrapper {
    width: 235px;
    height: 50px;
    border-radius: 10px;

    box-shadow: 0 12px 16px 2px hsla(212, 23%, 69%, 0.5);
    
    position: relative;
    left: calc(76vw - 644px);

    z-index: 3;

  }

  .share-wrapper-p {
    width: 56px;
    font-size: 14px;
  }

  .social-icons-wrapper {
    width: calc(100% - 57px);
    height: 100%;
    padding-left: 2vw;
    display: flex;
    gap: 16px;
  }

  /* .social-icons {
    scale: 2;
  }

   */

  #forward-arrow-wrapper2 {
    display: none;
  }

  .float-wedge {
    display: flex;
    position: relative;
    left: 104px;
    top: -2px;
    z-index: 3;
  }



}