.event-card {
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.15s;
    cursor: pointer;
}

    /* Alternating background colors */
    .event-card.even {
        background-color: #f7f9fc; /* light blue-gray */
    }

    .event-card.odd {
        background-color: #ffffff;
    }

    /* Hover highlight */
    .event-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    }

.event-header {
    padding: 14px 16px;
}

.event-title {
    font-weight: 700;
    color: #1d3c6a;
    font-size: 17px;
    margin-bottom: 4px;
}

.event-meta {
    font-size: 13px;
    color: #555;
}

.event-details {
    display: none; /* hidden by default, double insured by jQuery */
    padding: 12px 16px 16px 16px;
    background-color: #efefef;
    border-top: 1px solid #ddd;
    color: #333;
    font-size: 14px;
    line-height: 1.4em;
}
