.protect-block {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12rem;
    padding: 24rem 0;
}

.protect-block__main-title {
    grid-column: 1/-1;
}

.protect-block__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: var(--color-white);
    border-radius: 16rem;
    padding: 24rem;
}

.protect-block__title {
    font-weight: 700;
    font-size: 22rem;
    position: relative;
    padding-left: 39rem;
}

.protect-block__title:before {
    content: '';
    width: 32rem;
    height: 32rem;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background: url('../../img/protect-block/protect.svg') center/contain no-repeat;
}

.protect-block__title br {
    display: none;
}

.protect-block__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8rem;
    margin: 12rem 0 auto;
}

.protect-block__list li {
    position: relative;
    padding-left: 36rem;
}

.protect-block__list li:before {
    content: '';
    width: 24rem;
    height: 24rem;
    position: absolute;
    top: -2rem;
    left: 0;
    background: url('../../img/protect-block/check.svg') center/contain no-repeat;
}

.protect-block__button {
    width: 100%;
    margin-top: 12rem;
}

@media screen and (min-width: 768px) {
    .protect-block {
        background-color: var(--color-gray-100);
        border-radius: 24rem;
        padding: 64rem 32rem;
    }

    .protect-block__button {
        max-width: 328rem;
    }

    .protect-block-section {
        background-color: transparent;
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .protect-block {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        gap: 48rem 32rem;
    }

    .protect-block__content {
        padding: 32rem;
    }

    .protect-block__title {
        padding-left: 51rem;
    }

    .protect-block__title {
        font-size: 32rem;
    }

    .protect-block__title br {
        display: block;
    }

    .protect-block__list {
        gap: 16rem;
        margin-top: 48rem;
    }

    .protect-block__button {
        margin-top: 32rem;
    }
}
