/* ------------------------------------------------------------
   SECTION: Hero
   ------------------------------------------------------------ */

.hero {
  background: #071e16;
  padding: 0;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(0, 61, 49, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(254, 212, 72, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 216, 215, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 216, 215, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* --- Image Panel --- */

.hero-image-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;         /* Full bleed on mobile */
  overflow: hidden;
  z-index: 0;
}

.hero-image-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  /* On mobile: heavier fade from bottom so text above is readable */
  background: linear-gradient(
    to top,
    #071e16 0%,
    rgba(7, 30, 22, 0.75) 40%,
    rgba(7, 30, 22, 0.5) 100%
  );
  z-index: 1;
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.45;
  display: block;
}

/* --- Content Grid --- */

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 16px 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* --- Text Block --- */

.hero-text {
  min-width: 0;       /* Prevents grid blowout — child respects column boundary */
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 61, 49, 0.25);
  border: 1px solid rgba(254, 212, 72);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fed448;
  margin-bottom: 60px;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 30px;
	line-height: 1.1;
}

.hero h1 em {
  font-style: normal;
  color: #fed448;
}

.hero-subhead {
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  color: #fed448;
  line-height: 1.4;
  margin-bottom: 18px;
  letter-spacing: -0.2px;
}

.hero-sub {
  font-size: 1rem; /* 16px */
  color: rgba(192, 216, 215);
  line-height: 1.65;
  margin-bottom: 0;
}

/* --- Buttons --- */

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Suppress global margin-top so our hero-actions gap controls spacing */
/* .hero-actions .wheel-btn-primary,
.hero-actions .wheel-btn-secondary {
  margin-top: 0 !important;
} */

.hero-btn-ghost {
	margin-top: 40px !important; 
}
/* Primary button: carry through the SVG arrow inline */
.hero-btn-primary a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Ghost button overrides for dark background */
.hero-btn-ghost a {
  background-color: transparent;
  border-color: rgba(249, 249, 249, 0.5);
  color: #F9F9F9;
}

/* --- Stat Cards --- */

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(192, 216, 215, 0.15);
  border-radius: 20px;
  padding: 20px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}

.hero-stat-number {
  font-size: 2rem; /* 32px */
  font-weight: 600;
  color: #fed448;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 0.875rem; 
  color: rgba(192, 216, 215);
  font-weight: 500;
  line-height: 1.4;
}


/* ------------------------------------------------------------
   SECTION: Hero — Tablet (768px+)
   ------------------------------------------------------------ */

@media screen and (max-width: 767px) {
	.hero-actions {
		margin-bottom: 32px; 
	}
}

@media screen and (min-width: 768px) {
	.hero-text {
		padding-right: 20px; 
	}
	
  .hero-image-panel {
    width: 50%;   /* Image shifts to right half at tablet+ */
  }

  .hero-image-panel::before {
    /* Fade from left so text on the left stays readable */
    background: linear-gradient(
      90deg,
      #071e16 0%,
      rgba(7, 30, 22, 0.85) 30%,
      rgba(7, 30, 22, 0.35) 60%,
      transparent 100%
    );
  }

  .hero-image-panel img {
    opacity: 0.55;
    object-position: center top;
  }

  .hero-content {
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 55fr 45fr;
    align-items: center;
    gap: 48px;
  }

  .hero-stats {
    align-self: center;
/*     padding-top: 120px; */
    gap: 16px;
  }

  .hero-subhead {
    font-size: 1.25rem;
  }
	

  .hero-stat-number {
    font-size: 2.25rem;
  }

}


/* ------------------------------------------------------------
   SECTION: Hero — Desktop (1024px+)
   ------------------------------------------------------------ */

@media screen and (min-width: 1024px) {

  .hero-image-panel {
    width: 50%;
  }

  .hero-image-panel img {
    opacity: 0.65;
  }

  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 96px;
    grid-template-columns: 55fr 45fr;
    gap: 64px;
  }

  .hero-subhead {
    font-size: 1.375rem; /* 22px */
  }

  .hero-sub {
    font-size: 1.125rem; /* 18px */
  }

  .hero-stats {
/*     padding-top: 200px; */
    gap: 20px;
  }

  .hero-stat-card {
    padding: 24px 28px;
  }

  .hero-stat-number {
    font-size: 2.5rem; /* 40px */
  }

}


/* ------------------------------------------------------------
   SECTION: Hero — Wide (1440px+)
   ------------------------------------------------------------ */

@media screen and (min-width: 1440px) {

  .hero-content {
    max-width: 1400px;
  }

}

/* ------------------------------------------------------------
   SECTION: Capabilities
   ------------------------------------------------------------ */
 
.lp-caps {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}
 
/* --- Header --- */
 
.lp-caps__header {
  margin-bottom: 48px;
}
 
.lp-caps__pretitle {
  color: #8C8CA1;
	font-weight: 600 !important; 
  margin-bottom: 16px;
}
 
.lp-caps__heading {
  color: #003D31;
  margin-bottom: 16px;
}
 
.lp-caps__intro {
  color: #4A4A68;
/*   max-width: 760px; */
}
 
/* --- One Wheelhouse Approach Card --- */
 
.lp-caps__approach-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: rgba(192, 216, 215, 0.25);
	border: 1px solid #c0d8d7; 
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 24px;
}
 
.lp-caps__approach-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid #003D31;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.lp-caps__approach-title {
  color: #003D31;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}
 
.lp-caps__approach-body {
  color: #003D31;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}
 
/* --- 2x2 Grid --- */
 
.lp-caps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
 
/* --- Capability Cards --- */
 
.lp-caps__card {
  background-color: #F9F9F9;
	border: 1px solid #D9D9D9;
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
}
 
.lp-caps__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: #FED448;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
 
.lp-caps__card-title {
  color: #003D31;
  margin-bottom: 12px;
}
 
.lp-caps__card-body {
  color: #4A4A68;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
 
/* --- Tags --- */
 
.lp-caps__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 0;
  padding-left: 0;
  list-style: none;
  margin-top: auto;
}
 
.lp-caps__tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: #003D31;
	background-color: rgba(192, 216, 215, 0.25);
  border: 1px solid #c0d8d7;
  border-radius: 50px;
  padding: 4px 12px;
  white-space: nowrap;
}
 
 
/* ------------------------------------------------------------
   SECTION: Capabilities — Tablet (768px+)
   ------------------------------------------------------------ */

@media screen and (min-width: 650px) {
	.lp-caps__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media screen and (min-width: 768px) {
  .lp-caps {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .lp-caps__approach-card {
    margin-bottom: 20px;
  }
 
}
 
 
/* ------------------------------------------------------------
   SECTION: Capabilities — Desktop (1024px+)
   ------------------------------------------------------------ */
 
@media screen and (min-width: 1024px) {
 
  .lp-caps {
    padding-top: 120px;
    padding-bottom: 120px;
  }
 
  .lp-caps__header {
    margin-bottom: 56px;
  }
 
  .lp-caps__approach-card {
    margin-bottom: 24px;
  }
 
  .lp-caps__grid {
    gap: 24px;
  }
 
  .lp-caps__card {
    padding: 32px 36px;
  }
 
  .lp-caps__approach-body {
    font-size: 1rem;
  }
 
  .lp-caps__card-body {
    font-size: 1rem;
  }
 
}

@media screen and (min-width: 1170px) {
	.lp-caps__grid {
		gap: 8px; 
		grid-template-columns: repeat(4, minmax(0, 1fr)); 
	}
	.lp-caps__card {
		padding: 8px; 
	}
}

@media screen and (min-width: 1240px) {
	.lp-caps__grid {
		gap: 14px; 
	}
	.lp-caps__card {
		padding: 16px; 
	}
}

/* ------------------------------------------------------------
   SECTION: Featured Work
   ------------------------------------------------------------ */

.lp-work {
  background-color: #F9F9F9;
  padding-top: 80px;
  padding-bottom: 80px;
}

.lp-work__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}

.lp-work__pretitle {
  color: #8C8CA1;
  font-weight: 600 !important;
  margin-bottom: 16px;
}

.lp-work__heading {
  color: #003D31;
  margin-bottom: 8px;
}

.lp-work__intro {
  color: #4A4A68;
  margin-bottom: 0;
}

.lp-work__header-btn {
  margin-top: 0 !important;
  align-self: flex-start;
}

/* --- Carousel Wrapper --- */

.lp-work__carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
	max-width: 500px; 
	margin: 0 auto;
}

.lp-work__carousel-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
	padding:4px; 
	margin: -4px; 
}

.lp-work__carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* --- Nav Buttons --- */

.lp-work__nav {
	font-size:4rem; 
	font-weight: 400; 
	line-height: 1; 
  flex-shrink: 0;
  color: #003D31;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.lp-work__nav:disabled {
  border-color: #D9D9D9;
  color: #D9D9D9;
  cursor: not-allowed;
}

.lp-work__nav:disabled:hover {
  background-color: #ffffff;
  color: #D9D9D9;
}

/* --- Dots --- */

.lp-work__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.lp-work__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #D9D9D9;
  transition: background-color 0.2s, transform 0.2s;
}

.lp-work__dot--active {
  background-color: #003D31;
  transform: scale(1.25);
}

/* --- Cards --- */

.lp-work__card {
  flex: 0 0 100%;
  max-width: 98%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.lp-work__card:hover {
  box-shadow: 0 4px 24px rgba(0, 61, 49, 0.1);
  border-color: #C0D8D7;
}

.lp-work__card-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.lp-work__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.lp-work__card:hover .lp-work__card-img {
  transform: scale(1.03);
}

.lp-work__card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lp-work__card-meta {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8C8CA1;
  margin-bottom: 12px;
}

.lp-work__card-title {
  color: #003D31;
  margin-bottom: 12px;
  font-size: 1.125rem;
  line-height: 1.4;
}

.lp-work__card-desc {
  color: #4A4A68;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.lp-work__card-result {
  border-left: 3px solid #FED448;
  padding: 8px 14px;
  background-color: #F9F9F9;
  border-radius: 0 8px 8px 0;
  margin-bottom: 20px;
}

.lp-work__card-result p {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #003D31;
  margin-bottom: 0;
  line-height: 1.4;
}

.lp-work__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 0;
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
  margin-top: auto;
}

.lp-work__tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: #003D31;
  background-color: rgba(192, 216, 215, 0.25);
  border: 1px solid #C0D8D7;
  border-radius: 50px;
  padding: 4px 12px;
  white-space: nowrap;
}

.lp-work__arrow {
  width: 36px;
  height: 36px;
  background-color: #FED448;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   SECTION: Featured Work — Tablet (768px+)
   ------------------------------------------------------------ */


@media screen and (min-width: 768px) {
  .lp-work {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .lp-work__header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }

  .lp-work__header-text {
    flex: 1;
  }

  .lp-work__header-btn {
    flex-shrink: 0;
    align-self: flex-start;
  }
 .lp-work__carousel-wrapper {
		max-width: 780px;
		gap: 16px;
	  margin: 0 auto; 
	}
	.lp-work__carousel-viewport {
    max-width: 680px;
    overflow: hidden;
  }

  .lp-work__card {
    flex: 0 0 calc(50% - 12px);
    min-width: 0;
    max-width: none;
  }

  /* 2 positions: 0 and 1 (cards 1-2 and cards 3-4) */
  .lp-work__dots {
    gap: 8px;
  }

}
/* 
@media screen and (min-width: 768px) and (max-width: 798px) {
	.lp-work__carousel-wrapper {
		max-width: 740px;
		 gap: 8px;
} */
	

/* ------------------------------------------------------------
   SECTION: Featured Work — Desktop (1024px+)
   ------------------------------------------------------------ */

@media screen and (min-width: 1024px) {

  .lp-work {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .lp-work__card-title {
    font-size: 1.25rem;
  }

  .lp-work__card-body {
    padding: 32px;
  }

  .lp-work__card-desc {
    font-size: 1rem;
  }
	.lp-work__carousel-wrapper {
    max-width: 1100px; 
		gap: 24px;
		justify-content: center; 
		margin: 0 auto;
  }
	.lp-work__carousel-viewport {
			max-width: 1024px;
			overflow: hidden;
		}
  .lp-work__carousel-track {
    gap: 24px;
  }

  .lp-work__card {
   flex: 0 0 calc(50% - 12px);
    min-width: 0;
    max-width: 500px;
  }

}

/* ------------------------------------------------------------
   SECTION: Who We Serve
   ------------------------------------------------------------ */

.lp-serve {
  background-color: rgba(192, 216, 215, 0.25);
  padding-top: 80px;
  padding-bottom: 80px;
}

/* --- Header --- */

.lp-serve__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.lp-serve__pretitle {
  color: #8C8CA1;
  font-weight: 600 !important;
  margin-bottom: 16px;
}

.lp-serve__heading {
  color: #003D31;
  margin-bottom: 16px;
}

.lp-serve__body {
  color: #4A4A68;
  line-height: 1.7;
  margin-bottom: 0;
}

.lp-serve__header-btn {
  margin-top: 0 !important;
  align-self: flex-start;
}

/* --- Industry Cards Grid --- */

.lp-serve__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* --- Individual Card --- */

.lp-serve__card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 61, 49, 0.08);
  padding: 20px 24px;
}

.lp-serve__card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(192, 216, 215, 0.25);
  border: 1px solid #C0D8D7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-serve__card-label {
  color: #003D31;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.lp-serve__contact {
	margin-top: 64px !important;
}

.lp-serve__contact a {
	padding: 16px 54px; 
}

/* ------------------------------------------------------------
   SECTION: Who We Serve — Tablet (768px+)
   ------------------------------------------------------------ */

@media screen and (min-width: 768px) {

  .lp-serve {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .lp-serve__header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 64px;
  }

  .lp-serve__header-text {
    flex: 1;
  }

  .lp-serve__header-btn {
    flex-shrink: 0;
    align-self: flex-start;
  }

  .lp-serve__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

}


/* ------------------------------------------------------------
   SECTION: Who We Serve — Desktop (1024px+)
   ------------------------------------------------------------ */

@media screen and (min-width: 1024px) {

  .lp-serve {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .lp-serve__header {
    margin-bottom: 56px;
  }

  .lp-serve__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
		max-width: 1400px; 
		margin: auto; 
  }

  .lp-serve__card-label {
    font-size: 1rem;
  }

}

/* ------------------------------------------------------------
   SECTION: What It's Like Working With Us
   ------------------------------------------------------------ */

.lp-culture {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* --- Header --- */

.lp-culture__pretitle {
  color: #8C8CA1;
  font-weight: 600 !important;
  margin-bottom: 16px;
}

.lp-culture__heading {
  color: #003D31;
  margin-bottom: 40px;
}

/* --- Blockquote --- */

.lp-culture__quote {
  border-left: 3px solid #FED448;
  background-color: rgba(192, 216, 215, 0.2);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  margin: 0 0 48px 0;
}

.lp-culture__quote-text {
  color: #003D31;
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 16px;
}

.lp-culture__quote-attribution {
  color: #8C8CA1;
  font-size: 0.875rem;
  font-weight: 400;
  font-style: normal;
}

/* --- Values Pills --- */

.lp-culture__values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-left: 0;
  padding-top: 0;
  list-style: none;
}

.lp-culture__value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #D9D9D9;
  border-radius: 50px;
  padding: 8px 16px;
  color: #003D31;
  font-size: 0.9375rem;
  font-weight: 500;
  background-color: #ffffff;
}

.lp-culture__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


/* ------------------------------------------------------------
   SECTION: What It's Like Working With Us — Tablet (768px+)
   ------------------------------------------------------------ */

@media screen and (min-width: 768px) {

  .lp-culture {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .lp-culture__quote {
/*     max-width: 780px; */
  }

  .lp-culture__quote-text {
    font-size: 1.0625rem;
  }

}


/* ------------------------------------------------------------
   SECTION: What It's Like Working With Us — Desktop (1024px+)
   ------------------------------------------------------------ */

@media screen and (min-width: 1024px) {

  .lp-culture {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .lp-culture__quote-text {
    font-size: 1.125rem;
  }

  .lp-culture__heading {
/*     max-width: 760px; */
  }

}

/* ------------------------------------------------------------
   SECTION: Thought Leadership
   ------------------------------------------------------------ */

.lp-insights {
  background-color: rgba(192, 216, 215, 0.25);
  padding-top: 80px;
  padding-bottom: 80px;
}

/* --- Header --- */

.lp-insights__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.lp-insights__pretitle {
  color: #8C8CA1;
  font-weight: 600 !important;
  margin-bottom: 16px;
}

.lp-insights__heading {
  color: #003D31;
  margin-bottom: 8px;
}

.lp-insights__intro {
  color: #4A4A68;
  margin-bottom: 0;
}

/* --- Carousel Viewport (mobile only) --- */

.lp-insights__carousel-viewport {
  overflow: hidden;
  padding: 4px;
  margin: -4px;
	max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Grid / Track --- */

.lp-insights__grid {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  gap: 24px;
}

/* --- Individual Card --- */

.lp-insights__card {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 61, 49, 0.08);
  max-width: 350px;
  margin: 0 auto;
}

.lp-insights__card:hover .lp-insights__card-img {
  transform: scale(1.03);
}

/* --- Card Image --- */

.lp-insights__card-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #003D31;
}

.lp-insights__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

/* --- Card Body --- */

.lp-insights__card-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* --- Category Tag --- */

.lp-insights__card-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #003D31;
  background-color: rgba(192, 216, 215, 0.25);
  border: 1px solid #C0D8D7;
  border-radius: 50px;
  padding: 4px 12px;
  margin-bottom: 16px;
  align-self: flex-start;
}

/* --- Card Title --- */

.lp-insights__card-title {
  color: #003D31;
  font-size: 1.0625rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* --- Card Description --- */

.lp-insights__card-desc {
  color: #4A4A68;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

/* --- CTA Row --- */

.lp-insights__card-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.lp-insights__card-cta-icon {
  width: 32px;
  height: 32px;
  background-color: #FED448;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-insights__card-cta-label {
  color: #003D31;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
}

/* --- Dots (mobile only) --- */

.lp-insights__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.lp-insights__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #D9D9D9;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.lp-insights__dot--active {
  background-color: #003D31;
  transform: scale(1.25);
}


/* ------------------------------------------------------------
   SECTION: Thought Leadership — Tablet (768px+)
   ------------------------------------------------------------ */

@media screen and (min-width: 768px) {

  .lp-insights {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .lp-insights__header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }

  .lp-insights__header-text {
    flex: 1;
  }

  /* Disable carousel at tablet — switch back to grid */
  .lp-insights__carousel-viewport {
    overflow: visible;
    padding: 0;
    margin: 0;
		max-width: 100%; 
  }

  .lp-insights__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 325px));
    gap: 24px;
    justify-content: center;
    transform: none !important;
    transition: none;
  }

  .lp-insights__card {
    flex: unset;
    max-width: none;
    margin: 0;
    height: 100%;
  }

  /* Hide dots at tablet+ */
  .lp-insights__dots {
    display: none;
  }

}


/* ------------------------------------------------------------
   SECTION: Thought Leadership — Desktop (1024px+)
   ------------------------------------------------------------ */

@media screen and (min-width: 1024px) {

  .lp-insights {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .lp-insights__card-title {
    font-size: 1.125rem;
  }

  .lp-insights__card-desc {
    font-size: 1rem;
  }

}