/* Author card portrait photos */
.author-avatar-photo {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(145deg, #93c5fd 0%, #c4b5fd 100%);
}

.author-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.35s ease;
}

.author-card:hover .author-photo {
    transform: scale(1.05);
}

.author-avatar-photo .status-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
}

.author-avatar-photo .quick-actions {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
}
