
/* --- SPLIT SECTION --- */

.split-section {
    background-image: image-set(
        url('../images/buh-corp-laptop.png') 1x,
        url('../images/buh-corp-laptop@2x.png') 2x
    );
    background-repeat: no-repeat;
    background-position: calc(50% + 620px) center;
    background-size: auto calc(100% - 148px);
}

.split-section.agro-buh {
    background-image: image-set(
        url('../images/agro-buh-laptop.png') 1x,
        url('../images/agro-buh-laptop@2x.png') 2x
    );
}

.split-section .section-title {
    margin-bottom: 12px;
    text-align: left;
}

/* --- PROGRAM CAPABILITIES SECTION --- */

.program-capabilities .section-title {
    margin-bottom: 55px;
}

.program-capabilities .section-text {
    text-align: left;
    margin-bottom: 32px;
}

.program-capabilities .accordion--boxed .acc-inner {
    p, li {
        line-height: 1.52;
    }

    p:not(:last-child) {
        margin-bottom: 12px;
    }

    ul {
        padding-left: 24px;
    }

    li {
        list-style-type: initial;
        margin-bottom: 12px;
    }

    li::marker {
        font-size: 12px;
    }
}

.program-capabilities .page-button__outlined {
    margin: 55px auto 0;
}

/* --- FOR WHOM SECTION --- */

.for-whom .about__text-block {
    p {
        text-align: left;
        margin-bottom: 12px;
    }

    ul {
        padding-left: 24px;
        text-align: left;
    }

    li {
        line-height: 1.52;
        list-style-type: initial;
    }

    li:not(:last-child) {
        margin-bottom: 8px;
    }

    li::marker {
        font-size: 12px;
    }
}

.for-whom.agro-buh .about__container {
    column-gap: 40px;
}

.for-whom.agro-buh .about__image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- PROGRAMS COMPARE SECTION --- */

.programs-compare .section-title {
    margin-bottom: 55px;
}

.programs-compare__table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;

    colgroup .col-feature {
        width: 67%;
        text-align: left;
    }

    colgroup .col-plan {
        width: 11%;
    }

    thead {
        background-color: var(--white-pale-lilac);
    }

    thead th {
        position: sticky;
        z-index: 90;
        top: 90px;

        font-size: clamp(16px, 0.8936rem + 0.396vw, 20px);
        font-weight: 500;
        line-height: 1.52;
        background-color: var(--white-pale-lilac);
    }

    thead th:first-child {
        text-align: left;
    }

    tfoot {
        background-color: var(--white-muted);
    }

    tfoot td {
        font-size: 14px;
        padding: 4px;
    }

    tfoot .table-more button {
        display: block;
        margin: 0 auto;
        letter-spacing: 0.1em;
    }

    tbody th {
        background-color: var(--white-muted);
    }

    tbody th {
        font-size: clamp(0.875rem, 0.7686rem + 0.396vw, 1.125rem);
        font-weight: 400;
        line-height: 1.52;
        text-align: left;
    }

    th, td {
        padding: 16px 40px;
    }
}

.programs-compare__table tbody td[data-state="available"] {
    position: relative;
    background-color: #EBF8F0;

    &::before {
        content: '\2713';
        position: absolute;
        top: 0;
        left: 0;
        font-family: inherit;
        font-size: 24px;
        font-weight: 600;
        color: #51c280;

        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }
}

.programs-compare__table tbody td[data-state="unavailable"] {
    position: relative;
    background-color: #F2F2F2;

    &::before {
        content: '\2014';
        position: absolute;
        top: 0;
        left: 0;
        font-family: inherit;
        font-size: 24px;
        font-weight: 500;
        color: #a6a6a6;

        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }
}

/* --- @MEDIA 1200px MIN --- */

@media screen and (min-width: 1200px) {
    .split-section__content {
        max-width: 639px;
        padding-top: 74px;
        padding-bottom: 74px;
    }
}

/* --- @MEDIA 1200px MAX --- */

@media screen and (max-width: 1199px) {
    .split-section {
        padding-bottom: 474px;
        background-size: 630px 365px;
        background-position: center bottom 40px;
    }
}

/* --- @MEDIA 1023px MAX --- */

@media screen and (max-width: 1023px) {
    .for-whom.agro-buh .about__container {
        flex-direction: column;
        align-items: center;
    }

    .for-whom.agro-buh .about__image-thumb {
        border-radius: 12px;
    }

    .programs-compare__table thead th {
        top: 70px;
    }
}

/* --- @MEDIA 767px MAX --- */

@media screen and (max-width: 767px) {
    .program-capabilities .section-title {
        margin-bottom: 32px;
    }

    .program-capabilities .page-button__outlined {
        margin: 32px auto 0;
    }

    .programs-compare .section-title {
        margin-bottom: 32px;
    }

    .programs-compare__table colgroup .col-feature {
        width: 46%;
    }

    .programs-compare__table colgroup .col-plan {
        width: 18%;
    }

    .programs-compare__table th,
    .programs-compare__table td {
        padding: 10px 14px 10px 20px;
    }

    .programs-compare__table thead th:not(:first-child) {
        padding: 12px 8px;
    }
}