/**
 * Person Page Styles
 */

.mvt-single-person {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.mvt-person-hero {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.mvt-person-poster {
    position: relative;
}

.mvt-person-poster img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Person Info */
.mvt-person-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mvt-person-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--mvt-text-color);
    line-height: 1.2;
}

.mvt-person-aka,
.mvt-person-birthday,
.mvt-person-birthplace,
.mvt-person-known-for {
    color: var(--mvt-text-secondary);
    font-size: 1rem;
}

.mvt-person-aka strong,
.mvt-person-birthday strong,
.mvt-person-birthplace strong,
.mvt-person-known-for strong {
    color: var(--mvt-text-color);
    margin-right: 8px;
}

.mvt-person-known-for {
    font-size: 1.1rem;
}

.mvt-person-known-for span {
    color: var(--mvt-primary-color);
    font-weight: 600;
}

.mvt-person-biography {
    margin-top: 15px;
    line-height: 1.6;
    color: var(--mvt-text-secondary);
}

/* Filmography Sections */
.mvt-filmography-section {
    margin: 50px 0;
}

.mvt-filmography-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mvt-filmography-slider::-webkit-scrollbar {
    display: none;
}

.mvt-filmography-slider .mvt-movie-card {
    flex: 0 0 auto;
    width: 200px;
}

/* Responsive */
@media (max-width: 768px) {
    .mvt-person-hero {
        grid-template-columns: 1fr;
    }
    
    .mvt-person-poster {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .mvt-person-name {
        font-size: 2rem;
    }
}

/* Person placeholder image */
.mvt-placeholder-person {
    width: 100%;
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, var(--mvt-card-bg) 0%, var(--mvt-border-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.mvt-placeholder-initial {
    font-size: 8rem;
    font-weight: 700;
    color: var(--mvt-text-muted);
    text-transform: uppercase;
}

/* Fix slider arrows visibility */
.mvt-filmography-section .mvt-slider-wrapper {
    position: relative;
}

.mvt-filmography-section .mvt-slider-arrow {
    z-index: 10;
}
