.egv-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
}

.egv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.egv-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.egv-card:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.egv-card img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #eee;
}

.egv-card h4 {
    margin: 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.egv-load-wrapper {
    text-align: center;
    margin-top: 30px;
}

#egv-load-more {
    background: #111;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#egv-load-more:hover {
    background: #333;
}

@media (max-width: 768px) {
    .egv-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}
