.ce-events-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ce-event {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
    flex-wrap: wrap;
}

.ce-event-left {
    flex: 0 0 300px;
    max-width: 100%;
}

.ce-event-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.ce-event-right {
    flex: 1;
    min-width: 280px;
}

.ce-event-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #47A1AA;
    margin-bottom: 10px;
}

.ce-event-date {
    font-size: 15px;
    margin-bottom: 8px;
}

.ce-event-desc {
    font-size: 16px;
    text-align: justify;
    margin-bottom: 10px;
}

.ce-event-link-simple {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #0073aa;
    text-decoration: underline;
}

.ce-event-link-simple:hover {
    color: #004e73;
    text-decoration: none;
}

/* Responsivo: telas menores que 768px */
@media (max-width: 768px) {
    .ce-event {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ce-event-left,
    .ce-event-right {
        width: 100%;
        max-width: 100%;
    }

    .ce-event-right {
        margin-top: 15px;
        text-align: left;
    }

    .ce-event-desc {
        text-align: left;
    }

    .ce-event-img {
        max-width: 100%;
    }
}
.ce-event-past {
    opacity: 0.85;
    position: relative;
}

.ce-event-badge {
    display: inline-block;
    background-color: #ff4c4c;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
