.compensation__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding-inline: .8rem;
    font-size: var(--heading6FontSize);
    color: var(--footerBackgroundColor);
    border: 1px solid var(--footerBackgroundColor);
    background-color: transparent;
}

.compensation__title.--isActive,
.compensation__title:hover {
    color: var(--footerLinkColor);
    border-color: var(--footerBackgroundColor);
    background-color: var(--footerBackgroundColor);
}

.compensation__title::after,
.compensation__title.--isActive::after {
    content:'\e835';
    font-family: var(--iconFont);
    transition: all 100ms ease-in-out;
}

.compensation__title.--isActive::after {
    transform: rotate(45deg);
}

.has-js .compensation__content {
    max-height: 0;
    overflow: hidden;
}

.has-js .compensation__title.--isActive + .compensation__content {
    max-height: fit-content;
}

.compensation__table {
    width: 100%;
    margin-block: .5rem 1.6rem;
    overflow: hidden;
    border-collapse: collapse;
}

.compensation__tableHead {
    font-weight: bold;
    text-align: left;
}

tbody tr:nth-child(odd) {
    background-color: var(--baseLight500);
}

.compensation__table .compensation__tableCell {
    width: 50%;
    padding: .4em .5em;
}
