/* --- PERBAIKAN TOTAL: TATA LETAK + LINK BISA DIKLIK --- */
.main {
    max-width: 1000px;
    margin: 0 auto;
}

.post-entry, .first-entry {
    display: flex !important;
    flex-direction: row !important;
    position: relative; /* Penting untuk posisi link */
    gap: 25px;
    padding: 20px !important;
    align-items: flex-start;
    background: var(--entry);
    border-radius: 12px;
    margin-bottom: 25px;
    transition: background 0.2s;
}

/* Link transparan yang menutupi seluruh area agar bisa diklik */
.entry-link {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Naikkan ke paling atas */
    text-indent: -9999px; /* Sembunyikan teks default link jika ada */
}

/* Bungkus Konten di Kanan Gambar */
.entry-header, .entry-content, .entry-footer {
    width: 100%;
    z-index: 1; /* Di bawah link agar tidak menghalangi klik */
}

.entry-header h2 {
    font-size: 1.4rem !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.3;
}

.entry-cover {
    flex-shrink: 0;
    width: 180px !important;
    margin: 0 !important;
    z-index: 1;
}

.entry-cover img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover;
    border-radius: 8px;
}

/* --- EPISODE GRID --- */
ul.ep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
}

/* --- MOBILE OPTIMIZATION (HP) --- */
@media screen and (max-width: 700px) {
    .post-entry, .first-entry {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }
    
    .entry-cover {
        width: 140px !important;
        margin-bottom: 15px !important;
    }

    .entry-cover img {
        height: 200px !important;
    }

    .entry-header h2 {
        font-size: 1.2rem !important;
    }
}