/* Gallery Plugin Styles */
.gallery-page {
    padding: 40px 0;
}

.galleries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 300px;
    height: 280px;
}

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

.gallery-item a {
    text-decoration: none;
    color: inherit;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #f5f5f5;
}

.no-image {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.gallery-info {
    padding: 20px;
}

.gallery-info h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.gallery-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}