
.past-events { position: relative; padding: 0 40px; margin-bottom: 50px; }

/* Карточка */
.event-card { transition: transform 0.2s; }
.event-card__img-wrapper { 
    position: relative; 
    border-radius: 10px; 
    overflow: hidden; 
    margin-bottom: 15px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.event-card__img { width: 100%; height: auto; display: block; }

.event-card__date { margin-bottom: 10px; }
.event-card__date span { 
    background: #94a3b8; 
    color: #fff; 
    font-size: 11px; 
    font-weight: 600; 
    padding: 4px 10px; 
    border-radius: 4px; 
    display: inline-block;
}

.event-card__title { font-size: 14px; line-height: 1.4; margin: 0; font-weight: 500; }
.event-card__title a { color: #0052a2; text-decoration: none; }
.event-card__title a:hover { text-decoration: underline; color: #00a8e1; }

/* Навигация (Стрелочки как на скрине) */
.past-events__nav { position: absolute; top: 35%; left: 0; width: 100%; pointer-events: none; }
.past-events__btn { 
    position: absolute; width: 44px; height: 44px; border-radius: 50%; 
    background: rgba(0,0,0,0.2); color: #fff; border: none; 
    display: flex; align-items: center; justify-content: center; 
    pointer-events: auto; transition: background 0.2s, opacity 0.2s;
    cursor: pointer;
}
.past-events__btn:hover { background: rgba(0,0,0,0.4); }
.past-events__btn--prev { left: 0; }
.past-events__btn--next { right: 0; }

/* Карусель (убираем стандартные кнопки Owl, будем юзать свои) */
.past-events .owl-nav { display: none; }
