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


.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;
}

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

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

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

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

.expert-insights__inner table th {
  padding: 20px;
  background-color: #FF600014;
  vertical-align: middle;
  font-weight: 600;
}

.expert-insights__table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

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

.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 var(--border);
}

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

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

@media (max-width: 1439px) {

  .expert-insights .esb-section-header {
    padding: 15px 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__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;
  }
}