/* =========================
   GRID RESPONSIVE
========================= */
.jn-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
    margin:20px 0;
}

/* Laptop */
@media (max-width: 1200px){
    .jn-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px){
    .jn-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* HP */
@media (max-width: 576px){
    .jn-grid{
        grid-template-columns:1fr;
    }
}

/* =========================
   CARD STYLE (clean, modern)
========================= */
.jn-card{
    background:#fff;
    border-radius:10px; /* tidak terlalu rounded */
    overflow:hidden;
    border:1px solid #eee;
    box-shadow:0 2px 10px rgba(0,0,0,.06);
    transition:all .25s ease;
    display:flex;
    flex-direction:column;
}

.jn-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 18px rgba(0,0,0,.12);
}

/* =========================
   POSTER (FIX PORTRAIT)
========================= */
.jn-poster{
    width:100%;
    aspect-ratio: 2 / 3; /* FIX UTAMA: tidak jadi kotak */
    object-fit:cover;
    display:block;
    background:#f5f5f5;
}

/* =========================
   CONTENT
========================= */
.jn-content{
    padding:14px;
}

.jn-title{
    font-size:17px;
    font-weight:600;
    margin-bottom:8px;
    color:#111;
    line-height:1.3;
}

/* Badge rating */
.jn-badge{
    display:inline-block;
    font-size:12px;
    padding:3px 8px;
    border-radius:6px;
    background:#f1f1f1;
    color:#333;
    margin-bottom:10px;
}

/* Meta text */
.jn-meta,
.jn-price,
.jn-actors{
    font-size:13px;
    color:#555;
    margin-bottom:6px;
    line-height:1.4;
}

.jn-price{
    color:#1b7f3a;
    font-weight:600;
}

/* =========================
   SHOWTIME BUTTONS
========================= */
.jn-showtimes{
    margin-top:10px;
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}

.jn-time{
    background:#e86424;
    color:#fff;
    font-size:11px;
    padding:4px 8px;
    border-radius:6px;
    font-weight:500;
}

/* =========================
   MOBILE ADJUST
========================= */
@media (max-width: 576px){
    .jn-title{
        font-size:16px;
    }
}