.post-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
list-style: none;
padding:0;
}
.post-cards li:first-child {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 4;
padding-left:0;
}
.post-cards li {
    width: 100% !important;
padding:15px;
}
.post-cards li:not(:first-child) > .post-grid {
    display: flex;
    flex-direction: row-reverse !important;
    gap: 20px;
}
.post-grid-box{flex: 0 0 216px;}
.post-grid-box img{border-radius:5px;}
.post-grid-cnt p{display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
margin-bottom:3px!important;
}
.post-grid-cnt h4{margin-top:0;margin-bottom:8px;}
.post-grid-cnt p:last-child {
    margin-bottom: 0;
}
.post-grid-cnt p:empty {
    margin-bottom: 0;
}
.post-grid-box img{
aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
margin-bottom:20px;
}

/* team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(195px, 1fr));
  gap: 35px 20px;
  justify-content: center;
  padding: 40px 0px;
}

.team-member {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 410px;
  width: 100%;
}

.team-member img {
  width: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex:1;
aspect-ratio:1/1;
}

.team-member .info {
  text-align: left;
    flex: 3.4;
}

.team-grid .team-member h3 {
  color: #133d8d;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 13px;
  margin-top: 0px;
  line-height: 1.2;
}

.team-grid .team-member .company {
  color: #000;
  font-size: 14px;
  margin: 0;
  line-height: 1.1;
}
.team-member.sp_modal-toggle:hover h3 {
    text-decoration: underline;
}
.team-grid .team-member .location-one {
  color: #949598;
  font-weight: 400;
  font-size: 14px;
    line-height: 18px;
    padding-top: 4px;
border-bottom: 3px solid #f2f3f5;
    padding-bottom: 15px;
    max-width: 85%;
}

.team-member .underline {
display:none;
  width: 100%;
  height: 2px;
  background-color: #e0dede;
  margin-top: 10px;
}
p.organization {
    color: #4180be;
    line-height: 1.2;
    padding-top: 5px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 0!important;
}
.team-member.leadership .organization {
    color: #000;
    font-size: 14px;
    margin: 0;
    line-height: 1.1;
    font-weight: normal;
    text-transform: unset;
}
.team-member.leadership .company {
    color: #4180be;
    line-height: 1.2;
    padding-top: 0px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 0 !important;
}
.leadership-popup .organization {
        color: var(--awb-text-color) !important;
    font-size: 14px !important;
    margin: 0;
    line-height: 1.1 !important;
    font-weight: normal !important;
    text-transform: unset !important;
    margin-top: 6px;
}
.leadership-popup .company {
    color: #4180be;
    line-height: 1.2;
    padding-top: 0px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 0 !important;
}

/* modal starts */
.modal_sec .sp_modal {
  position: fixed;
  z-index: 99999; /* 1 */
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  display: unset;
}
.modal_sec .sp_modal-body {
  position: relative;
  padding: 20px;
  width: 100%;
}
.sp_modal-body.sp_modal-body-2 {
  border-bottom: 0;
  border-top: 1px solid #e8e8e8;
}

.modal_sec .sp_modal.is-visible {
  visibility: visible;
}

.modal_sec .sp_modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal_sec .sp_modal.is-visible .sp_modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.modal_sec .sp_modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}

.modal_sec .sp_modal.is-visible .sp_modal-transition {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.modal_sec .sp_modal-header,
.sp_modal-content {
  padding: 1em;
}

.modal_sec .sp_modal-header {
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid #e8e8e8;
  background-color: #143c8d;
  padding: 12px 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.modal_sec .sp_modal-heading {
  font-size: 15px !important;
  color: #fff !important;
  font-weight: 500 !important;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
text-transform:capitalize!important;
}

.modal_sec .sp_modal-content > *:first-child {
  margin-top: 0;
}

.modal_sec .sp_modal-content > *:last-child {
  margin-bottom: 0;
}
.modal-header,
.sp_modal-content {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.modal_sec .sp_modal-close {
  background-color: transparent;
  border: none;
  padding: 10px;
  border-radius: 0;
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 36px;
}

.modal_sec .sp_close-icon {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal_sec .sp_close-icon svg {
  width: 13px;
  height: 13px;
}
.modal_sec .sp_modal-wrapper {
  position: absolute;
  z-index: 9999;
  top: 50%;
  left: 50%;
  max-width: 700px;
  margin: auto;
  display: block;
  transform: translate(-50%, -60%);
  width: calc(100% - 30px);
}
.modal_sec .sp_modal-content {
  font-size: 16px;
  line-height: 1.6;
}
.modal_sec .speaker-bio p {
  margin-bottom: 12px;
}
.modal_sec .sp_media-body h4 {
  font-size: 18px !important;
  width: auto !important;
  border: 0 !important;
  margin-bottom: 8px !important;
  margin-top: 0;
font-weight:600;
}
.modal_sec .sp_media-body img {
  float: left;
  margin-right: 15px;
  margin-bottom: 10px;
}
#second-popup {
  display: none;
}
.modal_sec.modal_sec2 .sp_modal-wrapper {
  max-width: 500px;
}
.sp_modal-content ul {
  margin-left: 15px;
  list-style: disc;
}
.sp_modal-content ul li {
  margin-bottom: 5px;
}
.sp_modal-content p {
  margin-top: 0;
}
.sp_modal-content p:empty {
  display: none;
}
.sp_modal-content br {
  display: none;
}
.sp_modal-content p:last-of-type {
  margin-bottom: 0;
}
body.no-scroll {
  overflow: hidden;
}
.sp_modal-content p:last-child {
  margin-bottom: 0;
}
.sp_modal_cnt_box {
  overflow: auto;
  background-color: #fff;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -1px;
  max-height: 50vh;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.modal_close_btn {
  display: inline-block;
  font-weight: 400;
  color: #fff;
  vertical-align: middle;
  user-select: none;
  font-size: 14px;
  border-radius: 0.358rem;
  border: 0;
  cursor: pointer;
  line-height: 1;
  padding: 0.786rem 1.5rem;
  background-color: #ea5455;
}
.sp_modal-footer {
  padding: 0.8rem 1.4rem;
  border-top: 1px solid #e8e8e8;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
  width: 100%;
}
.sp_modal-toggle {
    cursor: pointer;
}
.sp_modal-body .company{margin-bottom: 5px;font-size:14px;}
.sp_modal-body .location-one{color: #949598;font-size: 14px;}
.sp_modal-body p.organization {
    color: #4180be;
    line-height: 1.2;
    padding-top: 0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 7px !important;
}
span.speaker-bio {
    display: block;
    padding-top: 5px;
}
/* modal ends */
.team-member .info a:hover h3 {
    color: #4180be;
}

@media (max-width: 1024px) {
    .post-cards li:first-child > .post-grid {
        display: flex;
        flex-direction: row-reverse !important;
        gap: 20px;
    }
.post-cards {
    grid-template-columns: repeat(1, 1fr);
}
.post-cards li{padding-left:0;padding-right:0;}

/* team section */
.team-grid {
    grid-template-columns: repeat(2, minmax(270px, 1fr));
    gap: 25px;
    justify-content: center;
  }

}


@media (max-width: 768px) {

.post-cards li > .post-grid{
flex-direction: column !important;
        gap: 5px !important;
}
.post-cards li:first-child > .post-grid{flex-direction: column !important;}
.post-cards li:not(:first-child) > .post-grid{flex-direction: column !important;}
.post-grid-box {
    flex: 0;
}

/* team section */
 .team-grid {
    grid-template-columns: 1fr;
    padding: 20px;
    justify-items: center;
  }

  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team-member .info {
    text-align: center;
  }

  .team-member .underline {
    margin: 10px auto 0;
    width: 80%;
  }
  .team-member img {
    width:125px;
    height:125px;
  }

/* modal section */
.modal_sec.model_sec_2 .sp_modal-heading {
    font-size: 22px !important;
  }

}

/* modal section*/
@media (max-width: 576px) {
  .modal_sec .sp_media-body img {
    float: none;
  }
}