.person-page {
    color: #fff;
}

.person-hero {
    position: relative;
    padding: 6.5rem 0 3rem;
    overflow: hidden;
}

.person-hero__atmosphere {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 15% 20%, rgba(229, 9, 20, 0.22), transparent 55%),
        radial-gradient(ellipse 50% 60% at 90% 10%, rgba(255, 255, 255, 0.06), transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.person-hero__inner {
    position: relative;
    z-index: 1;
}

.person-hero__grid {
    display: grid;
    grid-template-columns: minmax(180px, 260px) 1fr;
    gap: 2rem;
    align-items: center;
}

.person-hero__portrait {
    position: relative;
}

.person-hero__photo {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    display: block;
    margin: 0 auto;
}

.person-hero__title {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.person-hero__professions {
    color: var(--base-color, #e50914);
    font-weight: 600;
    margin: 0.5rem 0 0.85rem;
}

.person-hero__lead {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
    margin: 0 0 1.1rem;
    max-width: 42rem;
    text-align: justify;
    text-justify: inter-word;
}

.person-hero__meta li {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.35rem;
}

.person-hero__meta a {
    color: rgba(255, 255, 255, 0.88);
}

.person-page__body {
    padding-top: 1.5rem;
}

.person-section__title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.55rem;
}

.person-section__title::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 3rem;
    height: 2px;
    background: var(--base-color, #e50914);
    border-radius: 2px;
}

.person-section__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.85rem;
}

.person-bio {
    color: rgba(255, 255, 255, 0.88);
    line-height: 2;
    text-align: justify;
    text-justify: inter-word;
    max-width: 48rem;
}

.person-bio p {
    margin-bottom: 1rem;
    text-align: justify;
    text-justify: inter-word;
}

.person-film-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.person-film-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.person-film-card:hover {
    border-color: rgba(229, 9, 20, 0.55);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.06);
}

.person-film-card__poster {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.person-film-card__poster--empty {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.person-film-card__body {
    padding: 0.85rem 0.9rem 1rem;
}

.person-film-card__body--crew {
    min-height: 5.5rem;
}

.person-film-card__role,
.person-film-card__year {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
}

.person-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.person-gallery__item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.person-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.person-gallery__item:hover img {
    transform: scale(1.06);
}

.person-gallery__zoom {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.45));
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.person-gallery__item:hover .person-gallery__zoom {
    opacity: 1;
}

.person-faq__item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    margin-bottom: 0.65rem;
    color: rgba(255, 255, 255, 0.85);
}

.person-faq__item summary {
    cursor: pointer;
    font-weight: 600;
    color: #fff;
}

.person-faq__answer {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.person-known-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}

.person-known-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.9rem;
}

.person-directory-cta a {
    color: var(--base-color, #e50914);
    font-weight: 600;
}

.person-breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.person-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.person-breadcrumb a:hover {
    color: var(--base-color, #e50914);
}

.person-breadcrumb span {
    margin: 0 0.35rem;
}

.actors-directory__intro {
    max-width: 40rem;
    line-height: 1.7;
}

.actors-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    color: #fff;
    transition: border-color 0.2s, transform 0.2s;
}

.actors-card:hover {
    border-color: var(--base-color, #e50914);
    transform: translateY(-2px);
}

.actors-card__photo {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 0.75rem;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.actors-card__name {
    font-size: 0.95rem;
    font-weight: 600;
}

.actors-card__meta {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8rem;
}

.watch-cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 1rem;
}

.watch-cast-card {
    text-align: center;
    color: #fff;
}

.watch-cast-card__photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 0.5rem;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.watch-cast-card__name {
    font-size: 0.85rem;
    font-weight: 600;
}

.watch-cast-card__role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.watch-meta__title-primary {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.watch-meta .bilingual-label__secondary {
    font-size: 0.9rem;
}

.watch-review-card {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.watch-review-card__title {
    font-size: 1rem;
    color: #fff;
}

.watch-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    text-align: justify;
    text-justify: inter-word;
}

@media (max-width: 767.98px) {
    .person-hero {
        padding-top: 5.5rem;
    }

    .person-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .person-hero__lead {
        margin-inline: auto;
    }

    .person-hero__meta {
        display: inline-block;
        text-align: right;
    }

    .person-film-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
