section.main-content-list {
    margin-top: -150px;

    @media (max-width: 576px) {
        margin-top: -5px;
    }

    & .list-cover {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin: 0px -30px;

        @media (max-width: 576px) {
            grid-template-columns: repeat(2, 1fr);
            margin: 0px -10px;
            gap: 10px;
        }

        & .list-item-cover {
            /*background: url(images/main-list-bg.png) center top no-repeat;*/
            background-size: contain;
            /*11111111111111111111*/
            /*aspect-ratio: 424/299;*/

            @media (max-width: 576px) {
                background-size: 105%;
            }

            & .list-item {
                background-color: #fff;
                box-shadow: 4px 4px 12px 0px rgba(34, 60, 80, 0.2);
                border-radius: 15px;
                padding: 30px 25px 25px 30px;
                position: relative;
                height: 100%;

                @media (max-width: 576px) {
                    padding: 15px 10px 20px 20px;
                }

                & a.title {
                    font-weight: 700;
                }
                & ul {
                    list-style-type: disc;
                    padding-left: 30px;
                    padding-top: 10px;

                    @media (max-width: 576px) {
                        list-style-type: disc;
                        padding-left: 20px;
                        padding-top: 5px;
                    }

                    & li {
                        margin: 0;
                        padding: 0;
                        line-height: 130%;
                        &:last-child {
                            max-width: 85%;
                        }
                    }
                }
                & a.bottom {
                    position: absolute;
                    width: 29px;
                    height: 29px;
                    background: url(images/detail-link-bg.png) center no-repeat;
                    bottom: 28px;
                    right: 32px;

                    @media (max-width: 576px) {
                        width: 18px;
                        height: 18px;
                        background-size: contain;
                        bottom: 9px;
                        right: 12px;
                    }
                }
            }
        }
    }

    & .list-bottom-cover {
        margin-top: -265px;
        @media (max-width: 576px) {
            margin-top: -135px;
            flex-direction: column-reverse;
            display: flex;
        }

        & .list-bottom-one {
            background-color: var(--primary);
            font-family: Golos;
            font-weight: 500;
            font-size: 60px;
            line-height: 65px;
            letter-spacing: -2px;
            color: #fff;
            width: 65.5%;
            margin-left: 35%;
            padding: 40px;
            padding-bottom: 0;
            border-radius: 10px 10px 0px 0px;
            position: relative;

            @media (max-width: 576px) {
                width: 100%;
                margin-left: 0;
                font-size: 20px;
                padding: 10px;
                line-height: normal;
                border-radius: 10px 0 10px 10px;
                position: relative;
                letter-spacing: -1px;
                &:after {
                    display: none;
                }
                &:before {
                    display: none;
                }
            }

            &:after {
                content: "";
                position: absolute;
                width: 10px;
                height: 10px;
                background-color: var(--white);
                border-radius: 0 0 10px 0;
                left: -10px;
                bottom: 0;
            }
            &:before {
                content: "";
                position: absolute;
                width: 10px;
                height: 10px;
                background-color: var(--primary);
                left: -10px;
                bottom: 0;
            }
        }

        & .list-bottom-two {
            display: flex;
            background-color: var(--primary);
            padding: 30px 50px 50px;
            margin: 0 -6px;
            border-radius: 10px 0 10px 10px;
            font-weight: 700;
            gap: 60px;

            & div {
                min-width: 200px;
                @media (max-width: 576px) {
                    min-width: auto;
                }

                & span.num {
                    font-weight: 500;
                    font-size: 60px;
                    display: inline-block;
                    width: 100%;
                    @media (max-width: 576px) {
                        font-size: 27px;
                    }
                }
            }

            @media (max-width: 576px) {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                font-size: 10px;
                width: 48%;
                margin-left: 52%;
                padding: 10px;
                gap: 10px;
                line-height: normal;
                border-radius: 10px 10px 0px 0px;
                position: relative;
                &:after {
                    content: "";
                    position: absolute;
                    width: 10px;
                    height: 10px;
                    background-color: var(--white);
                    border-radius: 0 0 10px 0;
                    left: -10px;
                    bottom: 0;
                }
                &:before {
                    content: "";
                    position: absolute;
                    width: 10px;
                    height: 10px;
                    background-color: var(--primary);
                    left: -10px;
                    bottom: 0;
                }
            }
        }
    }
}