.article-grid-item {
  position: relative;
  width: calc(33.333% - 20px);
  height: 37.5vw;
  display: inline-block;
  margin: 0 10px;
  margin-top: 20px;
  border: 1px solid #efefef;
  box-sizing: border-box;
  transition: box-shadow 0.3s;
  background: #ffffff;
}
.article-grid-item:nth-child(1), .article-grid-item:nth-child(2), .article-grid-item:nth-child(3) {
  margin-top: 0;
}
.article-grid-item:hover {
  box-shadow: 0 2px 19px 0 rgba(54, 58, 59, 0.16);
}

.article-grid-image {
  display: block;
  width: 100%;
  height: 46%;
  overflow: hidden;
}
.article-grid-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.article-grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-grid-content {
  padding: 40px;
  height: calc(54% - 80px);
  background-color: #ffffff;
}

.article-grid-content-inner {
  position: relative;
}

.article-grid-title {
  font-size: 1.125em;
  line-height: 1.5;
  font-weight: 600;
  color: #242827;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.article-grid-title a {
  color: #242827;
  transition: none;
}
.article-grid-title a:hover {
  color: #242827;
}

.article-grid-summary {
  position: absolute;
  top: 65px;
  font-size: 0.875em;
  color: #443d41;
  line-height: 1.8;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.article-grid-date {
  opacity: 0.39;
  font-size: 0.875em;
  color: #242827;
  display: flex;
  position: absolute;
  top: 220px;
}

.article-grid-more {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 84px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0a3dad;
  opacity: 0;
  transition: opacity 0.3s;
}
.article-grid-more i {
  color: #ffffff;
  font-size: 18px;
  transform: scale(1.3) translateX(-2px);
}

.article-grid-item:hover .article-grid-more {
  opacity: 1;
}

@media (max-width: 1680px) {
  .article-grid-content {
    padding: 20px;
    height: calc(54% - 40px);
  }
}
@media (max-width: 1240px) {
  .article-grid-item {
    box-shadow: 0 2px 10px 0 rgba(54, 58, 59, 0.16);
    height: 34.375vw;
  }
  .article-grid-content {
    padding: 20px;
  }
  .article-grid-title {
    -webkit-line-clamp: 1;
  }
  .article-grid-summary {
    top: 33px;
  }
  .article-grid-date {
    top: 156px;
  }
  .article-grid-more {
    width: 54px;
    height: 36px;
    opacity: 1;
  }
  .article-grid-more i {
    transform: scale(1.1) translateX(-2px);
  }
}
@media (max-width: 990px) {
  .article-grid-item {
    width: calc(50% - 20px);
    margin: 10px !important;
    height: 513px;
  }
  .article-grid-item:nth-child(1),
  .article-grid-item:nth-child(2) {
    margin-top: 10px;
  }
  .article-grid-title {
    font-size: 1em;
    -webkit-line-clamp: 2;
  }
  .article-grid-summary {
    top: 54px;
    -webkit-line-clamp: 4;
  }
  .article-grid-date {
    top: 181px;
  }
}
@media (max-width: 680px) {
  .article-grid-item {
    width: calc(100% - 20px);
    height: auto;
    min-height: 480px;
  }
  .article-grid-date {
    position: static;
    margin-top: 10px;
  }
  .article-grid-summary {
    position: static;
    margin-top: 10px;
  }
  .article-grid-content {
    height: auto;
    padding: 15px;
  }
  .article-grid-image {
    height: 200px;
  }
}
.article-detail-container {
  background: #ffffff;
}

.article-detail-heading h1 {
  font-size: 1.6875em;
  line-height: 40px;
  color: #333333;
  font-weight: bold;
  margin: 0;
}

.article-detail-meta {
  font-size: 0.875em;
  color: #333333;
  line-height: 1.8;
  margin: 10px 0;
}

.article-detail-inquire {
  margin: 10px 0;
}

.article-detail-inquiry-btn {
  display: inline-block;
  width: 180px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: #0a3dad;
  color: #ffffff;
  border: 0;
  border-radius: 3px;
  font-size: 0.875em;
  transition: all 0.3s ease;
}
.article-detail-inquiry-btn i {
  margin-right: 4px;
}
.article-detail-inquiry-btn:hover {
  background: #0947cf;
  color: #ffffff;
}

.article-detail-share {
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.article-detail-share .share-btn {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
  box-sizing: border-box;
}
.article-detail-share .share-btn i {
  color: #fff;
  font-size: 16px;
}
.article-detail-share .share-btn:hover {
  opacity: 0.8;
}
.article-detail-share .share-btn[data-network=facebook] {
  background-color: #4267b2;
}
.article-detail-share .share-btn[data-network=twitter] {
  background-color: #000;
}
.article-detail-share .share-btn[data-network=linkedin] {
  background-color: #0077b5;
}
.article-detail-share .share-btn[data-network=pinterest] {
  background-color: #cb2027;
}
.article-detail-share .share-btn[data-network=whatsapp] {
  background-color: #25d366;
}
.article-detail-share .share-btn[data-network=wechat] {
  background-color: #4ec034;
}
.article-detail-share .share-btn[data-network=snapchat] {
  background-color: #fffc00;
}
.article-detail-share .share-btn[data-network=snapchat] i {
  color: #000;
}

.article-detail-body {
  font-size: 1em;
  line-height: 1.8;
  color: #333333;
  margin: 20px 0;
}

.article-detail-pager {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 20px 0;
  margin: 20px 0 0;
  border-top: 1px solid #efefef;
}
.article-detail-pager li {
  max-width: 48%;
}
.article-detail-pager li a {
  font-size: 0.875em;
  color: #333333;
  line-height: 1.6;
}
.article-detail-pager li a span {
  color: #0a3dad;
}
.article-detail-pager li a:hover span {
  text-decoration: underline;
}
.article-detail-pager .pager-next {
  text-align: right;
}

.related-articles-container {
  background: #ffffff;
}

.related-articles-heading h2 {
  font-family: "Montserrat", "Poppins", Arial, Helvetica, sans-serif;
  font-size: 1.75em;
  color: #060d1a;
  font-weight: 700;
  margin: 0 0 30px;
}

.related-articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.related-article-item {
  flex: 1;
  min-width: 200px;
}
.related-article-item .related-article-image {
  display: block;
  width: 100%;
  overflow: hidden;
}
.related-article-item .related-article-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}
.related-article-item .related-article-image:hover img {
  transform: scale(1.05);
}
.related-article-item .related-article-title {
  margin: 15px 0 0;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5;
}
.related-article-item .related-article-title a {
  color: #333333;
  transition: all 0.3s ease;
}
.related-article-item .related-article-title a:hover {
  color: #0a3dad;
}

/*# sourceMappingURL=news.css.map */
