/**
 * @package     Wordpress.Site
 * @subpackage  Templates.NoName
 *
 * @copyright   Copyright (C) 2020 NoName. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */
/**
 * @package     Wordpress.Site
 * @subpackage  Templates.NoName
 *
 * @copyright   Copyright (C) 2020 NoName. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */
/**
 * @package     Wordpress.Site
 * @subpackage  Templates.NoName
 *
 * @copyright   Copyright (C) 2020 NoName. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */
.insight-hero {
  overflow: visible;
}
.insight-hero__overlay {
  background: linear-gradient(90deg, rgba(0, 60, 118, 0.92) 0%, rgba(0, 60, 118, 0.45) 100%);
}
.insight-hero__search {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.insight-hero__tabs-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transform: translateY(50%);
}

.insight-featured-section {
  background-color: #ffffff;
  padding: 60px 0;
}
.insight-featured-section__title {
  font-size: 36px;
  font-weight: 700;
  color: #003c76;
  margin-bottom: 24px;
}
.insight-featured-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.featured-big-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 424px;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(120deg, #003c76 0%, #12559d 100%);
}
.featured-big-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-big-card__image--placeholder {
  background: linear-gradient(120deg, #0c3d77 0%, #1e6ab3 100%);
}
.featured-big-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 60, 118, 0.92) 0%, rgba(0, 60, 118, 0.6) 50%, rgba(0, 60, 118, 0.1) 100%);
  border-radius: 16px;
}
.featured-big-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  height: 100%;
  padding: 32px;
}
.featured-big-card__copy {
  max-width: 305px;
}
.featured-big-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  margin-bottom: 8px;
  color: #ffffff;
  background-color: #0093a8;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
}
.featured-big-card__heading {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.featured-big-card__excerpt {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
}
.featured-big-card__footer {
  margin-top: auto;
}
.featured-big-card__link {
  gap: 4px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}
.featured-big-card__link:hover {
  color: #ffffff;
}
.featured-big-card__link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  line-height: 1;
  font-size: 24px;
}

.featured-small-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  height: 100%;
}

.featured-small-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 204px;
  padding: 16px;
  background-color: #edf1f8;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.featured-small-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}
.featured-small-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.featured-small-card__badge {
  display: inline-block;
  align-self: flex-start;
  color: #0093a8;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.featured-small-card__heading {
  margin: 0;
  color: #003c76;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}
.featured-small-card__date {
  margin: 0;
  color: #444444;
  font-size: 14px;
  line-height: 20px;
}
.featured-small-card__footer {
  margin-top: 12px;
}
.featured-small-card__link {
  gap: 4px;
  color: #0093a8;
  font-size: 16px;
  font-weight: 700;
}
.featured-small-card__link:hover {
  color: #0093a8;
}
.featured-small-card__link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  line-height: 1;
  font-size: 24px;
}

@media (max-width: 1399.98px) {
  .insight-featured-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 991.98px) {
  .insight-featured-section__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 767.98px) {
  .featured-small-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .featured-big-card {
    min-height: 360px;
  }
  .featured-big-card__content {
    padding: 24px;
  }
  .featured-big-card__copy {
    max-width: 100%;
  }
}
.li-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.li-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 0;
  border-bottom: 1px solid #e9eaeb;
}
.li-section__title {
  font-size: 36px;
  font-weight: 700;
  color: #003c76;
  margin: 0;
  padding-bottom: 16px;
}
.li-section__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.li-tabs {
  display: flex;
  align-items: center;
  gap: 0;
}

.li-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 700;
  color: #222222;
  cursor: pointer;
  transform: translateY(1px);
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.li-tab:hover {
  color: #003c76;
}
.li-tab.is-active, .li-tab.active {
  color: #003c76;
  border-bottom-color: #003c76;
}

.li-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .li-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .li-grid {
    grid-template-columns: 1fr;
  }
}

.li-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #eaecf0;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 4px rgba(10, 13, 18, 0.05);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.li-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 13, 18, 0.1);
}
.li-card:hover .li-card__img {
  transform: scale(1.04);
}
.li-card:hover .li-card__arrow {
  transform: translateX(4px);
}
.li-card__image {
  height: 177px;
  overflow: hidden;
  flex-shrink: 0;
}
.li-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.li-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #003c76 0%, #0093a8 100%);
}
.li-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 8px;
}
.li-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #003c76;
  line-height: 1.35;
  margin: 0;
  flex: 1;
}
.li-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}
.li-card__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #222222;
}
.li-card__date i {
  color: #222222;
  font-size: 16px;
}
.li-card__arrow {
  font-size: 20px;
  color: #0093a8;
  transition: transform 0.2s ease;
}

.li-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 400;
  color: #0093a8;
  background-color: #f0fdff;
  border-radius: 4px;
  padding: 4px 10px;
  line-height: 20px;
  white-space: nowrap;
}

.li-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  background-color: #f8f9fc;
  border: 1px solid #0093a8;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #0093a8;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.li-view-all:hover {
  background-color: rgb(237.29, 239.82, 247.41);
  color: #0093a8;
}

.ilr-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.ilr-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e9eaeb;
}
.ilr-section__title {
  font-size: 36px;
  font-weight: 700;
  color: #003c76;
  margin: 0;
  padding-bottom: 4px;
}
.ilr-section__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.ilr-tabs {
  display: flex;
  align-items: center;
}

.ilr-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 700;
  color: #667085;
  cursor: pointer;
  transform: translateY(1px);
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.ilr-tab:hover {
  color: #003c76;
}
.ilr-tab.is-active, .ilr-tab.active {
  color: #003c76;
  border-bottom-color: #003c76;
}

.ilr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 991px) {
  .ilr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .ilr-grid {
    grid-template-columns: 1fr;
  }
}

.ilr-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: #ffffff;
  border: 1px solid #eaecf0;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(10, 13, 18, 0.06);
  transition: box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}
.ilr-card:hover {
  border-color: #b2d4e8;
  box-shadow: 0 4px 16px rgba(10, 13, 18, 0.1);
}
.ilr-card__icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  color: #003c76;
}
.ilr-card__icon {
  display: block;
}
.ilr-card__ext {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #003c76;
  border-radius: 3px;
  padding: 2px 5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.ilr-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.ilr-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #003c76;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ilr-card__meta {
  font-size: 14px;
  font-weight: 400;
  color: #667085;
  white-space: nowrap;
}

.ilr-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  background-color: #f8f9fc;
  border: 1px solid #0093a8;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #0093a8;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.ilr-view-all:hover {
  background-color: rgb(237.29, 239.82, 247.41);
  color: #0093a8;
}

.insight-experts {
  background-color: #f8f9fc;
}
.insight-experts__button {
  min-height: 40px;
  padding: 0 8px;
  gap: 4px;
  color: #0093a8;
  background-color: #f8f9fc;
  border: 1px solid #0093a8;
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.insight-experts__button:hover {
  color: #ffffff;
  background-color: #0093a8;
  border-color: #0093a8;
}
.insight-experts__button i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  line-height: 1;
  font-size: 18px;
}
.insight-experts__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.insight-expert-card {
  display: flex;
  flex-direction: column;
  gap: 23px;
  height: 100%;
  padding: 16px;
  background-color: #ffffff;
  border: 1px solid #eaecf0;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.insight-expert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}
.insight-expert-card__img {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 207/195.8;
  background-color: #dce4eb;
}
.insight-expert-card__img img {
  transition: transform 0.5s ease;
}
.insight-expert-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #003c76;
  font-size: 56px;
  line-height: 1;
}
.insight-expert-card__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex: 1;
}
.insight-expert-card__content {
  flex: 1;
  min-width: 0;
}
.insight-expert-card__name {
  color: #003c76;
}
.insight-expert-card__position {
  margin-top: 8px;
  color: #667085;
  line-height: 20px;
}
.insight-expert-card__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #003c76;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.25s ease, transform 0.25s ease;
}
.insight-expert-card__social:hover {
  color: #0093a8;
  transform: translateY(-2px);
}
.insight-expert-card__social--placeholder {
  opacity: 0.25;
  pointer-events: none;
}
.insight-expert-card__social i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  line-height: 1;
  font-size: 24px;
}

@media (max-width: 1199.98px) {
  .insight-experts__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991.98px) {
  .insight-experts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .insight-experts__button {
    width: 100%;
  }
  .insight-experts__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.group-hover .group-hover-translate {
  transition: transform 0.3s ease;
}
.group-hover .group-hover-scale {
  transition: transform 0.5s ease;
}
.group-hover:hover .group-hover-translate {
  transform: translateX(6px);
}
.group-hover:hover .group-hover-scale {
  transform: scale(1.05);
}

.insight-page-wrapper {
  background-color: #ffffff;
}

/*# sourceMappingURL=template.insight.css.map*/