.events-list-wrapper {
    width: 100%;
    margin: 20px 0;
}

/* Top info */
.events-distribution-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.events-distribution-info img {
    width: 24px;
    height: 24px;
}

/* List spacing */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card */
.event-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 12px;
    background: #f5f5f5;
    border: 1px solid #eee;
    position: relative;
    transition: all 0.25s ease;
}

.event-card.standard {
    background: #f3f3f3;
}

.event-card:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* Featured */
.event-card.featured {
    background: linear-gradient(135deg, #fff8e5, #fffdf5);
    border-left: 4px solid #f4b400;
    box-shadow: 0 6px 20px rgba(244,180,0,0.15);
}

/* Star */
.event-star {
    position: absolute;
    top: 12px;
    right: 20px;
    color: #f4b400;
    font-size: 16px;
}

/* Date */
.event-date {
    min-width: 75px;
    text-align: center;
    font-weight: 600;
}

.event-date .day {
    display: block;
    font-size: 24px;
    line-height: 1;
}

.event-date .month {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #777;
    margin-top: 2px;
}

.date-separator {
    margin: 4px 0;
    font-size: 14px;
}

/* Content */
.event-content {
    flex: 1;
}

.event-title {
    margin: 0 0 6px;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
}

.event-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.event-location i {
    margin-right: 6px;
    color: #bbb;
    font-size: 13px;
}

/* Links */
.event-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-link {
    font-size: 13px;
    text-decoration: none;
    color: #0073aa;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-link:hover {
    background: rgba(0,115,170,0.08);
}

.btn-link.secondary {
    color: #666;
}

/* Magazine */
.event-mag {
    margin-left: auto;
    padding-left: 12px;
    border-left: 1px solid #eee;
    opacity: 0.85;
}

.event-mag img {
    width: 20px;
    height: 20px;
}

/* Mobile */
@media (max-width: 700px) {
    .event-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .event-date {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .event-date .day {
        font-size: 18px;
    }

    .event-title {
        font-size: 17px;
    }
}