/* .INSIGHTS-PFA */

.INSIGHTS-PFA {
	overflow: hidden;
}

.INSIGHTS-PFA .deco {
	position: absolute;
	top: calc(var(--page-head-height) * -1);
	right: 100%;
	width: 368rem;
	height: 450rem;
	background: url(images/deco-pfa.svg) no-repeat center / 100%;
}

.INSIGHTS-PFA .image {
	position: absolute;
	bottom: 0;
	left: 100%;
	width: 1080rem;
	height: 559rem;
	background: url(images/pfa-image-insights.webp) no-repeat center / 100%;
	transform: translate(-400rem, 0);
}

.INSIGHTS-PFA .content p {
	max-width: 660rem;
	margin: 1.5em 0;
	width: 60%;
}



.INSIGHTS-PFA.alt-667 .image {background-image: url(images/pfa-image-667.webp);}
.INSIGHTS-PFA.alt-669 .image {background-image: url(images/pfa-image-669.webp);}
.INSIGHTS-PFA.alt-671 .image {background-image: url(images/pfa-image-671.webp);}

@media screen and (max-width: 960px) {
	.INSIGHTS-PFA .b-frame {padding-bottom: 250rem;}
	.INSIGHTS-PFA .deco {display: none; right: 0; transform: translate(140px, -235px) scale(0.5);}
	.INSIGHTS-PFA .content {min-height: 0;}
	.INSIGHTS-PFA .image {transform: translate(-540rem, 170rem) scale(0.6);}

	.INSIGHTS-PFA .content {
		display: flex;
		flex-direction: column;
		gap: 20px;
		padding-top: 36px;
	}

	.INSIGHTS-PFA .content h1 {
		margin-bottom: -0.25em;
		font-size: 50px;
		margin-top: 120px !important;
	
	}
	
	.INSIGHTS-PFA .content p {
		
		margin: 1em 0;
	}
	
	.INSIGHTS-PFA .action-btn-area {
		display: flex;
		justify-content: center;
	}
}

/**
 * Featured Insight section – standalone styles
 * Visual match to the Insights page "Featured Insight" block.
 * Uses same design tokens as theme (--blue-teal, --light-green, etc.).
 */

/* Design tokens (match theme) */
.featured-insight {
  --blue-teal: #1998B5;
  --black: #1E1232;
  --white: #FFFFFF;
  --light-green: #ADDC91;
  --light-grey: #F8F7F3;
}

/* Section: teal background, full width */
.featured-insight {
  background: var(--blue-teal);
  color: var(--white);
  padding: 7% 10.6%;
}

/* @media screen and (min-width: 961px) {
  .featured-insight {
    padding: 150px 40px;
  }
} */

/* Inner container (replaces b-frame / e-con-boxed) */
.featured-insight__wrap {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}

/* Heading: "Featured Insight" */
.featured-insight__heading {
  font-family: 'pp-telegraf', sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--white);
  margin: 0 0 10px 0;
  line-height: 1.25;
}

@media screen and (min-width: 961px) {
  .featured-insight__heading {
    font-size: 64px;
    margin-bottom: 10px;
  }
}

/* Card: white/light panel with shadow */
.featured-insight__card {
  display: flex;
  flex-wrap: wrap;
  background: #FFFEFEA1;
  color: var(--black);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin-bottom: 24px;
}

/* Text column (left on desktop) */
.featured-insight__content {
  flex: 1 1 100%;
  padding: 30px 24px;
  box-sizing: border-box;
}

@media screen and (min-width: 961px) {
  .featured-insight__content {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 50px 25px 50px 50px;
  }
}

/* Title link */
.featured-insight__title {
  margin: 0 0 0.5em 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.featured-insight__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.featured-insight__title a:hover {
  color: var(--blue-teal);
}

@media screen and (min-width: 961px) {
  .featured-insight__title {
    font-size: 24px;
  }
}

/* Meta line */
.featured-insight__meta {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 0.75em 0;
}

/* Excerpt */
.featured-insight__excerpt {
  line-height: 1.5;
  margin: 0;
  color: #333;
}

/* Image column (right on desktop) – margin, rounded corners, hover zoom */
.featured-insight__media {
  flex: 1 1 100%;
  min-height: 200px;
  padding: 16px;
  box-sizing: border-box;
}

.featured-insight__media a {
  display: block;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.featured-insight__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.featured-insight__media a:hover img {
  transform: scale(1.08);
}

@media screen and (min-width: 961px) {
  .featured-insight__media {
    flex: 0 0 50%;
    max-width: 50%;
    min-height: auto;
    padding: 50px 50px 50px 25px;
  }
}

/* Read More button (matches .b-button.alt-arrow) */
.featured-insight__cta {
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  color: var(--black);
  font-family: 'pp-telegraf', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  padding: 10px 20px;
  margin: 3px;
  background: var(--light-green);
  border: none;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.25s;
  box-shadow: 0 0 0 3px var(--light-green);
  vertical-align: middle;
}

.featured-insight__cta:hover {
  color: var(--black);
  box-shadow: 0 0 0 3px var(--light-green);
}

.featured-insight__cta svg {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 20px;
  fill: currentColor;
  margin-left: 13px;
  transition: margin-left 0.25s;
}

.featured-insight__cta:hover svg {
  margin-left: 26px;
}

.insights-filters {
  --blue-teal: #1998B5;
  --white: #FFFFFF;
  --black: #1E1232;
  --light-grey: #F8F7F3;
  --border: #ccc;
  --hover-bg: #f1f1f1;
}

/* Section */
.insights-filters {
  padding: 60px 20px 80px;
}

.insights-filters__wrap {
  max-width: 1160px;
  margin: 0 auto;
}

/* Heading */
.insights-filters__title {
  font-family: 'pp-telegraf', sans-serif;
  font-weight: 600;
  font-size: 30px;
  margin: 0 0 24px 0;
  line-height: 1.25;
  color: var(--black);
}

@media (min-width: 961px) {
  .insights-filters__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

/* Form row: dropdowns + search */
.insights-filters__form {
  margin-bottom: 40px;
}

.insights-filters__row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

/* Dropdown */
.insights-filters__dd {
  position: relative;
  flex: 0 1 auto;
  min-width: 0;
  width: 100%;
  max-width: 300px;
}

.insights-filters__dd-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 10px 40px 10px 12px;
  font-family: 'pp-telegraf', sans-serif;
  font-size: 18px;
  color: var(--black);
  background: var(--light-grey);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  text-align: left;
  box-sizing: border-box;
}

.insights-filters__dd-trigger:hover {
  background: var(--hover-bg);
}

.insights-filters__dd-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  flex-shrink: 0;
}

.insights-filters__dd-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.insights-filters__dd-menu {
  display: none;
}

.insights-filters__dd.is-open .insights-filters__dd-menu {
  display: block;
}

.insights-filters__dd-option {
  padding: 10px 12px;
  cursor: pointer;
  font-family: 'pp-telegraf', sans-serif;
  font-size: 16px;
  color: var(--black);
}

.insights-filters__dd-option:hover {
  background: var(--hover-bg);
}

/* Search */
.insights-filters__search {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 100%;
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 961px) {
  .insights-filters__search {
    flex: 1 1 auto;
    min-width: 200px;
    max-width: 400px;
  }
}

.insights-filters__search-inner {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.insights-filters__search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.insights-filters__search-icon path {
  fill: currentColor;
  opacity: 0.5;
}

.insights-filters__search-input {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px 10px 44px;
  font-family: 'pp-telegraf', sans-serif;
  font-size: 18px;
  border: 0;
  border-radius: 4px;
  background: var(--light-grey);
  color: var(--black);
  box-sizing: border-box;
}

/* Circular progress spinner next to search box (shown on dropdown change or search submit) */
.insights-filters__spinner {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--light-grey);
  border-top-color: var(--blue-teal, #1998B5);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.insights-filters__spinner.is-active {
  opacity: 1;
  animation: insights-filters-spin 0.7s linear infinite;
}

@keyframes insights-filters-spin {
  to { transform: rotate(360deg); }
}

.insights-filters__search-input::placeholder {
  color: #666;
}

.insights-filters__search-input:focus {
  outline: 2px solid var(--blue-teal);
  outline-offset: 0;
}

/* Mobile: stack filters, full width */
@media (max-width: 960px) {
  .insights-filters {
    padding: 40px 20px 60px;
  }

  .insights-filters__form {
    margin-bottom: 32px;
  }

  .insights-filters__row {
    flex-direction: column;
    gap: 10px;
  }

  .insights-filters__dd {
    max-width: 100%;
    min-height: 40px;
  }

  .insights-filters__dd-trigger {
    min-height: 40px;
    font-size: 16px;
  }

  .insights-filters__search-input {
    min-height: 40px;
    font-size: 16px;
  }
}

/* ALM placeholder: simple spinner while results load (no skeleton) */
.insights-filters .alm-placeholder {
  position: relative;
  width: 100%;
  min-height: 160px;
  padding: 32px;
  box-sizing: border-box;
  grid-column: 1 / -1;
}

.insights-filters .alm-placeholder img {
  display: none;
}

.insights-filters .alm-placeholder::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid var(--light-grey, #e5e5e5);
  border-top-color: var(--blue-teal, #1998B5);
  border-radius: 50%;
  box-sizing: border-box;
  animation: insights-filters-spin-centered 0.7s linear infinite;
}

@keyframes insights-filters-spin-centered {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Thumb list grid */
.insights-filters__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .insights-filters__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 961px) {
  .insights-filters__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Card */
.insights-filters__card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.insights-filters__card-link-wrap {
  display: block;
  text-decoration: none;
  color: inherit;
}

.insights-filters__card-img {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #eee;
}

.insights-filters__card-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

.insights-filters__card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insights-filters__card-title {
  font-family: 'pp-telegraf', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 8px 0;
}

.insights-filters__card-title a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.25s;
}

.insights-filters__card-title a:hover {
  color: var(--blue-teal);
}

.insights-filters__card-meta {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.insights-filters__card-link {
  display: inline-block;
  margin-top: auto;
  font-family: 'pp-telegraf', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--blue-teal);
  text-decoration: none;
  transition: color 0.25s;
}

.insights-filters__card-link:hover {
  color: var(--black);
}

/* Mobile: card tweaks */
@media (max-width: 960px) {
  .insights-filters__list {
    gap: 16px;
  }

  .insights-filters__card-body {
    padding: 16px;
  }

  .insights-filters__card-title {
    font-size: 16px;
  }

  .insights-filters__card-meta {
    font-size: 13px;
  }
}

/**
 * ALM default template inside .insights-filters__list
 * Maps .b-column > .post-wrapper > .post (.b-image + .content) + .b-link to thumb list card look.
 * Do not change default.php; all overrides here.
 */
.insights-filters__list.alm-listing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0;
}

@media (min-width: 600px) {
  .insights-filters__list.alm-listing {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 961px) {
  .insights-filters__list.alm-listing {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.insights-filters__list .b-column {
  width: 100%;
  min-width: 0;
  padding: 0;
  box-sizing: border-box;
}

.insights-filters__list .post-wrapper {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.insights-filters__list .post {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insights-filters__list .post .b-image {
  position: relative;
  padding-bottom: 65.25%;
  overflow: hidden;
  background: #eee;
}

.insights-filters__list .post .b-image span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.insights-filters__list .post .b-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

.insights-filters__list .post .content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.insights-filters__list .post .content h4 {
  font-family: 'pp-telegraf', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 8px 0;
}

.insights-filters__list .post .content h4 a,
.insights-filters__list .post .content h4 {
  color: var(--black);
  text-decoration: none;
  transition: color 0.25s;
	margin-bottom: 25px;
	font-family: 'Roboto', sans-serif;
}

.insights-filters__list .post .content h4 a:hover {
  color: var(--blue-teal);
}

.insights-filters__list .post .content p {
  font-size: 17px;
  color: #000;
  margin: 0 0 12px 0;
	font-family: 'Telex', sans-serif;
  line-height: 1.4;
	font-weight: 400;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.insights-filters__list .post-wrapper .b-link {
  color: var(--black);
	border-radius: 30rem;
	font-family: inherit !important;
	font-weight: 600 !important;
	font-size: 20px !important;
	line-height: 1.25 !important;
	margin: 0 20px 20px;
	padding: 10rem 20rem;
	background: var(--light-green);
	border: 0;
	border-radius: 30rem;
	text-align: center;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	transition: box-shadow .25s;
	box-shadow: 0 0 0 0 var(--light-green);
}

.insights-filters__list .post-wrapper .b-link:hover {
  color: var(--black);
}

/* ALM Load more button */
.insights-filters .alm-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  grid-column: 1 / -1;
}

.insights-filters .alm-btn-wrap button.alm-load-more-btn {
  padding: 12px 24px;
  color: var(--black);
	border-radius: 30rem;
  background: var(--light-green);
  border: 0;
  font-family: inherit !important;
  font-size: 20px !important;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.insights-filters .alm-btn-wrap button.alm-load-more-btn:hover:not(:disabled) {
  opacity: 0.85;
}

.insights-filters .alm-btn-wrap button.alm-load-more-btn:disabled {
  visibility: hidden;
}

/* Mobile: ALM card tweaks */
@media (max-width: 960px) {
  .insights-filters__list.alm-listing {
    gap: 16px;
  }

  .insights-filters__list .post .content {
    padding: 16px;
  }

  .insights-filters__list .post .content h4 {
    font-size: 16px;
  }

  .insights-filters__list .post .content p {
    font-size: 13px;
  }

  .insights-filters .alm-btn-wrap {
    margin-top: 32px;
  }
}

/* .INSIGHTS-BENEFITS */

.INSIGHTS-BENEFITS {
	background: var(--blue-teal);
	color: var(--white);
}

.INSIGHTS-BENEFITS .card {
	background: var(--white);
	color: var(--black);
	padding: 30rem;
	border-radius: 10rem;
	height: 100%;
	box-sizing: border-box;
}

.INSIGHTS-BENEFITS .card h6 + h4 {
	margin-top: 0.5em;
}

@media screen and (max-width: 960px) {
	.INSIGHTS-BENEFITS .card {padding: 20rem;}
	.INSIGHTS-BENEFITS .card h6 + h4 {height: auto !important;}
}



/* .INSIGHTS-FEATURES */

.INSIGHTS-FEATURES .row:not(:last-child) {
	padding-bottom: 80rem;
}

.INSIGHTS-FEATURES .content > ul {
	list-style: none;
	padding: 0;
}

.INSIGHTS-FEATURES .content > ul > li {
	position: relative;
	padding: 5rem 0 5rem 40rem;
	font-weight: 600;
	line-height: 1.25;
}

.INSIGHTS-FEATURES .content > ul > li::before {
	content: '';
	position: absolute;
	top: 2rem;
	left: 0;
	width: 21rem;
	height: 24rem;
	background: url(images/ui-list.svg) no-repeat center / 100%;
}

@media screen and (min-width: 961px) {
	.INSIGHTS-FEATURES .b-heading {max-width: 940rem;}
	.INSIGHTS-FEATURES .row:nth-child(even) .b-columns {flex-direction: row-reverse;}
}

@media screen and (max-width: 960px) {
	.INSIGHTS-FEATURES .image {margin-bottom: 10rem;}
	.INSIGHTS-FEATURES .row:not(:last-child) {padding-bottom: 60rem;}
	.INSIGHTS-FEATURES .content > ul > li {padding: 4rem 0 4rem 30rem;}
	.INSIGHTS-FEATURES .content > ul > li::before {transform: scale(0.75); top: 1rem;}
}



/* INSIGHTS-PARTNERS */

.INSIGHTS-PARTNERS {
	background: var(--light-grey);
}

.INSIGHTS-PARTNERS .logos {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 -20rem;
}

.INSIGHTS-PARTNERS .logo {
	padding: 0 20rem;
}

.INSIGHTS-PARTNERS .logo .b-img {
	width: auto;
	height: 45rem;
}

@media screen and (max-width: 960px) {
	.INSIGHTS-PARTNERS .b-heading + .b-heading {margin-top: -20rem;}
	.INSIGHTS-PARTNERS .b-heading + .b-heading .b-columns {flex-direction: column-reverse;}
	.INSIGHTS-PARTNERS .logos {margin: -15rem; flex-wrap: wrap; justify-content: flex-start;}
	.INSIGHTS-PARTNERS .logo {padding: 15rem;}
}



/* INSIGHTS-CTA */

.INSIGHTS-CTA {
	overflow: hidden;
	background-image: url(/wp-content/uploads/2024/01/footer-sub-banner1-min.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	/* background: var(--blue-teal); */
	/* color: var(--white); */
}

.INSIGHTS-CTA .deco {
	position: absolute;
	top: 0;
	right: 100%;
	width: 368rem;
	height: 328rem;
	background: url(images/deco-cta.svg) no-repeat center / 100%;
	transform: translate(-60rem, 0);
}

.INSIGHTS-CTA .image {
	position: absolute;
	bottom: 0;
	left: 100%;
	width: 1072rem;
	height: 555rem;
	background: url(images/cta-image.webp) no-repeat center / 100%;
	transform: translate(-400rem, 120rem);
}

.INSIGHTS-CTA .content {
	max-width: 600rem;
}

.INSIGHTS-CTA > .b-frame {
	padding: 80px 0 130px;
	
}

.INSIGHTS-CTA p {
	margin: 1em 0;
}

@media screen and (max-width: 960px) {
	.INSIGHTS-CTA .b-frame {padding-bottom: 250rem;}
	.INSIGHTS-CTA .deco {display: none;}
	.INSIGHTS-CTA .image {transform: translate(-540rem, 170rem) scale(0.6);}
}