/* ---------------------------------------------------------- */
/*
Theme Name: Divi Child
Theme URI: https://example.com/
Description: Child theme for Divi
Author: Anayticon
Template: Divi
Version: 1.0.0
*/
/* Add your custom CSS below */

@charset "UTF-8";
body {
  --card_min_width: 340px;
  --card_img_height: 220px;
  --card_padding: 16px 16px 20px 16px;
  --featured-insights-grid-padding-bottom: 60px;
}
@media screen and (max-width: 1420px) {
  body {
    --card_padding: 16px 16px 20px 16px;
  }
}
@media screen and (max-width: 768px) {
  body {
    --card_padding: 16px 16px 20px 16px;
  }
}
@media screen and (max-width: 576px) {
  body {
    --card_padding: 16px 16px 20px 16px;
    --card-min-width: 240px;
    --featured-insights-grid-padding-bottom: 40px;
  }
}
@media screen and (max-width: 320px) {
  body {
    --card-min-width: unset;
  }
}

.insights-page-wrapper {
  background-color: white;
  font-family: "Open Sans";
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .insights-page-wrapper {
    max-width: calc(100% - 60px);
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .insights-page-wrapper {
    max-width: calc(100% - 40px);
    padding: 0;
  }
}
@media screen and (max-width: 576px) {
  .insights-page-wrapper {
    max-width: calc(100% - 40px);
    padding: 0;
  }
}

body {
  --resources-insights-grid-padding-bottom: 60px;
}
@media screen and (max-width: 576px) {
  body {
    --resources-insights-grid-padding-bottom: 40px;
  }
}
/* mixins for card-base-style-s1 */
.insights-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--card_min_width), 1fr));
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .insights-results-grid {
    place-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.insights-results-grid {
  padding-bottom: var(--resources-insights-grid-padding-bottom);
}

.insights-results-grid.has-ajax-nested-grid {
  display: block;
  grid-template-columns: unset;
  gap: unset;
  width: 100%;
}

.insights-results-grid .insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--card_min_width), 1fr));
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .insights-results-grid .insights-grid {
    place-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.insight-card {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.insight-card:hover {
  background: rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .insight-card {
    max-width: 360px;
  }
}
.insight-card .card-image {
  width: 100%;
  height: var(--card_img_height);
  overflow: hidden;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.insight-card .card-image a {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.insight-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.insight-card .card-image + .card-text-content {
  max-height: unset;
}
.insight-card .card-text-content,
.insight-card .card-content {
  padding: var(--card_padding);
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  flex-grow: 1;
  margin-top: auto;
  min-height: -moz-max-content;
  min-height: max-content;
  max-height: calc(100% - var(--card_img_height));
}
.insight-card .card-text-content a,
.insight-card .card-content a {
  text-decoration: none;
}
.insight-card .card-text-content .card-title,
.insight-card .card-text-content h3,
.insight-card .card-content .card-title,
.insight-card .card-content h3 {
  color: rgb(31, 31, 31);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  padding: 0;
  margin: 0;
  transition: color 0.2s ease;
}
.insight-card .card-text-content .card-para,
.insight-card .card-text-content p,
.insight-card .card-content .card-para,
.insight-card .card-content p {
  color: rgb(31, 31, 31);
  font-size: 16px;
  line-height: 1.5;
  flex-grow: 1;
  margin: 0;
}
.insight-card .card-text-content .card-button,
.insight-card .card-content .card-button {
  display: inline-block;
  color: black;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.25px;
  text-decoration: underline;
  text-decoration-color: #2b6fae;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  transition: 0.3s all linear;
}
.insight-card .card-text-content .card-button::after,
.insight-card .card-content .card-button::after {
  transition: 0.3s all linear;
}
.insight-card .card-text-content .card-button::after,
.insight-card .card-content .card-button::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: auto;
  opacity: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid black;
  border-left: 2px solid black;
  transform: rotate(135deg) translate(0px, -10px);
}
.insight-card:hover .card-text-content a.card-button,
.insight-card:hover .card-content a.card-button {
  text-decoration-color: transparent;
}
.insight-card:hover .card-text-content a.card-button::after,
.insight-card:hover .card-content a.card-button::after {
  opacity: 1;
}

body {
  --featured-insights-grid-padding-bottom: 60px;
}
@media screen and (max-width: 576px) {
  body {
    --featured-insights-grid-padding-bottom: 40px;
  }
}
@media screen and (max-width: 320px) {
  body {
    --card-min-width: unset;
  }
}

.featured-insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--card_min_width), 1fr));
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .featured-insights-grid {
    place-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.featured-insights-grid {
  padding-bottom: var(--featured-insights-grid-padding-bottom);
}

.featured-insight-card {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.featured-insight-card:hover {
  background: rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .featured-insight-card {
    max-width: 360px;
  }
}
.featured-insight-card .featured-insight-image {
  width: 100%;
  height: var(--card_img_height);
  overflow: hidden;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.featured-insight-card .featured-insight-image a {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.featured-insight-card .featured-insight-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.featured-insight-card .card-image + .card-text-content {
  max-height: unset;
}
.featured-insight-card .featured-insight-card-text-content {
  padding: var(--card_padding);
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  flex-grow: 1;
  margin-top: auto;
  min-height: -moz-max-content;
  min-height: max-content;
  max-height: calc(100% - var(--card_img_height));
}
.featured-insight-card .featured-insight-card-text-content a {
  text-decoration: none;
}
.featured-insight-card .featured-insight-card-text-content .featured-insight-card-title,
.featured-insight-card .featured-insight-card-text-content h3 {
  color: rgb(31, 31, 31);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  padding: 0;
  margin: 0;
  transition: color 0.2s ease;
}
.featured-insight-card .featured-insight-card-text-content .featured-insight-card-para,
.featured-insight-card .featured-insight-card-text-content p {
  color: rgb(31, 31, 31);
  font-size: 16px;
  line-height: 1.5;
  flex-grow: 1;
  margin: 0;
}
.featured-insight-card .featured-insight-card-text-content .card-button {
  display: inline-block;
  color: black;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.25px;
  text-decoration: underline;
  text-decoration-color: #2b6fae;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  transition: 0.3s all linear;
}
.featured-insight-card .featured-insight-card-text-content .card-button::after {
  transition: 0.3s all linear;
}
.featured-insight-card .featured-insight-card-text-content .card-button::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: auto;
  opacity: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid black;
  border-left: 2px solid black;
  transform: rotate(135deg) translate(0px, -10px);
}
.featured-insight-card:hover .featured-insight-card-text-content a.card-button {
  text-decoration-color: transparent;
}
.featured-insight-card:hover .featured-insight-card-text-content a.card-button::after {
  opacity: 1;
}

.insights-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
  align-items: center;
}
.insights-filters .filter-group {
  flex: 1;
  min-width: 240px;
}
.insights-filters .filter-group select,
.insights-filters .filter-group input[type=text] {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  border-radius: 3px;
  font-size: 16px;
  color: rgb(31, 31, 31);
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.insights-filters .filter-group select:focus,
.insights-filters .filter-group input[type=text]:focus {
  border-color: #2b6fae;
  outline: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.insights-filters .filter-group select:hover,
.insights-filters .filter-group input[type=text]:hover {
  border-color: #2b6fae;
  outline: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.insights-filters .clear-filters-button {
  background: transparent;
  border: none;
  color: black;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  padding-right: 24px;
  text-decoration-color: #2b6fae;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.insights-filters .clear-filters-button:hover {
  text-decoration-color: transparent;
}
@media screen and (max-width: 1080px) {
  .insights-filters {
    flex-direction: column;
    align-items: flex-start;
  }
  .insights-filters .filter-group {
    width: 100%;
  }
}

.insights-filters .filter-group {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  align-items: flex-start;
}
.insights-filters .filter-group:nth-last-child(1) {
  flex-direction: row;
}
.insights-filters .filter-group:nth-last-child(1) .clear-filters-button::after {
  content: "";
  position: absolute;
  top: 12%;
  margin-left: 8px;
  pointer-events: none;
  opacity: 1;
  background-image: url("https://analyticon.ai/wp-content/uploads/2026/03/icons8-close-48.png");
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 18px;
  background-size: 100%;
}
@media screen and (max-width: 1080px) {
  .insights-filters .filter-group:nth-last-child(1) {
    justify-content: center;
  }
  .insights-filters .filter-group:nth-last-child(1) .clear-filters-button {
    font-size: 16px;
    margin-top: 2px;
  }
  .insights-filters .filter-group:nth-last-child(1) .clear-filters-button::after {
    top: 20%;
  }
}
.insights-filters .filter-group .filter-label {
  font-size: 14px;
  font-weight: 700;
  color: #1f1f1f;
  line-height: 1.5;
}
.insights-filters .filter-group .select-wrapper {
  width: 100%;
}
.insights-filters .filter-group .search-wrapper {
  width: 100%;
}
.insights-filters .filter-group .search-wrapper input[type=text] {
  padding-left: 45px;
  padding-bottom: 1px;
}
.insights-filters .filter-group .search-wrapper::before {
  content: "";
  position: absolute;
  left: 18px;
  top: calc(50% + 6px);
  pointer-events: none;
  opacity: 0.6;
  background-image: url("icons/icons8-search-51.png");
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 17px;
  background-size: 100%;
}
.insights-filters .filter-group select.insights-dropdown {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.insights-filters .filter-group {
  position: relative;
}
.insights-filters .filter-group:has(select)::after {
  content: "▼";
  font-size: 16px;
  position: absolute;
  right: 16px;
  top: calc(50% + 6px);
  color: #2d7fb6;
  pointer-events: none;
  background-image: url("icons/dropdown-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  background-size: 100%;
  content: "";
}

.pagination {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  margin-top: 24px;
  gap: 8px;
}
.pagination .page-numbers {
  padding: 10px 10px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  color: black;
  font-weight: 600;
  transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 0;
}
.pagination .page-numbers.current {
  background-color: transparent;
  color: black;
  border-bottom: 2px solid #2b6fae;
}
.pagination .page-numbers:hover {
  border-bottom: 2px solid #2b6fae;
  background-color: rgba(0, 0, 0, 0.05);
}

/* ----------------------------------------------------------------------- */
.no-results-container {
  grid-column: 1/span 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: -40px;
}

.no-results-container p {
  padding-bottom: 0;
}

.no-results-heading {
  font-size: 36px;
}

.no-results-found-img {
  width: 100%;
  max-width: 594px;
  height: auto;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 999;
}

.no-results-desc {
  font-size: 16px;
  padding: 12px 0;
}

@media screen and (max-width: 1024px) {
  .no-results-container {
    grid-column: 1/span 2;
    margin-bottom: -60px;
    position: relative;
    z-index: 999;
  }
  .no-results-container p {
    padding-bottom: 0;
  }
  .no-results-heading {
    font-size: 24px;
  }
  .insights-page-wrapper {
    margin: auto;
    overflow: hidden;
    padding: 0px;
  }
}
@media screen and (max-width: 425px) {
  .no-results-desc {
    font-size: 14px;
  }
  .insights-results-grid {
    display: flex;
    flex-direction: column;
  }
  .featured-insights-grid {
    display: flex;
    flex-direction: column;
  }
}

.insight-deatil-bnr-container,
.insight-deatil-container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 992px) {
  .insight-deatil-bnr-container,
  .insight-deatil-container {
    max-width: 80%;
    padding: 0;
  }
}

.insight-detail-bnr-section {
  padding: 60px 0;
  background: #042729;
}

.insight-deatil-bnr-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 1080px) {
  .insight-deatil-bnr-container {
    flex-direction: column;
    justify-content: unset;
  }
}

.insight-bnr-image-box {
  order: 2;
  width: 48%;
}
@media screen and (max-width: 1080px) {
  .insight-bnr-image-box {
    width: 100%;
    margin-top: 30px;
  }
}
.insight-bnr-image-box img {
  width: 100% !important;
  height: auto !important;
  -o-object-fit: fill;
     object-fit: fill;
}
@media screen and (max-width: 1080px) {
  .insight-bnr-image-box img {
    width: auto !important;
    height: auto !important;
  }
}

.insight-bnr-text-box {
  width: 50%;
}
@media screen and (max-width: 1080px) {
  .insight-bnr-text-box {
    width: 100%;
  }
}
.insight-bnr-text-box {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 30px;
}

.insight-title {
  color: black;
  color: white;
  font-size: 44px;
  line-height: 1.15;
  width: 100%;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .insight-title {
    width: 100%;
    font-size: 32px;
  }
}

.insight-meta {
  font-size: 14px;
  color: #555;
  color: white;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 20px;
}

.insight-media {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.insight-video-btn {
  display: inline-block;
  padding: 16px 32px;
  background: #0073aa;
  color: #fff;
  border-radius: 5px;
  margin-right: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  border: 2px solid white;
  border-radius: 0;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  position: relative;
  transition: 0.3s all linear;
}
.insight-video-btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: auto;
  opacity: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid white;
  border-left: 2px solid white;
  transform: rotate(135deg) translate(0px, -10px);
}
.insight-video-btn:hover {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.05);
}
.insight-video-btn:hover::after {
  opacity: 1;
}

.insight-download-btn {
  display: inline-block;
  padding: 16px 32px;
  background: #0073aa;
  color: #fff;
  border-radius: 5px;
  margin-right: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  border: 2px solid white;
  border-radius: 0;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  position: relative;
  transition: 0.3s all linear;
}
.insight-download-btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: auto;
  opacity: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid white;
  border-left: 2px solid white;
  transform: rotate(135deg) translate(0px, -10px);
}
.insight-download-btn:hover {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.05);
}
.insight-download-btn:hover::after {
  opacity: 1;
}

.insight-content-box {
  padding: 64px 0;
}

.insight-content {
  grid-area: content-description;
  grid-column: 1/span 9;
  grid-row: 4/span 1;
  align-self: start;
  height: auto !important;
}
.insight-content .wp-block-heading {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 20px;
}
.insight-content p {
  font-size: 20px;
  padding-bottom: 0;
  line-height: 1.5;
  margin-bottom: 10px;
}
.insight-content img {
  margin: 30px 0;
  width: 760px;
  height: 530px;
  -o-object-fit: cover;
     object-fit: cover;
}

.transcript-toggle {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 20px 0px !important;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 20px;
  background: #555;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.transcript-content {
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 16px;
}

.transcript-toggle ~ h2 {
  width: 100%;
  margin-bottom: 30px;
}

.related-card-section {
  grid-area: related-insights;
  grid-row: 8/span 1;
  grid-column: 1/span 12;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.related-insights {
  width: 100%;
  padding-bottom: var(--featured-insights-grid-padding-bottom);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--card_min_width), 1fr));
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .related-insights {
    place-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.related-card {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.related-card:hover {
  background: rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .related-card {
    max-width: 360px;
  }
}
.related-card {
  width: 350px;
  min-height: unset;
}
@media screen and (max-width: 425px) {
  .related-card {
    width: 90%;
  }
}
.related-card .related-card-img-box {
  width: 100%;
  height: var(--card_img_height);
  overflow: hidden;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.related-card .related-card-img-box a {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.related-card .related-card-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.related-card .related-card-text-box {
  padding: 16px;
}
.related-card h3,
.related-card .related-card-title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}
.related-card p,
.related-card .related-card-para {
  font-size: 16px;
  color: rgb(31, 31, 31);
}

.insight-resources-heading,
.insight-feature-heading {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0;
  font-family: "Inter", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  font-size: 48px;
}
@media screen and (max-width: 576px) {
  .insight-resources-heading,
  .insight-feature-heading {
    font-size: 32px;
  }
}

.insight-feature-heading {
  margin: 60px 0 30px;
}

.insight-feature-heading + div .et_pb_section {
  padding: 0 !important;
}

/* ------------------------------- */
.load-more-btn {
  display: inline-flex;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  padding: 16px 48px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  border: 2px solid black;
  border-radius: 0;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  position: relative;
  transition: 0.3s all linear;
}

.load-more-btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 80%;
  opacity: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid black;
  border-left: 2px solid black;
  transform: rotate(135deg) translate(0px, 0px);
  transition: 0.3s all linear;
}

.load-more-btn:hover {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.05);
}

.load-more-btn:hover::after {
  opacity: 1;
}

.load-more-btn {
  grid-column: 1/span 3;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}


/* Wrapper for positioning loader */
.insights-results-wrapper {
  position: relative;
}

/* Loader overlay */
#insights-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 5;
}

/* Active state */
#insights-loader.active {
  opacity: 1;
  visibility: visible;
}

/* Spinner */
.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #e5e5e5;
  border-top: 5px solid #1e73be;
  border-radius: 50%;
  animation: insightsSpin 0.9s linear infinite;
}

/* Spinner animation */
@keyframes insightsSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ------------------------------- */
.insight-card .card-image {
  height: auto;
  aspect-ratio: 16/10;
}

.featured-insight-card .featured-insight-image {
  height: auto;
  aspect-ratio: 16/10;
}

@media screen and (min-width: 1280px) {
  .insight-card {
    max-width: 472px;
  }
}
@media screen and (max-width: 1280px) {
  .insight-card {
    max-width: 464px;
  }
}

@media screen and (min-width: 1024px) {
  .insights-page-wrapper {
    max-width: calc(100% - 80px);
  }
  .left-sidebar-feature-layout {
    display: flex;
    -moz-column-gap: 60px;
         column-gap: 60px;
    justify-content: space-between;
    align-items: flex-start;
  }
  .left-sidebar-feature-layout section.featured-insights-section {
    width: 30%;
    min-width: 390px;
    border-radius: 16px;
    padding: 25px;
    background: rgba(241, 242, 246, 0.8);
  }
  .left-sidebar-feature-layout .insight-feature-heading {
    margin: 16px 0 32px;
    font-size: 32px;
    justify-content: flex-start;
  }
  .left-sidebar-feature-layout .insight-resources-heading {
    justify-content: flex-start;
  }
  .left-sidebar-feature-layout .insights-filters .clear-filters-button {
    transform: translateY(10px);
  }
}
@media screen and (min-width: 1280px) {
  .left-sidebar-feature-layout section.featured-insights-section {
    min-width: 424px;
    padding: 25px 40px;
  }
}
@media screen and (max-width: 1280px) {
  .left-sidebar-feature-layout {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}/*# sourceMappingURL=style.css.map */

.insight-card .card-image {
    aspect-ratio: 16 / 10;
    height: auto !important;
}

.insight-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}