.nve-public-events {
    position: relative;
    clear: both;
    margin: 24px auto 48px;
    max-width: 1200px;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
}

.nve-public-events__title {
    margin: 0 0 20px;
    font-size: 1.75rem;
}

.nve-public-events__empty {
    margin: 0;
    color: #6b7280;
}

.nve-public-events__grid {
    position: relative;
    clear: both;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.nve-event-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.nve-event-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f3f4f6;
}

.nve-event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nve-event-card__body {
    padding: 18px;
}

.nve-event-card__vendor {
    margin: 0 0 6px;
    font-size: 0.85rem;
    color: #6b7280;
}

.nve-event-card__title {
    margin: 0 0 8px;
    font-size: 1.15rem;
    line-height: 1.35;
}

.nve-event-card__title a {
    color: inherit;
    text-decoration: none;
}

.nve-event-card__date,
.nve-event-card__venue,
.nve-event-card__excerpt {
    margin: 0 0 8px;
    color: #374151;
    font-size: 0.95rem;
}

.nve-event-card__price {
    margin: 12px 0 16px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
}

.nve-event-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nve-event-card__btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
}

.nve-event-card__btn--primary {
    background: #111827;
    color: #fff !important;
}

.nve-event-card__btn--secondary {
    background: #f3f4f6;
    color: #111827 !important;
}

@media (max-width: 640px) {
    .nve-public-events__grid {
        grid-template-columns: 1fr;
    }
}
