/* ================================================================
   OBITUARY GALLERY
   ================================================================ */

.gallery-card {
    overflow: hidden;
}

/* ================================================================
   GALLERY GRID
   ================================================================ */

.obituary-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ================================================================
   GALLERY IMAGE
   ================================================================ */

.obituary-gallery-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    transition: 0.4s ease;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

.obituary-gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ================================================================
   EMPTY STATE
   ================================================================ */

.gallery-empty-state {
    grid-column: 1 / -1;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 60px 20px;
    text-align: center;
}

.gallery-empty-state i {
    font-size: 45px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.gallery-empty-state p {
    color: #64748b;
    font-size: 16px;
    margin: 0;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 992px) {

    .obituary-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 576px) {

    .obituary-gallery-grid {
        grid-template-columns: 1fr;
    }

    .obituary-gallery-grid img {
        height: 220px;
    }

}