.salary-impact-table {
  padding: var(--sp) 0;
}

.salary-impact-table:is(.is-style-light + .salary-impact-table) {
  padding: 160px 0 var(--sp);
}

.salary-impact-table .section-head {
  position: relative;
  z-index: 2;
}

.salary-impact-table__body {
  position: relative;
}

.salary-impact-table__body:before {
  background: var(--secondary);
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 680px;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(120px);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.salary-impact-table .table {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.salary-impact-table .table_mob {
  display: none;
}

.salary-impact-table .table__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.salary-impact-table .table__col {
  background: var(--white-10);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  min-height: 56px;
  text-align: center;
  padding: 4px;
  font-weight: 300;
  font-size: 18px;
  line-height: 135%;
}

.salary-impact-table .table__col_labels {
  font: 700 16px/110% var(--default-font-family);
  background: var(--black-10);
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
}

.salary-impact-table .table__col_labels > *:not(.info) {
  text-transform: uppercase;
}

.salary-impact-table .table__col:is(.table__row:first-child .table__col:has(span:empty)) {
  opacity: 0;
}

.salary-impact-table .table__col:is(.table__row:first-child .table__col) {
  font: 500 var(--h6)/120% var(--heading-font-family);
  text-transform: uppercase;
  color: var(--bg);
}

.salary-impact-table .table__col:is(.table__row:first-child .table__col:nth-child(2)) {
  background: var(--yellow-gray-100);
}

.salary-impact-table .table__col:is(.table__row:first-child .table__col:nth-child(3)),
.salary-impact-table .table__col:is(.table_mob-last .table__row:first-child .table__col:nth-child(2)) {
  background: var(--gold);
}

.salary-impact-table .table ._checkbox {
  display: block;
  aspect-ratio: 1/1;
  width: 20px;
  background: center/contain no-repeat url("../../img/icons/table-unchecked.svg");
}

.salary-impact-table .table ._checkbox._checked {
  background: center/contain no-repeat url("../../img/icons/table-checked.svg");
}

.salary-impact-table__bottom-text {
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  margin-top: 48px;
  padding: 32px;
  background: var(--white-10);
}

@media (max-width: 1600px) {
  .salary-impact-table__body:before {
    width: 586.67px;
  }
}

@media (max-width: 1260px) {
  .salary-impact-table {
    padding: var(--sp) 0;
  }

  .salary-impact-table__body:before {
    width: 493.34px;
    filter: blur(120px);
  }

  .salary-impact-table .table_desktop {
    display: none;
  }

  .salary-impact-table .table_mob {
    display: flex;
    margin-bottom: 48px;
  }

  .salary-impact-table .table_mob-last {
    margin-bottom: 0;
  }

  .salary-impact-table .table__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .salary-impact-table .table__row:first-child {
    grid-template-columns: repeat(1, 1fr);
  }

  .salary-impact-table .table__col:is(.table__row:first-child .table__col:has(span:empty)) {
    display: none;
  }
}

@media (max-width: 760px) {
  .salary-impact-table__body:before {
    width: 400px;
    filter: blur(70px);
  }

  .salary-impact-table .table_mob {
    margin-bottom: 32px;
  }

  .salary-impact-table .table_mob-last {
    margin-bottom: 0;
  }

  .salary-impact-table .table__row {
    gap: 2px;
  }

  .salary-impact-table .table__col {
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
    min-height: 44px;
  }

  .salary-impact-table .table__col_labels {
    font-family: var(--default-font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 115%;
  }

  .salary-impact-table .table__col_labels .info__content {
    right: 50%;
    transform: translateX(50%);
  }

  .salary-impact-table .table ._checkbox {
    width: 16px;
  }

  .salary-impact-table__bottom-text {
    margin-top: 32px;
    padding: 12px;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
  }
}