.result-head {
    margin-bottom: 10px;
}

.events-list {
    padding: 30px 10px;
}

.events-list .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.events-container {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-item {
    height: 240px;
    display: flex;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.event-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.70);
    border-radius: 18px;
    pointer-events: none;
}

.event-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.event-item a {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1;
}

.event-content {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    gap: 12px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 1);
}

.event-content h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.event-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.95;
}

.event-dates {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-top: 6px;
}