.eveniment-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--global-palette1);
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.eveniment-link:hover {
    background: var(--global-palette2);
    color: #fff !important;
}
.entry-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.event-date, .event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.entry-thumb {
    /* height: 250px;
    margin-bottom: 1.5rem; */
    max-width: 33%;
    width: 100%;
}
article.evenimente .entry-content-wrap {
    width: 66%;
}
article.evenimente.type-evenimente {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .entry-thumb, article.evenimente .entry-content-wrap {
        max-width: 100%;
        width: 100%;
        height: 300px;
    }
    article.evenimente.type-evenimente {
        flex-direction: column;
    }
}