#cms div#center_column a {
    color: #2b0d2e;
}

body:has(.how-card) #center_column {
    @media screen and (min-width: 768px) {
        font-size: 14px;
    }

    @media screen and (min-width: 1000px) {
        font-size: 18px;
    }

    h2 {
        font-size: 184%;
        font-family: Playfair Display;
        font-weight: 900;

        background: linear-gradient(180deg, #CE9647 0%, #F7EBDC 100%);
        background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke: 1.5px #2B0D2E;
        text-transform: none;
    }

    .how-card h3 {
        font-size: 184% !important;
        font-family: Playfair Display;
        font-weight: 700;
        text-transform: none;
    }
}

.how-cards {
    gap: 50px;

    @media screen and (min-width: 1320px) {
        gap: 86px;
    }
    
    @media screen and (max-width: 767px) {
        flex-direction: column;
        align-items: center;
    }
}

.how-card {
    background-color: rgba(252, 249, 242, 1);
    max-width: 500px;
    
    @media screen and (min-width: 768px) {
        max-width: 340px;
    }

    @media screen and (min-width: 1000px) {
        width: 618px;
        max-width: none;
    }

    ol {
        list-style: none;
        counter-reset: item;
        padding-left: 0;

        li {
            counter-increment: item;
            margin-bottom: 5px;
            /* display: grid; */
            grid-template-columns: 40px auto;
            font-family: Playfair Display;
            font-weight: 500;
            margin-bottom: 15px;
            line-height: 1.2;

            @media screen and (min-width: 1320px) {
                margin-bottom: 33px;
                /* grid-template-columns: 80px auto; */
            }
        }

        li:before {
            margin-right: 10px;
            content: counter(item);
            text-align: center;
            display: inline-block;
            color: #2B0D2E;
            font-size: 184%;
            font-weight: 700;
            line-height: 0.4;
        }
    }
}