@charset "UTF-8";
@font-face {
  font-family: "OpenSans";
  src: url("../../assets/fonts/OpenSans-Light.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans";
  src: url("../../assets/fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans";
  src: url("../../assets/fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.hero {
  margin: auto;
  position: relative;
}
.hero {
  max-width: 1500px;
}
.hero__content {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #F9FAFB;
  padding: 0 3.75rem;
}
@media screen and (max-width: 760px) {
  .hero__content {
    padding: 1.5rem 2rem;
  }
}
.hero__content > h2 {
  margin-top: 0;
  margin-bottom: 2.5rem;
}
.hero__content > h2 {
  font-size: 3.75rem;
  line-height: 4.5rem;
  font-weight: 700;
}
@media screen and (min-width: 761px) and (max-width: 1024px) {
  .hero__content > h2 {
    font-size: 2rem;
    line-height: 3.5rem;
  }
}
@media screen and (max-width: 760px) {
  .hero__content > h2 {
    font-size: 1.25rem !important;
    line-height: 120% !important;
    margin-bottom: 1rem;
  }
  .hero__content > h2 {
    font-size: 3rem;
    line-height: 3.6rem;
    font-weight: 700;
  }
}
.hero__content > p {
  margin-top: 0;
  font-size: 1.5rem;
  line-height: normal;
}
.hero__content > p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 760px) {
  .hero__content > p {
    font-size: 0.875rem;
    line-height: normal;
    width: unset;
  }
  .hero__content > p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
  }
}
.hero__img {
  aspect-ratio: 4/2;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(50%);
}
@media screen and (max-width: 760px) {
  .hero__img {
    aspect-ratio: 4/2.35;
  }
}

.hero {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  text-align: center;
  background-image: url("/assets/images/insights-banner.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 760px) {
  .hero {
    padding: 50px 0;
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
}
.hero h2 {
  color: #F9FAFB;
  border-bottom: 1px solid #F9FAFB;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.5rem !important;
}
.hero h2 {
  font-size: 3.75rem;
  line-height: 4.5rem;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  .hero h2 {
    font-size: 3rem;
    line-height: 3.6rem;
    font-weight: 700;
  }
}

.insights {
  max-width: 1500px;
  display: flex;
  justify-content: center;
  margin: auto;
}
.insights_container {
  padding: 3.75rem 3.75rem;
}
@media screen and (max-width: 760px) {
  .insights_container {
    padding: 2.5rem 2rem;
  }
}

.under_construction img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

/* Container */
.insights_container {
  max-width: 1200px;
  margin: 0 auto;
}
.insights_container > h2 {
  text-align: center;
}

/* Section heading */
.insights_container h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #111827;
}

/* Cards grid */
.insights_cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* Individual card */
.insights_card {
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden; /* critical for image containment */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.insights_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Image — NO STRETCHING */
.insights_card img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Text spacing */
.insights_card h3,
.insights_card p,
.insights_card a {
  padding: 0 1.5rem;
}

/* Title */
.insights_card h3 {
  margin-top: 1.25rem;
  font-size: 1.15rem;
  color: #111827;
}

/* Description */
.insights_card p {
  margin: 0.75rem 0;
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1; /* keeps cards equal height */
}

/* CTA */
.insights_card a {
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #1f4e79;
  text-decoration: none;
  align-self: flex-start;
}

.insights_card a:hover {
  text-decoration: underline;
  cursor: pointer;
}/*# sourceMappingURL=insights.css.map */