.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-item {
    background: #FDD8DF;
    padding: 20px;
    border-left: 5px solid #efa1af;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

/* Vertical center title when no description */
.event-item.no-description {
    align-items: center;
}

.event-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.event-left {
    min-width: 150px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.event-date {
    color: #000000;
    font-weight: 600;
    font-size: 14px;
}

.event-location {
    font-size: 13px;
}

.location-link {
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.location-link:hover {
    color: #efa1af;
}

.event-divider {
    width: 1px;
    background: #000000;
    align-self: stretch;
}

.event-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    padding-top: 5px;
    padding-bottom: 5px;
}

.event-short-description {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #000000;
    line-height: 1.4;
}

.event-link {
    display: inline-block;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.event-link:hover {
    text-decoration: underline;
}

.no-events {
    text-align: center;
    padding: 40px;
    color: #000000;
    font-style: italic;
}

.event-location {
    font-size: 13px;
    color: #000000;
}

.event-map-container {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.event-map-container iframe {
    display: block;
}

@media (max-width: 768px) {
    .event-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .event-divider {
        display: none;
    }
    
    .event-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .event-left {
        min-width: 100%;
    }
}