/* ============ SIMPLIFIED GALLERY CUSTOM LAYOUTS ============ */

/* Hero Banner */
.gallery-hero-banner {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.gallery-hero-banner h1 {
    color: #fff;
    font-size: 2.2rem;
    margin: 0;
}

/* Breadcrumbs */
.breadcrumb-holder {
    padding: 20px 0;
    font-size: 0.88rem;
    color: var(--muted);
    font-family: 'Manrope', sans-serif;
}

.breadcrumb-holder a {
    color: var(--blue);
    font-weight: 500;
}

.breadcrumb-holder span {
    margin: 0 8px;
    color: #cbd5e1;
}

/* Photo Grid Layout */
.gallery-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 30px 0 60px 0;
}

.gallery-card-item {
    background: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card-item:hover {
    transform: translateY(-5px);
}

/* Image container with 12-16px rounded corners */
.image-box {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card-item:hover .image-box img {
    transform: scale(1.05);
}

/* Caption box underneath */
.caption-box {
    padding: 12px 4px 4px 4px;
}

.caption-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--blue-dark);
    margin: 0;
    line-height: 1.4;
}

/* Empty State */
.empty-state-block {
    text-align: center;
    padding: 80px 0;
    color: var(--muted);
}

.empty-state-block i {
    font-size: 3rem;
    color: var(--blue-tint);
    margin-bottom: 12px;
}

.empty-state-block p {
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .gallery-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .gallery-hero-banner h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
