.elementor-12895 .elementor-element.elementor-element-d17854e{--display:flex;}.elementor-12895 .elementor-element.elementor-element-1df7cde.elementor-element{--align-self:center;}/* Start custom CSS for html, class: .elementor-element-1df7cde *//* =========== GRID CONTAINER =========== */
.flipbook-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 20px;
}

/* Responsif */
@media (max-width: 1200px) {
    .flipbook-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 992px) {
    .flipbook-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .flipbook-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .flipbook-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* =========== CARD STYLE =========== */
.flipbook-item {
    text-align: center;
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flipbook-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

/* =========== TITLE =========== */
.flipbook-title {
    margin-top: 12px;
    font-size: 15px;
    color: #003366;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* =========== DFLIP WRAPPER (THUMBNAIL) =========== */
.flipbook-item .dflip-wrapper {
    background: transparent !important;
    border-radius: 10px;
    overflow: hidden;
}

/* Thumbnail seragam */
.flipbook-item img {
    width: 100%;
    height: 180px;      /* tinggi seragam */
    object-fit: cover;  /* crop rapi */
    border-radius: 6px;
}

/* Hilangkan judul bawaan pada cover flipbook */
.df-book-cover .df-book-title {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Menghapus ruang kosong sisa judul */
.df-book-cover {
    padding-bottom: 0 !important;
}/* End custom CSS */