.event-banner-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #254a7c;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 340px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.event-banner-img {
    width: 100%;
    max-width: 1400px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

@media (max-width: 900px) {
    .event-banner-img {
        max-width: 100vw;
        border-radius: 0;
    }
    .event-banner-full {
        min-height: 180px;
        margin-top: 16px;
        margin-bottom: 16px;
    }
}
