/* ── EventF Hero Carousel ────────────────────────────────── */
.ehc-wrapper {
    position: relative;
    width: 100vw;
    overflow: hidden;
    background: #fff;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.ehc-track {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    will-change: transform;
}

.ehc-slide {
    flex: 0 0 400px;
    width: 400px;
    overflow: hidden;
}

.ehc-slide img {
    display: block;
    width: 400px;
    height: auto; /* natural aspect ratio — section height self-adjusts */
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}

/* ── Arrows ────────────────────────────────────────────────── */
.ehc-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .15);
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #1a1a1a;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease;
    outline: none;
}

.ehc-btn:hover {
    background: rgba(255, 255, 255, .95);
    border-color: rgba(0, 0, 0, .3);
}

.ehc-prev { left: 20px; }
.ehc-next { right: 20px; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .ehc-slide     { flex: 0 0 280px; width: 280px; }
    .ehc-slide img { width: 280px; }
}

@media (max-width: 600px) {
    .ehc-slide     { flex: 0 0 200px; width: 200px; }
    .ehc-slide img { width: 200px; }
    .ehc-btn       { width: 38px; height: 38px; font-size: 16px; }
    .ehc-prev      { left: 10px; }
    .ehc-next      { right: 10px; }
}
