.ue-events-container-4b94c7fd {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ue-event-item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fff;
    gap: 15px;
}
@media (min-width: 768px) {
    .ue-event-item {
        flex-direction: row;
        align-items: flex-start;
    }
}
.ue-event-image {
    flex-shrink: 0;
    width: 100%;
}
@media (min-width: 768px) {
    .ue-event-image {
        width: 30%;
        max-width: 250px;
    }
}
.ue-event-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}
.ue-event-content {
    flex-grow: 1;
}
.ue-event-title {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}
.ue-event-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}
.ue-event-title a:hover {
    opacity: 0.8;
}
.ue-event-date {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}
.ue-event-excerpt {
    font-size: 0.95em;
    color: #444;
    line-height: 1.5;
}