/* Author Page Fixes */

/* Fix About button in author card */
.author-meta-modern .meta-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 100px;
    text-align: center;
}

.author-meta-modern .meta-item span {
    display: inline-block;
}

/* Ensure the entire button area is clickable */
.author-meta-modern a.meta-item {
    cursor: pointer;
    user-select: none;
}

/* Fix hover state - override the conflicting styles from author.hbs */
.author-meta-modern .meta-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #1F5FBD 0%, #174A94 100%) !important;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: -1;
}

.author-meta-modern .meta-item:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
