/* 1. Container Utama & Grid */
.phocagallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

/* 2. Styling Frame Gambar (Item) */
.phocagallery-box-file {
    background-color: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
    padding: 10px !important;
    overflow: hidden;
    width: auto !important;
    height: auto !important;
}

/* 3. Efek Hover - Memberikan kesan interaktif */
.phocagallery-box-file:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
    border-color: #007bff !important;
}

/* 4. Styling Gambar */
.phocagallery-box-file img {
    border-radius: 4px;
    transition: opacity 0.3s;
    display: block;
    margin: 0 auto;
}

/* 5. Overlay Judul & Keterangan */
.phocagallery-box-file .phocagallery-box-file-first {
    position: relative;
    background: none !important;
}

/* 6. Memperbaiki Tampilan Teks di Bawah Gambar */
.phocagallery-box-file center {
    margin-top: 10px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

/* 7. Icon Folder (Warna Kuning Khas) */
.phocagallery-box-file img[src*="folder"] {
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
}

/* 8. Responsivitas (Agar Bagus di HP) */
@media (max-width: 768px) {
    .phocagallery-box-file {
        width: calc(50% - 20px) !important;
        margin: 0 !important;
    }
}