.newsRoom{
    margin-top: 40px;
}
.newsList{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 20px;
}
.newsList__item{
    border: 1px #d8d8d8 solid;
    border-radius: 16px;
    overflow: hidden;
}
.newsList__itemImg{
    height: 255px;
    width: 100%;
    object-fit: cover;
}
.newsList--contentWrapper{
    padding: 28px 30px;
}
.newsList--contentWrapper h5{
    font-size: 26px;
    line-height: 36px;
    font-weight: var(--black);
    color: var(--cyandark);
    margin-bottom: 5px;
}

.partnerContent{
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  .partnerContent__row{
    border: 1px #d8d8d8 solid;
    border-radius: 16px;
    overflow: hidden;
  }
  .partnerContent__rowHdr{
    border-bottom: 1px #d8d8d8 solid;
    padding: 24px 30px;
  }
  .partnerContent__rowHdr h4{
    font-size: 26px;
    line-height: 36px;
    font-weight: var(--black);
    color: var(--cyandark);
  }
  .partnerContent__rowBody{
    padding: 30px;
    display: flex;
  }
  .partnerContent__rowBody--lft{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .partnerContent__rowBody--rht{
    width: 400px;
    flex-shrink: 0;
    margin-left: 40px;
  }
  .partnerContent__rowBody--rht > img{
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 16px;
  }
  
/* Responsive */
@media (min-width: 320px) and (max-width: 767px) {
    .newsRoom{
        margin-top: 20px;
    }
    .newsList{
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .newsList__itemImg{
        height: 200px;
    }
    .newsList--contentWrapper{
        padding: 16px;
    }
    .newsList--contentWrapper h5{
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 5px;
    }
}
@media (min-width: 768px) and (max-width: 1199px) {
    .newsList--contentWrapper h5{
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 10px;
    }
}
@media (min-width: 1200px) and (max-width: 1399px) {
}
