.event-list-container {
    max-width: 1400px;
    margin: auto;
    padding: 30px;
}

.event-title {
    margin-bottom: 25px;
    font-size: 30px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .event-grid {
        grid-template-columns: 1fr;
    }
}

.event-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    transition: .3s;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.event-thumb {
    position: relative;
}

.event-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0d6efd;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.event-date strong {
    font-size: 22px;
    line-height: 1;
}

.event-date small {
    font-size: 12px;
}

.event-follow {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #ff3d57;
    cursor: pointer;
}

.event-body {
    padding: 20px;
}

.event-body h3 {
    margin-bottom: 15px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.event-body p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-followers {
    display: flex;
    align-items: center;
}

.event-followers img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.event-followers img:first-child {
    margin-left: 0;
}

.event-followers span {
    margin-left: 10px;
    font-size: 13px;
    color: #666;
}

.event-details-btn {
    background: #0d6efd;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: .3s;
    cursor: pointer;
}

.event-details-btn:hover {
    background: #0b5ed7;
    color: gainsboro;
}