.simple-events-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.simple-event-card {
    border: 1px solid #ddd;
    padding: 15px;
    width: calc(33% - 20px);
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: box-shadow 0.3s ease;
    position: relative;
}

.simple-event-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.simple-event-card h3 a {
    text-decoration: none;
    color: #0073aa;
}

.simple-event-card p {
    margin: 10px 0;
}

.simple-event-card small {
    color: #666;
}

.event-cat-label {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cat-image {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    object-fit: cover;
}

.event-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.simple-events-filter {
    margin-bottom: 20px;
}
