/* Events Grid & Card */
.events-grid {
    display: grid;
    gap: 20px;
    padding: 0 2rem;
}

.event-card {
    padding: 1%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card .card-date {
    color: #000;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.event-card .row {
    min-height: 200px;
}

.event-card img {
    object-fit: cover;
    height: 250PX;
    width: 100%;
}

.event-btn {
    color: #14213D;
    background-color: #E5E5E5;
    padding: 8px 14px;
    border-radius: 5px;
    width: 100%;
    text-decoration: none;
    margin-bottom: 0.1rem;
    font-size: 0.8rem;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
    text-align: center;
}

.event-btn:hover {
    background-color: #14213D;
    color: #FFFFFF;
}