Move Date/Author to right of Title

To move Date/Author to right of Title, like this

You can use this CSS code

@media screen and (min-width:768px) {
[class*="card-content"] {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: space-between;
}
/* title */
[class*="CardContentTitle"] {
    order: 1;
    flex: 0 0 65% !important;
}
/* Date - Author */
[class*="card-content"]>div:last-child {
    order: 2;
    flex: 0 0 30% !important;
    text-align: right;
}
/* Excerpt */
[class*="CardContentTitle"]+div {
    order: 3;
}
}