/* Effect Events — feedback fixes (Robert 2026-06-30). Loaded after theme main.css so these win. */

/* EC1 — single event header image: show the whole image (often a logo) without cropping. */
.site-content--single-event .general-header__image {
    background: #fff;
}

.site-content--single-event .general-header__image img {
    object-fit: contain;
    padding: 16px;
}

/* E2 — overview card thumbnail: contain instead of crop, on a clean white ground. */
.events-overview__media {
    background: #fff;
}

.events-overview__media img,
.events-overview__thumb {
    object-fit: contain;
    padding: 10px;
}

/* E1 — the date card is now a link to the event: keep its look, add a hover cue. */
a.events-overview__date {
    text-decoration: none;
    color: #fff;
    transition: background-color 0.18s ease;
}

a.events-overview__date:hover,
a.events-overview__date:focus-visible {
    background-color: var(--ev-brand-hover, #a91f23);
    color: #fff;
}

/* C2 / EC2 — stand / booth number as a sub-heading at the top of the event body. */
.single-event__stand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    padding: 0.4rem 0.85rem;
    background: #fbe8ea;
    color: #cf2a2f;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
}

.single-event__stand i {
    font-size: 0.95em;
}

/* EC3 / C4 — more breathing room below the event content before the footer. */
.site-content--single-event .single-event-layout {
    padding-bottom: 72px;
}

/* E3 — events landing: pull the list up closer under the page heading. */
.events-overview {
    padding-top: 1rem;
}
