/**
 * 统一布局规范 — 与 style.css 配合，仅保留海报尺寸等补充规则
 */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.home-movie-poster,
.order-card-pic,
.schedule-film-poster,
.film-detail-poster,
.movie-poster {
    aspect-ratio: var(--poster-ratio);
    height: auto;
    object-fit: cover;
}

.pay-movie-poster,
.oc-movie-poster {
    aspect-ratio: var(--poster-ratio);
    height: auto;
    object-fit: cover;
}

.cinema-hero-poster {
    object-fit: cover;
    border-radius: 12px;
}

@media (min-width: 769px) {
    .home-movie-poster {
        width: 110px !important;
        height: 154px !important;
    }

    .order-card-pic {
        width: 72px !important;
        height: 100px !important;
    }

    .pay-movie-poster,
    .oc-movie-poster {
        width: var(--poster-w-xl);
    }
}
