.atom_card{
    display: flex;
    flex-direction: column;

    border-radius: 14px;
    padding: 13px 14px;
    gap: 8px;

    & icon{
        width: 30px;
        height: 30px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    & .atom_card_text{
    
        & h4{
            display: block;
            font-size: 0.78rem;
            font-weight: 600;
            line-height: 1.3;
            margin-top: .5rem;
        }
        
        & p{
            margin-top: .3rem;
            font-size: 0.7rem;
            font-weight: 300;
            line-height: 1.45;
            text-align: start;
        }
    }

    @media (width > 670px){
        flex-direction: row;
        gap: 1rem;
    }
}

.atom_card--cream{
    background: #fff;
    border: var(--border-default);

    & icon{
        color: var(--cherry);
        background: var(--cherry-light);
    }

    & .atom_card_text{
    
        & h4{
            color: var(--text);
        }
    }

    @media (width > 670px){
        display: none;
    }
}

.atom_card--dark{
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);

    & icon{
        background: rgba(139, 26, 43, 0.4);
        border: 1px solid rgba(139, 26, 43, 0.6);
        box-shadow: 0 4px 14px rgba(139, 26, 43, 0.25);
        color: #fff;
    }

    & .atom_card_text > h4{
        margin-top: 0;
        color: #fff;
    }

    & .atom_card_text{
    
        & h4{
            color: #fff;
        }
    }
}