/*
Theme Name: drum-bb-child
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 

.galleries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: #fff;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-thumb {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.gallery-info {
    padding: 1rem;
    text-align: center;
}

.gallery-info h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.3;
}
