/* Person Content Type Badges */
.content-type-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.movie-image-only,
.tvshow-image-only {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.movie-image-only:hover,
.tvshow-image-only:hover {
    transform: translateY(-2px);
}

.movie-image-only img,
.tvshow-image-only img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-type-badge {
        font-size: 10px;
        padding: 3px 6px;
        top: 6px;
        right: 6px;
    }
    
    .movie-image-only img,
    .tvshow-image-only img {
        height: 200px;
    }
}
