.newsInner {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
}

@media screen and (max-width: 1080px) {
  .newsInner {
    flex-direction: column;
    padding-top: 40px;
  }
}

/* Main */
.newsMain {
  width: min(100%, 800px);
}

@media screen and (max-width: 1080px) {
  .newsMain {
    width: 100%;
  }
}

.newsSection__instagram {
  margin-top: 80px;
}

@media screen and (max-width: 1080px) {
  .newsSection__instagram {
    margin-top: 40px;
  }
}

.newsList {
  column-gap: 20px;
  display: grid;
  grid-template-columns: 50% 50%;
  padding-bottom: 80px;
  row-gap: 40px;
  width: min(100%, 800px);
}

@media screen and (max-width: 1080px) {
  .newsList {
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    padding-bottom: 40px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .newsList {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 480px) {
  .newsList {
    grid-template-columns: 1fr;
  }
}

.newsList__item {
  width: min(100%, 390px);
}

@media screen and (max-width: 576px) {
  .newsList__item {
    width: 100%;
  }
}

@media (any-hover: hover) {
  .newsList__item:hover .newsTitle,
  .newsList__item:hover .news__date,
  .newsList__item:hover .news__category {
    color: var(--c-primary);
    transition: color .2s;
  }
}

.newsThumbnail img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: min(100%, 390px);
}

@media screen and (max-width: 576px) {
  .newsThumbnail img {
    width: 100%;
  }
}

.newsMeta {
  column-gap: 10px;
  display: flex;
  padding-block: 24px 10px;
}

.news__date {
  color: var(--c-black);
  font-family: var(--font-montserrat);
  font-size: 12px;
  font-weight: 700;
}

.news__category::before {
  background: var(--c-border-gray);
  content: "";
  display: inline-block;
  height: 12px;
  margin-right: 10px;
  width: 1px;
}

.news__category {
  color: var(--c-black);
  font-size: 12px;
}

.newsTitle {
  -webkit-box-orient: vertical;
  color: var(--c-black);
  display: -webkit-box;
  font-size: 14px;
  font-weight: 400;
  -webkit-line-clamp: 2;
  line-height: 1.8;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.news__instagramButton {
  column-gap: 10px;
  display: flex;
  font-weight: 600;
  justify-content: center;
  row-gap: 20px;
}

@media screen and (max-width: 576px) {
  .news__instagramButton {
    flex-direction: column;
  }

  .news__instagramButton a {
    width: 100%;
  }
}

/* Instagram */
.fa-instagram {
  display: none !important;
}

.news__instagramPost {
  padding: 28px 85px 0;
}

#sb_instagram .sbi_follow_btn a {
  border-radius: 100px !important;
  justify-self: center !important;
  padding: 0 !important;
  width: fit-content !important;
}

#sb_instagram .sbi_follow_btn a:hover,
#sb_instagram .sbi_follow_btn a:focus {
  box-shadow: var(--c-primary) !important;
}

#sb_instagram .sbi_follow_btn a span {
  align-items: center !important;
  background: var(--c-primary) !important;
  border-radius: 100px !important;
  color: var(--c-white) !important;
  column-gap: 10px !important;
  display: inline-grid !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  grid-template-columns: 1fr auto 1fr !important;
  justify-items: center !important;
  min-height: 40px !important;
  padding: 6px 16px 6px 0 !important;
  width: 235px !important;
}

#sb_instagram .sbi_follow_btn span::after {
  content: url("../images/common/icon-buttonPrimary.svg") !important;
  height: 23px !important;
  justify-self: flex-end !important;
  width: 20px !important;
}

#sb_instagram .sbi_follow_btn span::before {
  content: "" !important;
}

#sb_instagram .sb_instagram_header,
.sb_instagram_header {
  display: none;
}


#sb_instagram .sbi_btn_text::after {
  content: url(../images/common/icon-buttonMore.svg) !important;
  height: 23px !important;
  justify-self: flex-end !important;
  width: 20px !important;
}

#sb_instagram #sbi_load .sbi_load_btn {
  background-color: #fff!important;
  border: 1px solid #1b2f9a!important;
  border-radius: 30px!important;
  color: #1b2f9a!important;
  font-size: 16px!important;
  font-weight: 600!important;
  height: 40px!important;
  padding: 6px 16px 6px 32px!important;
  width: 190px!important;
}

#sb_instagram .sbi_load_btn .sbi_btn_text,
#sb_instagram .sbi_load_btn .sbi_loader {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

#sb_instagram #sbi_load {
  padding-top: 28px;
}

#sb_instagram #sbi_load .sbi_loader {
  background: transparent !important;
}

@media screen and (max-width: 643px) {
  .news__instagramPost {
    padding: 18px 0 0;
  }

  #sb_instagram #sbi_load {
    display: grid;
    gap: 10px;
  }

  #sb_instagram #sbi_load .sbi_load_btn {
    padding: 6px 42px 6px 48px!important;
    width: 235px!important;
  }
}
