/* File: render-event-post.css
   Description: Event-only editorial layout and event-specific presentation.
   Shared post/card/title/detail primitives live in render-post-core.css.
*/

.ll-event-hero__lightbox-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ll-event-titleblock--full .ll-event-title {
    margin: 0;
}

.ll-event-layout--editorial {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: start;
}

.ll-event-layout__column,
.ll-event-layout__hero,
.ll-event-layout__summary,
.ll-event-layout__description,
.ll-event-layout__followup {
    min-width: 0;
}

.ll-event-layout__description,
.ll-event-layout__followup {
    margin-top: 24px;
}

.ll-event-hero__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.ll-event-block--datetime .ll-event-datetime__primary,
.ll-event-block--datetime .ll-event-datetime__secondary {
    font-size: inherit;
    font-weight: 400;
    line-height: 1.5;
}

.ll-event-block--datetime .ll-event-datetime__secondary {
    margin-top: 4px;
}

.ll-event-block + .ll-event-block {
    margin-top: 18px;
}

.ll-event-location__venue,
.ll-event-location__addr,
.ll-event-location__csz,
.ll-event-location__phone,
.ll-event-contact__name,
.ll-event-contact__email,
.ll-event-contact__phone {
    margin-bottom: 5px;
}

.ll-event-location__venue {
    font-weight: 700;
}

.ll-event-location-map {
    margin-top: 4px;
}

.ll-event-location-map iframe {
    display: block;
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: 12px;
}

.ll-event-location__directions {
    display: inline-block;
}

.ll-event-link-row + .ll-event-link-row,
.ll-event-ticket-line + .ll-event-ticket-line {
    margin-top: 10px;
}

.ll-event-block--links,
.ll-event-block--contact {
    margin-top: 18px;
}

.ll-event-description > *:first-child {
    margin-top: 0;
}

.ll-event-description > *:last-child {
    margin-bottom: 0;
}

.ll-event-description h3 {
    margin: 28px 0 10px;
    font-size: 1.25rem;
    line-height: 1.3;
}

.ll-event-description h4 {
    margin: 20px 0 6px;
    font-size: 1.05rem;
    line-height: 1.35;
}

.ll-event-description .ll-editorial-event-schedule-meta {
    margin-bottom: 6px;
    font-weight: 600;
    line-height: 1.45;
}

.ll-event-source {
    margin-top: 18px;
}

.ll-event-source__rule {
    margin: 0 0 12px;
    border: 0;
    border-top: 1px solid #d7dde5;
}

.ll-event-source__link {
    display: inline-block;
}

.ll-event-related-business {
    display: block;
    width: 100%;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e3e7ee;
    clear: both;
}

.ll-event-related-business__title {
    margin: 0 0 18px;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
}

.ll-event-related-business .ll-post-surface,
.ll-event-related-business .ll-basic-business-card,
.ll-event-related-business .ll-premium,
.ll-event-related-business .ll-business-card {
    width: 100%;
}

@media (max-width: 900px) {
    .ll-event-layout--editorial {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .ll-event-layout__column {
        display: contents;
    }

    .ll-event-layout__hero {
        order: 1;
    }

    .ll-event-layout__summary {
        order: 2;
    }

    .ll-event-layout__description {
        order: 3;
    }

    .ll-event-layout__followup {
        order: 4;
    }

    .ll-event-layout__description,
    .ll-event-layout__followup {
        margin-top: 0;
    }

}

