h1 {
    margin-bottom: var(--sp-3);
}
p, h2, h3 {
    margin-bottom: var(--sp-2);
}
hr {
    height: 66px;
    border: none;
}
main:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, #FFF 0%, #F5F8FE 100%);
    max-height: 600px;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.summary-container {
    position: sticky;
    top: 82px;

    .summary__list {
        max-height: calc(80vh - 120px);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(0,0,0,0.3) transparent;
        transition: scrollbar-color 0.3s;
    }
    .summary__list:hover {
        scrollbar-color: rgba(0,0,0,0.6) transparent;
    }
    .summary__list::-webkit-scrollbar {
        width: 6px;
        transition: background 0.3s;
    }
    .summary__list::-webkit-scrollbar-track {
        background: transparent;
    }
    .summary__list::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.3);
        border-radius: 4px;
    }
    .summary__list:hover::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.6);
    }

    .summary {
        padding-right: 15px;

        .summary__title {
            font-size: 18px;
            font-weight: 600;
            line-height: normal;
        }

        ul {
            li {
                a {
                    display: block;
                    text-decoration: none;
                    width: 100%;
                    padding: 12px 9px;
                    border-radius: 6px;
                    background-color: transparent;
                    color: var(--color-blue-600);
                    font-size: 14px;
                    font-weight: 500;
                    line-height: normal;
                    transition: background-color 0.3s ease;

                    &.navigation-item--active {
                        background-color: var(--color-light);
                    }
                }
            }
        }
    }
}

.block-list {
    padding: var(--sp-4);

    .block-list-item {
        margin-bottom: var(--sp-2);
        display: flex;
        gap: var(--sp-2);
        align-items: baseline;

        svg {
            min-width: var(--sp-2);
            min-height: var(--sp-2);
        }
    }
}
@media (max-width: 768px) {
    .block-list {
        padding: var(--sp-2);
    }
}

.content-img {
    border-radius: var(--sp-2);
    overflow: hidden;
    margin-bottom: var(--sp-2);
}

.table-page {
    background-color: var(--color-light);
    border: 1px solid var(--color-blue-50);
    border-radius: var(--sp-2);
    padding: 20px 35px;
    margin-bottom: 30px;
}
.table-page tr:first-child td,
.table-page tr:first-child td span {
    font-weight: 600 !important;
}
.table-page table {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
}
.table-page table tr {
    border-bottom: 1px solid var(--color-blue-50);
}
.table-page table tr:last-child {
    border-bottom: 0;
}
.table-page table td {
    padding: 11px 0;
}
.table-page table tr:last-child td {
    padding-bottom: 0;
}
.table-page table td:not(:first-child) {
    text-align: center;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;

    li {
        position: relative;
        padding: 0 0 0 24px;
        margin-bottom: 8px;
        font-size: 16px;
        line-height: 1.5;
        transition: transform 0.2s ease;

        &:before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 14px;
            height: 16px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='16' viewBox='0 0 14 16' fill='none'%3E%3Cpath d='M13.7063 8.70615C14.0969 8.31553 14.0969 7.68115 13.7063 7.29053L8.70625 2.29053C8.31563 1.8999 7.68125 1.8999 7.29063 2.29053C6.9 2.68115 6.9 3.31553 7.29063 3.70615L10.5875 6.9999H1C0.446875 6.9999 0 7.44678 0 7.9999C0 8.55303 0.446875 8.9999 1 8.9999H10.5844L7.29375 12.2937C6.90313 12.6843 6.90313 13.3187 7.29375 13.7093C7.68438 14.0999 8.31875 14.0999 8.70938 13.7093L13.7094 8.70928L13.7063 8.70615Z' fill='%234955C3'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            transition: all 0.2s ease;
        }

    }
}