/*
 Theme Name: GeneratePress Child
 Theme URI: https://generatepress.com
 Description: Child theme for GeneratePress
 Author: Your Name
 Template: generatepress
 Version: 1.0
*/

/* ===== Movie Grid Layout ===== */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.movie-item {
    text-align: center;
}

.movie-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
}

.movie-item h3 {
    margin-top: 8px;
    font-size: 16px;
}