.social-media-updates h3 {
  font-size: 16px;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .social-media-updates h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.related-news-container {
  width: 100%;
  background: #FFFFFF;
  box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 16px;
  border-bottom: 1px solid #E3E6F0;
}
@media (min-width: 992px) {
  .related-news-container {
    border: 1px solid #E3E6F0;
    max-height: 476px;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .related-news-container::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
  }
  .related-news-container::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background-color: rgba(100, 111, 121, 0.57);
  }
}
.related-news-container .news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  transition: all 1.5s ease;
  padding: 15px;
}
.related-news-container .news-item:not(:first-child) {
  border-top: 1px solid #E2E6F0;
}
.related-news-container .news-item:hover {
  background: #f8f9fa;
}
.related-news-container .news-item .content {
  font-size: 14px;
  line-height: 16px;
  color: #212529;
  margin-right: 10px;
  width: 100%;
  word-break: break-word;
}
.related-news-container .news-item .content .meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.related-news-container .news-item .content .meta .site_name {
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.related-news-container .news-item .content .meta .published_time {
  font-size: 10px;
  line-height: 12px;
  color: #495057;
  white-space: nowrap;
}
.related-news-container .news-item .content .meta .favico {
  max-width: 20px;
  max-height: 20px;
  margin-right: 10px;
}
.related-news-container .news-item .content .title {
  font-weight: bold;
  color: #1CA766;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}
.related-news-container .news-item .content .description {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.related-news-container .news-item .image {
  width: 102px;
  height: 80px;
  overflow: hidden;
  background: #E2E6F0;
}
@media (min-width: 992px) {
  .related-news-container .news-item .image {
    width: 123px;
    height: 91px;
  }
}
.related-news-container .news-item .image img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}
.related-news-container .news-item .image img.pdf {
  width: 50px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.missing-article {
  font-size: 14px;
}