.p-event .p-filter-area {
    /*gap: 12px;*/
}

.p-event .filter-area select {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.p-event .filter-area label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}

.p-event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 36px;
    padding: 24px 0;
}

.c-event-card {
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.c-event-card img {
    width: 100%;
    display: block;
    height: auto;
}

.c-event-card .body {
    width: 100%;
    padding: 16px;
}

.c-event-card h3 {
    font-size: 16px;
    margin: 0 0 8px;
}

.c-event-card .date,
.c-event-card .category {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.c-event-card .label {
    font-size: 11px;
    color: #fff;
    background: #c00;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.c-event-card .label.status-planned { background: #ccc; }
.c-event-card .label.status-active { background: #f90; }
.c-event-card .label.status-ended  { background: #666; }
