/* Style for the Meta Info container */
.info {
    display: flex;
    align-items: center;
    font-family: 'Helvetica', sans-serif;
    font-size: 14px; /* Adjust size as needed */
    color: #737373; /* Gray color similar to Medium */
    margin-bottom: 20px; /* Spacing below the meta info */
}

/* Style for Author Avatar */
.info .avatar {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

/* Style for the Author Name */
.info .author-name {
    font-weight: bold;
    margin-right: 5px;
}

/* Style for the Date and Reading Time */
.info .date,
.info .reading-time {
    margin-right: 15px;
}

/* Style for separators */
.info .separator {
    margin: 0 5px;
}

/* Example hover effect for the author name */
.info .author-name:hover {
    color: #1a73e8; /* Light blue for hover effect */
    text-decoration: underline;
}
