/* EVENTS SINGLE PAGE STYLESHEET — SCOPED TO SINGLE-EVENTS.PHP. MODULE/LIST/CALENDAR STYLES LIVE IN VC-ADDONS/CSS/EVENTS.CSS */

/* SINGLE EVENT WRAPPER */

.lf-single-event {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 60px;
}


/* BREADCRUMB */

.lf-single-event__breadcrumb {
    font-size: 13px;
    color: var(--lf-single-event-body);
    margin-bottom: 24px;
    padding-top: 20px;
}

.lf-single-event__breadcrumb a {
    color: var(--lf-single-event-accent);
    text-decoration: none;
}

.lf-single-event__breadcrumb a:hover {
    text-decoration: underline;
}

.lf-single-event__breadcrumb span[aria-hidden] {
    margin: 0 6px;
}


/* TITLE */

.lf-single-event__title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 12px;
    color: var(--lf-single-event-body);
}


/* DATE / TIME SCHEDULE LINE */

.lf-single-event__schedule {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--lf-single-event-body);
    margin: 0 0 28px;
}

.lf-single-event__schedule-sep {
    color: var(--lf-single-event-body);
}


/* HERO IMAGE */

.lf-single-event__hero {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 6px;
    overflow: hidden;
}

.lf-single-event__hero img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    display: block;
}


/* ADD TO CALENDAR — BUTTON + DROPDOWN. MATCHES .LF-EVENTS-EXPORT-BTN ON THE /EVENTS/ LIST PAGE (VC-ADDONS/CSS/EVENTS.CSS) */

.lf-single-event__atc-wrap {
    position: relative;
    margin: 0 0 40px;
}

.lf-single-event__atc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 16px;
    background: #fff;
    color: var(--lf-single-event-accent);
    border: 1px solid var(--lf-single-event-accent);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.lf-single-event__atc-btn:hover {
    opacity: 0.85;
}

.lf-single-event__atc-arrow {
    margin-left: auto;
    transition: transform 0.2s;
}

.lf-single-event__atc-btn[aria-expanded="true"] .lf-single-event__atc-arrow {
    transform: rotate(180deg);
}

.lf-single-event__atc-dropdown {
    list-style: none;
    margin: 0;
    padding: 6px 0;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.lf-single-event__atc-dropdown[hidden] {
    display: none;
}

.lf-single-event__atc-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--lf-single-event-body);
    text-decoration: none;
    transition: background 0.15s;
}

.lf-single-event__atc-dropdown li a:hover {
    background: #f5f5f5;
    text-decoration: none;
}


/* DESCRIPTION */

.lf-single-event__body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--lf-single-event-body);
}

.lf-single-event__body p:first-child {
    margin-top: 0;
}


/* DETAILS */

.lf-single-event__details {
    max-width: 490px;
    padding: 32px 0 16px;
    margin: 0;
    border-top: 1px solid #e5e5e5;
    color: var(--lf-single-event-body);
}

.lf-single-event__details-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 12px;
}

.lf-single-event__details-list {
    margin: 0;
}

.lf-single-event__details-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.lf-single-event__details-row:last-child {
    border-bottom: none;
}

.lf-single-event__details-row dt {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
}

.lf-single-event__details-row dd {
    margin: 0;
    font-size: 14px;
}

.lf-single-event__details-row dd a {
    color: var(--lf-single-event-body);
}


/* BACK LINK */

.lf-single-event__back {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.lf-single-event__back a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--lf-single-event-body);
}

.lf-single-event__back a:hover {
    text-decoration: underline;
}


/* RESPONSIVE */

@media (max-width: 700px) {

    .lf-single-event__title {
        font-size: 24px;
    }

    .lf-single-event__hero img {
        max-height: 260px;
    }

    .lf-single-event__details-row {
        flex-direction: column;
        gap: 2px;
    }

    .lf-single-event__details-row dt {
        flex: none;
    }

}