/* Default 3-column grid */
.pulsewave-event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pulsewave-event-item {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
}

.pulsewave-event-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.pulsewave-event-item h3 a {
    color: #333;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .pulsewave-event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pulsewave-event-grid {
        grid-template-columns: 1fr;
    }
}