/* SCSS file content */
.insightlistWrapper h2{
	font-size:26px;
	color:#000;
	margin:15px 0;
}
.insightlistWrapper .date{
	font-size:14px;
	color:#000;
}

.insightlistWrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  row-gap: 40px;
}
@media screen and (min-width: 576px) {
  .insightlistWrapper {
    -ms-grid-columns: 1fr 60px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    row-gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .insightlistWrapper {
    -ms-grid-columns: 1fr 108px 1fr 108px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
    row-gap: 40px;
  }
}

.insightlist-content-wrapper p {
  line-height: 1.5;
  color: #001B3B;
  letter-spacing: 0.2px;
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: clip;
  -webkit-line-clamp: 2;
  font-weight: 500;
}
.insightlist-content-wrapper .insightlist-banner-img {
  width: 100%;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .insightlist-content-wrapper .insightlist-banner-img {
    margin-bottom: 20px;
  }
}
.insightlist-content-wrapper .insightlist-banner-img figure {
  padding-top: calc(221 / 381 * 100%);
  position: relative;
  overflow: hidden;
}
.insightlist-content-wrapper .insightlist-banner-img figure img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
}
.insightlist-content-wrapper .insightlist-banner-img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 1370px) {
  .insightlist-content-wrapper:hover .insightlist-banner-img figure img {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  .insightlist-content-wrapper:hover p {
    color: #085F8B;
  }
}

.custom-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.custom-pagination .pageslist span, .custom-pagination .pageslist a {
  color: #898989;
  margin: 0 5px;
  padding: 3px 6px;
}
@media screen and (min-width: 1370px) {
  .custom-pagination .pageslist span:hover, .custom-pagination .pageslist a:hover {
    color: #001B3B;
  }
}
.custom-pagination .pageslist span.current, .custom-pagination .pageslist a.current {
  color: #001B3B;
  border-bottom: 1px solid #001B3B;
}
.custom-pagination .prev, .custom-pagination .next {
  width: 20px;
  height: 10px;
  position: relative;
  -webkit-filter: brightness(0) saturate(100%) invert(8%) sepia(30%) saturate(4612%) hue-rotate(196deg) brightness(103%) contrast(103%);
          filter: brightness(0) saturate(100%) invert(8%) sepia(30%) saturate(4612%) hue-rotate(196deg) brightness(103%) contrast(103%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media screen and (max-width: 767.98px) {
  .custom-pagination .prev, .custom-pagination .next {
    width: 10px;
  }
}
.custom-pagination .prev:after, .custom-pagination .next:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.118' height='9.529' viewBox='0 0 6.118 9.529'%3E%3Cpath id='Path_76503' data-name='Path 76503' d='M3346.49-18996.158l-5.02,4.168,5.02,4.607' transform='translate(-3340.71 18996.543)' fill='none' stroke='%23afaeae' stroke-width='1'/%3E%3C/svg%3E%0A");
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
}
.custom-pagination .prev.disabled, .custom-pagination .next.disabled {
  -webkit-filter: none;
          filter: none;
}
.custom-pagination .next:after {
  left: auto;
  right: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}