/* Author meta layout structure */
.post-meta {
    position: relative;
    width: 100%;
}

.profile-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.profile-container {
    display: flex;
    align-items: center;
}

/* Author info section styling */
.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-info .author-avatar {
    display: block;
    line-height: 0;
}

.author-info .profile-text {
    display: flex;
    flex-direction: column;
}

.author-info .name {
    font-weight: 600;
}

.author-info .name a {
    color: #000;
    text-decoration: none;
}

.author-info .name a:hover {
    color: #000;
}

.author-info .published {
    color: #666;
    font-size: 0.9em;
}

/* Comment icon styling */
.meta-actions {
    margin-left: auto;
    padding-left: 20px;
}

.netxclusive-comments-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.netxclusive-comments-cta:hover {
    color: #000;
}

/* Also make author name and comment icon turn black when hovering the whole post-meta area */
.post-meta:hover .author-info .name a,
.post-meta:hover .netxclusive-comments-cta {
    color: #000;
}

.netxclusive-svg-icon-container {
    display: flex;
}

.comment-icon {
    fill: currentColor;
    width: 24px;
    height: 24px;
}