.guide-hero {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0c121c;
}

.guide-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.guide-hero--tiles {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
}

.guide-hero--tiles img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.8);
}

.guide-introduction {
    width: 100%;
    margin-right: auto;
    margin-bottom: 4rem;
    margin-left: auto;
}

.guide-movies {
    width: 100%;
    display: grid;
    gap: 2rem;
    margin: 0 auto 5rem;
}

.guide-movie {
    max-width: none;
    margin: 0;
    padding: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e7ee;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(20, 31, 48, .07);
}

.guide-movie-media {
    display: grid;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
    gap: 20px;
}

.guide-movie-poster {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 11px;
}

.guide-movie-trailer {
    min-height: 300px;
    overflow: hidden;
    border-radius: 11px;
    background: #111827;
}

.guide-movie-trailer iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
}

.guide-movie-trailer--empty {
    display: grid;
    place-content: center;
    padding: 1rem;
    color: #9ca3af;
    text-align: center;
}

.guide-movie-copy {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.guide-movie-order {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    background: var(--accent, #c93632);
    color: #fff;
    font-weight: 900;
}

.guide-movie-year {
    margin: 0 0 4px;
    color: var(--accent, #c93632);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.guide-movie h2 {
    margin: 0 0 10px;
    color: var(--header-bg, #1c2636);
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.2;
}

.guide-movie h2 a:hover {
    color: var(--accent, #c93632);
}

.guide-movie-copy p {
    margin: 0;
    color: #334155;
    font-size: 1rem;
    line-height: 1.7;
}

.guide-movie-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid #e2e7ee;
}

.guide-review-link {
    box-sizing: border-box;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: .62rem .95rem;
    border-radius: 8px;
    background: #2563eb;
    color: #fff;
    font-size: .83rem;
    font-weight: 750;
}

.guide-review-link:hover {
    background: #1d4ed8;
    color: #fff;
}

.guide-movie-affiliate,
.guide-movie-affiliate * {
    box-sizing: border-box;
}

.guide-movie-affiliate {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
}

.guide-movie-affiliate[hidden] {
    display: none !important;
}

.guide-movie-affiliate .amazon-affiliate-eyebrow {
    display: none;
}

.guide-movie-affiliate .amazon-affiliate-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .55rem;
}

@media (max-width: 700px) {
    .guide-introduction {
        margin-bottom: 2.8rem;
    }

    .guide-movies {
        gap: 1.4rem;
    }

    .guide-movie {
        padding: 13px;
        border-radius: 13px;
    }

    .guide-movie-media {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 11px;
    }

    .guide-movie-trailer,
    .guide-movie-trailer iframe {
        min-height: 190px;
    }

    .guide-movie-copy {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 10px;
    }

    .guide-movie-order {
        width: 34px;
        height: 34px;
    }

    .guide-movie-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .guide-review-link {
        width: 100%;
    }

    .guide-movie-affiliate {
        width: 100%;
    }

    .guide-movie-affiliate .amazon-affiliate-actions {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .guide-movie-affiliate .amazon-affiliate-link {
        width: 100%;
    }
}
