/* Shared Home poster cards used by the hero and title rows. */

.home-title-poster {
    display: grid;
    gap: 8px;
    width: 126px;
    flex: 0 0 auto;
    text-decoration: none;
    outline: none;
}

.home-title-poster img {
    display: block;
    width: 100%;
    /* Scale the intrinsic TMDB dimensions instead of keeping height="278" fixed. */
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 14px;
    background: #160f0c;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.32);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.home-title-poster span {
    color: #d9cec7;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.home-title-poster:hover span,
.home-title-poster:focus-visible span {
    color: #ff7a1a;
}

.home-title-poster:hover img,
.home-title-poster:focus-visible img {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 122, 26, 0.42);
}

.home-title-poster.is-hero-poster {
    width: 124px;
}

.home-title-poster.is-hero-poster span {
    display: none;
}


@media (max-width: 640px) {
    .home-title-poster {
        width: 104px;
    }

    .home-title-poster.is-hero-poster {
        width: 118px;
    }
}

@media (max-width: 420px) {
    .home-title-poster.is-hero-poster {
        width: 104px;
    }
}
