.tgb-gallery-section {
    text-align: center;
    padding: 40px 20px;
    background: #fafafa;
}

.tgb-gallery-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 0 10px;
}

.tgb-gallery-subtitle {
    color: #777;
    margin: 0 0 25px;
    font-size: 16px;
}

.tgb-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.tgb-gallery-item {
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.tgb-gallery-item:hover {
    transform: scale(1.04);
}

.tgb-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.tgb-load-more {
    margin-top: 25px;
    background: #388e3c;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tgb-load-more:hover:not(:disabled) {
    background: #2e7d32;
}

.tgb-load-more:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .tgb-gallery-title {
        font-size: 24px;
    }
    .tgb-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}