.pg-team-profile-details{
  display: flex;
  gap: 60px; /* Adjust the gap between the columns */   
    justify-content: space-between;
    flex-direction: row;
}
.pg-profile-col30{
  flex: 1 1 30%; /* Fixed width of 30% */
 {# max-width: 493px;
    width: 100%;#}
  background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.pg-profile-col70{
  flex: 1 1 70%; /* Fixed width of 70% */
}
.pg-profile-img-wrapper{
    
    overflow: hidden;
}
.pg-profile-img-wrapper img{
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}
.pg-profile-col70{
    background-color: #243247;
    border-radius: 16px;
    padding: 60px;
}
.pg-profile-top h1{
    margin-bottom: 0px;
}
.pg-profile-top{
    margin-bottom: 40px;
    border-bottom: 2px solid #DFDDE0;
    padding-bottom: 40px; 
    display: flex;
    justify-content: space-between;
}
.team-profile-details{
    margin-bottom: 60px;
}
@media only screen and (max-width: 1280px) {
     .pg-profile-col30{
      flex: 1 1 35%; /* Fixed width of 30% */
    }

    .pg-profile-col70{
      flex: 1 1 65%; /* Fixed width of 70% */
    }
    .pg-team-profile-details{
        gap: 20px;
    }
}
@media only screen and (max-width: 1024px) {
    .pg-profile-col30{
      flex: 1 1 50%; /* Fixed width of 30% */
    }

    .pg-profile-col70{
      flex: 1 1 50%; /* Fixed width of 70% */
    }
   .pg-team-profile-details {
          gap: 30px;
  }  
}
@media only screen and (max-width: 768px) {
    .member-social-links ul{
        justify-content: flex-start;
    }
    .pg-profile-top{
        flex-direction: column;
    }
    .profile-social-links{
        margin-top: 30px;
    }
    .pg-profile-img-wrapper img{
        max-width: 600px;
/*         margin: 0px auto; */
       
    }
    .pg-profile-img-wrapper{
        min-height: 500px;
        
    }
      .pg-team-profile-details {
    flex-direction: column; /* Stack columns vertically */
  }
    .pg-profile-col30,
    .pg-profile-col70{
      flex: 0 0 100%; /* Fixed width of 70% */
    }
    .pg-profile-col70{
        padding: 40px 20px;
    }
}
@media only screen and (max-width: 480px) {
    .pg-profile-col30{
        background-position: top;
    }
     .pg-profile-img-wrapper{
        min-height: 400px;
    }
}
@media only screen and (max-width: 375px) {
     .pg-profile-img-wrapper{
        min-height: 350px;
    }
    .team-profiles-link .pg-btn{
            font-size: 12px;
    }
}