/*
 Theme Name:   WhiteBlack Classic Child
 Theme URI:    http://example.com/whiteblack-classic-child/
 Description:  A child theme for the WhiteBlack Classic theme.
 Author:       Mitch
 Author URI:   http://example.com
 Template:     whiteblack-classic
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  whiteblack-classic-child
*/
/* Definitive style for the post meta line */
.post-meta-line {
    display: flex;         /* Activates flexbox layout */
    align-items: center; /* This is the key: vertically centers all items in the line */
    gap: 0.5em;            /* Creates a nice space between each item */
    margin-top: 15px;
}

/* Style for the author's avatar image */
.post-meta-line .avatar {
    border-radius: 50%;  /* This is the key: makes the image perfectly round */
}

/* Optional: Style for the author link */
.post-meta-line .author-name-link {
    font-weight: bold;
    text-decoration: none;
}