/* ||||||||||||||||||||||||||||||||||||||||||||||||*/
/* ESB Section Expert Insights */
/* ||||||||||||||||||||||||||||||||||||||||||||||||*/

.expert-insights {
  padding: 10px;
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(19, 25, 36, 0.06);
  --color-scheme: #0060b4;
  /* background: repeating-radial-gradient(
      circle at 30vw 150px,
      rgb(from var(--color-scheme) r g b / 0),
      rgb(from var(--color-scheme) r g b / 0) 10px,
      rgb(from var(--color-scheme) r g b / 0.04) 10px,
      rgb(from var(--color-scheme) r g b / 0.04) 20px
    ),
    linear-gradient(
      180deg,
      rgb(from var(--color-scheme) r g b / 0.03),
      rgb(from var(--color-scheme) r g b / 0.01)
    ); */
  background: var(--new-theme-gray-50);
}

.expert-insights::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* background: linear-gradient(135.86deg, #1472b6 1.79%, #8bbf37 100.34%); */
  background: var(--BluePrimary);
  opacity: 0.1;
  border-radius: 18px;
}

.expert-insights__inner-wrapper {
  background-color: var(--white);
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow: hidden;
}

.expert-insights .esb-section-header {
  padding: 20px 30px;
  background-color: var(--OffWhite);
  max-width: 100%;
}

.expert-insights__inner {
  position: relative;
  padding: 30px;
}

.expert-insights__inner ul {
  display: grid;
  grid-gap: 20px;
}

.expert-insights__inner a {
  text-decoration: none;
  color: var(--bodyColor);
}

.expert-insights__inner a:hover {
  color: var(--PrimaryGreen);
  text-decoration: underline;
}

.expert-insights__inner table {
  width: 100%;
  text-align: left;
}

.expert-insights__inner table th {
  padding: 20px;
  background-color: var(--OffWhite);
  vertical-align: middle;
  font-weight: 600;
}

.expert-insights__table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1319241a;
}

.expert-insights__inner tbody tr:not(:last-child) {
  border-bottom: 1px solid #1319241a;
}

.expert-insights__inner td {
  padding: 12px 20px;
}

.expert-insights__inner th:not(:last-child),
.expert-insights__inner td:not(:last-child) {
  border-right: 1px solid #1319241a;
}

.expert-insights .esb-section-header {
  margin: 0;
}

/* ------------------------------------------------ */
/* Desktop Smaller and Down */
/* ------------------------------------------------ */

@media (max-width: 1439px) {
  .expert-insights {
    padding: 20px;
  }

  .expert-insights .esb-section-header {
    padding: 15px 20px;
  }

  .expert-insights__inner {
    padding: 20px;
  }

  .expert-insights__inner table th {
    padding: 15px;
  }

  .expert-insights__inner td {
    padding: 12px 15px;
  }
}

/* ------------------------------------------------ */
/* Tablet P and Down */
/* ------------------------------------------------ */

@media (max-width: 1023px) {
  .expert-insights {
    padding: 10px;
  }

  .expert-insights__inner {
    padding: 15px;
  }

  .expert-insights__inner td,
  .expert-insights__inner table th {
    padding: 12px 10px;
  }
}

/* ------------------------------------------------ */
/* Mobile */
/* ------------------------------------------------ */

@media (max-width: 767px) {
  .expert-insights {
    width: calc(100% + 30px);
    margin-left: -15px;
    position: relative;
    border-radius: 0;
  }

  .expert-insights::after {
    border-radius: 0;
  }

  .expert-insights__table {
    overflow: auto;
    border-radius: 8px;
  }

  .expert-insights__inner table {
    display: block;
  }

  .expert-insights__inner td,
  .expert-insights__inner table th {
    min-width: 200px;
  }

  .expert-insights__inner td {
    font-size: 14px;
  }

  .expert-insights__inner-wrapper {
    border-radius: 8px;
  }
}
