#how-to-archive{
    background: #fff;
    color: var(--Black, #000);
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 325;
    line-height: 18.8px; /* 134.286% */
    border-top-left-radius: 40px;
}

#how-to-archive .content{
    width: 100%;
    max-width: 1032px;
    margin:0 auto;
    display: flex;
    text-align: left;
    gap: 19%;
    padding: 81px 0 40px;
}

#how-to-archive .col-left{
    width: 50%;
}

#how-to-archive h2{
    font-family: Flaviotte;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
}

#how-to-archive .col-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

#how-to-archive a{
    display: block;
    border-bottom: 1px solid;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;   
    padding: 14px 60px 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#how-to-archive a:after{
    content: '';
    display: block;
    background: url('/wp-content/themes/wpadc_archive/images/right-arrow.svg');
    width: 10px;
    height: 10px;
    background-size: contain;
}

@media screen and (max-width: 768px) {
    #how-to-archive .content{
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
        gap: 20px;
    }

    #how-to-archive .content > div{
        width: 100%;
    }
}