.events {
    position: relative;
}
.events .slider-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.events::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.events .container {
    position: relative;
    z-index: 2;
}

.event-card {
    background: rgba(12, 11, 9, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.event-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.event-card-img img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.event-card-body {
    padding: 25px;
}

.event-card-title {
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}

.event-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #c71212;
    margin-bottom: 15px;
}

.event-card .price span {
    border-bottom: 2px solid #c71212;
}

.event-card .fst-italic {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.event-card ul {
    list-style: none;
    padding: 0;
}

.event-card ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.event-card ul i {
    font-size: 20px;
    padding-right: 8px;
    color: #c71212;
    line-height: 1;
}

.event-card .event-card-description {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
    font-size: 14px;
}
