.bahan-ibadah {
    width: 100%;
    min-height: 100vh;
    height: auto;
    padding-top: 70px;
    background-color: #f5f5f7;
}

#pdfSection {
    width: 100%;
    min-height: 100vh;
    background: #111;
}

#pdf-viewer {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 10px 0;
}

#pdf-viewer canvas {
    display: block;
    margin: 10px auto;
    background: white;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}

/* disable selection */
#pdfSection * {
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto;
}

@media (min-width: 800px) {

    .bahan-ibadah,
    .bahan-ibadah2 {
        padding-top: 70px;
    }
}

@media (max-width: 800px) {

    .bahan-ibadah,
    .bahan-ibadah2 {
        padding-top: 50px;
    }
}

/* bahan ibadah */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}

.list-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s;
    cursor: pointer;
}

@media (min-width: 768px) {
    .list-item {
        flex-direction: row;
        align-items: stretch;
    }
}

.list-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.item-image {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .item-image {
        width: 300px;
        height: auto;
    }
}

.item-image img {
    width: 100%;
    height: auto;
    display: block;
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* center vertikal */
    align-items: flex-start;
    /* rata kiri */
}

.item-category {
    color: #ff6b35;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.item-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.item-description {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.item-badge {
    display: inline-block;
    background: #ffe5d0;
    color: #f97316;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.item-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #6b7280;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-icon {
    width: 16px;
    height: 16px;
}