// ==============================================
// 💪 MEMBER PROFILE SCSS
// ==============================================

.sec-member-profile{
  padding: 180px 0 100px;
  @media screen and (max-width: $screen-xs) {
    padding: 120px 0 8px;
  }
  .profile-card{
    max-width: 850px;
    .profile-header{
      .name-wrapper{
        display: grid;
        grid-template-columns: 240px 1fr;
        align-items: center;
        column-gap: 48px;
        @media screen and (max-width: $screen-xs) {
          grid-template-columns: 1fr;
          row-gap: 32px;
        }
        .member-img{
          @media screen and (max-width: $screen-xs) {
            text-align: center;
          }
          img{
            width: 240px;
            height: 240px;
            border-radius: 50%;
            object-fit: cover;
            object-position: top;
          }
        }
        .member-content{
          @media screen and (max-width: $screen-xs) {
            text-align: center;
          }
        }
      }
    }
    .profile-body{
      max-width: 850px;
    }
  }
  .feature-wrapper{
    max-width: 850px;
    .features-list-card-01{
      padding: 32px;
      @media screen and (max-width: $screen-xs) {
        margin-bottom: 32px;
      }
    }
  }
}

.sec-breadcrumb{
  .container{
    padding: 0;
  }
}
