/* =========================================================
   INSIGHTS
========================================================= */

.insights-page {
  background: #f8fafc;
  color: #1a2b49;
}


/* =========================================================
   HERO
========================================================= */

.insights-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #eef3f8;
}

.insights-hero-bg {
  position: absolute;
  inset: 0;

  background-image: url("../hero/image-insight-hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0.76;
}

.insights-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(248, 250, 252, 0.96) 0%,
      rgba(248, 250, 252, 0.88) 35%,
      rgba(248, 250, 252, 0.46) 64%,
      rgba(248, 250, 252, 0.16) 100%
    );
}

.insights-hero-content {
  position: relative;
  z-index: 2;

  padding-top: 55px;
  padding-bottom: 65px;
}

.insights-hero-label,
.insights-label {
  display: inline-block;

  margin-bottom: 17px;

  font-size: 11px;
  line-height: 1.2;

  font-weight: 700;
  letter-spacing: 1.8px;

  color: #2b6cb0;
}

.insights-hero h1 {
  max-width: 780px;

  margin: 0;

  font-size: 48px;
  line-height: 1.12;
  font-weight: 700;

  letter-spacing: -1px;

  color: #1a2b49;
}

.insights-hero h1 span {
  color: #2b6cb0;
}

.insights-hero p {
  max-width: 630px;

  margin: 23px 0 0;

  font-size: 16px;
  line-height: 1.72;

  color: #4a5a70;
}

.insights-coming {
  margin-top: 30px;

  font-size: 12px;
  line-height: 1.3;

  font-weight: 700;
  letter-spacing: 1.5px;

  color: #2b6cb0;
}


/* =========================================================
   INTRO
========================================================= */

.insights-intro {
  padding: 90px 0;
  background: #f8fafc;
}

.insights-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.insights-intro h2,
.insights-section-heading h2,
.insights-notice h2 {
  margin: 0;

  font-size: 38px;
  line-height: 1.18;
  font-weight: 700;

  letter-spacing: -0.7px;

  color: #1a2b49;
}

.insights-intro h2 span,
.insights-section-heading h2 span,
.insights-notice h2 span {
  display: block;
  color: #2b6cb0;
}

.insights-intro-grid > div:last-child p {
  max-width: 680px;

  margin: 0 0 18px;

  font-size: 15px;
  line-height: 1.78;

  color: #5c6b7a;
}

.insights-intro-grid > div:last-child p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   TOPICS
========================================================= */

.insights-topics {
  padding: 90px 0;
  background: #f3f6fa;
  border-top: 1px solid #e1e6ef;
}

.insights-section-heading {
  max-width: 800px;
  margin-bottom: 52px;
}

.insights-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid #dce3ec;
  border-left: 1px solid #dce3ec;
}

.insights-topic {
  min-height: 220px;

  padding: 30px;

  background: rgba(255, 255, 255, 0.45);

  border-right: 1px solid #dce3ec;
  border-bottom: 1px solid #dce3ec;
}

.insights-topic > span {
  display: block;

  margin-bottom: 25px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;

  color: #2b6cb0;
}

.insights-topic h3 {
  margin: 0 0 14px;

  font-size: 14px;
  line-height: 1.35;

  font-weight: 700;
  letter-spacing: 0.7px;

  color: #1a2b49;
}

.insights-topic p {
  max-width: 470px;

  margin: 0;

  font-size: 14px;
  line-height: 1.7;

  color: #657487;
}


/* =========================================================
   NOTICE
========================================================= */

.insights-notice {
  padding: 100px 0;

  background: #ffffff;

  border-top: 1px solid #e1e6ef;
}

.insights-notice-inner {
  max-width: 820px;
}

.insights-notice h2 {
  font-size: 42px;
}

.insights-notice p {
  max-width: 600px;

  margin: 20px 0 0;

  font-size: 15px;
  line-height: 1.75;

  color: #5c6b7a;
}

.insights-cta {
  display: inline-block;

  margin-top: 30px;

  padding: 14px 20px;

  border: 1px solid #2b6cb0;

  font-size: 11px;
  line-height: 1;

  font-weight: 700;
  letter-spacing: 1px;

  color: #2b6cb0;
  text-decoration: none;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.insights-cta:hover {
  background: #2b6cb0;
  color: #ffffff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

  .insights-hero {
    min-height: 500px;
  }

  .insights-hero-bg {
    background-position: 60% center;
  }

  .insights-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(248, 250, 252, 0.97) 0%,
        rgba(248, 250, 252, 0.88) 48%,
        rgba(248, 250, 252, 0.44) 100%
      );
  }

}


@media (max-width: 760px) {

  .insights-hero {
    min-height: 540px;
    align-items: flex-end;
  }

  .insights-hero-bg {
    background-position: 64% center;
    opacity: 0.68;
  }

  .insights-hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(248, 250, 252, 0.36) 0%,
        rgba(248, 250, 252, 0.82) 52%,
        rgba(248, 250, 252, 0.98) 100%
      );
  }

  .insights-hero-content {
    padding-top: 80px;
    padding-bottom: 45px;
  }

  .insights-hero h1 {
    font-size: 36px;
    letter-spacing: -0.7px;
  }

  .insights-hero p {
    font-size: 14px;
  }

  .insights-intro,
  .insights-topics,
  .insights-notice {
    padding: 72px 0;
  }

  .insights-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .insights-intro h2,
  .insights-section-heading h2,
  .insights-notice h2 {
    font-size: 32px;
  }

  .insights-topic-grid {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 480px) {

  .insights-hero {
    min-height: 560px;
  }

  .insights-hero h1 {
    font-size: 31px;
  }

  .insights-intro h2,
  .insights-section-heading h2,
  .insights-notice h2 {
    font-size: 29px;
  }

}
