/* One Upcoming Events Widget */
.oe-events-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.oe-events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.oe-events-title {
    margin: 0;
    flex: 1;
}

.oe-events-see-all {
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.oe-events-list {
    /* Spacing controlled by item margin */
}

.oe-event-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.oe-event-date {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-align: center;
}

.oe-event-content {
    flex: 1;
    min-width: 0;
}

.oe-event-content-title {
    margin: 0;
}

.oe-event-content-title a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.oe-event-content-title a:hover {
    opacity: 0.8;
}

.oe-event-content-meta {
    margin: 0;
}

.oe-events-empty {
    margin: 0;
    padding: 0.5em 0;
}

.oe-events-placeholder {
    margin: 0;
    padding: 1em;
    color: #666;
    font-style: italic;
}

@media (max-width: 767px) {
    .oe-events-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .oe-event-date {
        width: 100px;
        height: 100px;
    }

    .oe-event-item {
        gap: 16px;
    }
}
