﻿.event-card-wrapper {
    transition: transform 0.2s ease;
    border-radius: 16px;
    background-color: #ffffff;
}

.event-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.event-card-img {
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
}

.event-card-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.event-card-body {
    background-color: #ffffff;
}

.event-card-body small {
    font-size: 24px;
}

.event-card-body .fw-bold {
    font-size: 28px;
}

.event-card-body .text-date {
    font-size: 16px;
}

.event-card-body i {
    color: #FFB500;
}