.pane-wrapper{
    padding: 2.4rem 3.2rem;
    border: 1px solid var(--c-border-grey);
    box-shadow: 0 1px 10px rgba(0,0,0,.04);
}
.statement__header {
    border-bottom: 1px solid var(--c-grey-opacity);
    padding-bottom: 2.4rem;
    padding-top: .8rem;
    margin-bottom: 2.4rem;
}

.statement__title {
    font-size: 1.8rem;
    line-height: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.statement__text strong {
    font-weight: var(--fw-medium);
    color: var(--c-secondary)
}

.statement__text {
    font-size: 1.4rem;
    line-height: 1.54rem;
    color: var(--c-dark-grey);
    margin-bottom: 1.2rem;
}

.statement__text:last-child {
    margin-bottom: 0;
}
.table__header{
    margin-bottom: 1.6rem;
}

.statement__tabs{
    border-radius: 4px 4px 0 0 ;
    background-color: var(--c-white);
}
.nav__item{
    padding: 1.6rem 2.4rem;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}
.nav__item.active{
    border-bottom: 2px solid var(--c-primary);
}

@media (max-width: 992px) {
    .statement__text > strong {
        display: block;
    }
    .statement__text {
       line-height: 2.5rem;
       margin-bottom: 6px;
    }
    .table__header .statement__text > strong {
        display: inline-block;
    }
    .table__header {
        flex-wrap: wrap;
    }
    .table__header .header__wrapper {
        margin-top: 6px;
    }
    .table__header .header__wrapper.sm-12 {
        width: 100%;
    }
    .table__header .header__wrapper:first-child {
        margin-top: 0px;
    }
}