.event-list-item {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.event-card {
    background: #fff;
    border-radius: 18px;
    transition: box-shadow 0.25s, transform 0.22s;
    box-shadow: 0 2px 12px rgba(44,62,80,0.08);
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}
.event-card:hover {
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    transform: translateY(-6px) scale(1.025);
    z-index: 2;
}
.event-card-inner {
    height: 100%;
}
.event-banner {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6fa;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    margin-bottom: 10px;
    overflow: hidden;
}
.event-banner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.event-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

.event-info {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.event-info i {
    margin-right: 6px;
    color: #888;
}

.event-info-list {
    font-size: 0.98em;
}

.event-actions {
    margin-top: 15px;
    text-align: right;
}

.btn-detail {
    background: linear-gradient(90deg,#2563eb 60%,#3498db 100%);
    color: #fff !important;
    border-radius: 22px;
    border: none;
    transition: background 0.18s, box-shadow 0.18s, text-decoration 0.18s;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    font-weight: 600;
    font-size: 1.05em;
    text-decoration: none;
}
.btn-detail:hover, .btn-detail:focus {
    background: linear-gradient(90deg,#3498db 60%,#2563eb 100%);
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(44,62,80,0.16);
    text-decoration: none !important;
}
@media (max-width: 991.98px) {
    .event-card { min-height: 440px; }
}
@media (max-width: 767.98px) {
    .event-card { min-height: 380px; }
    .event-banner { height: 120px; }
}
@media (max-width: 575.98px) {
    .event-card { min-height: 320px; }
    .event-banner { height: 80px; }
}