:root {
    --lh-sea: #0b5f73;
    --lh-sea-deep: #0a2f3a;
    --lh-foam: #eef6f8;
    --lh-sand: #f5f7f8;
    --lh-clay: #8a9aa3;
    --lh-ink: #121a21;
    --lh-muted: #5a6a76;
    --lh-line: rgba(18, 26, 33, 0.1);
    --lh-header: #0c1c24;
    --lh-header-text: #e8eef1;
    --lh-header-offset: 3.75rem;
    --lh-radius: 0.85rem;
    --lh-shadow: 0 14px 40px rgba(12, 28, 36, 0.1);
    --lh-font: "Outfit", system-ui, sans-serif;
    --lh-display: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body.lh-body {
    margin: 0;
    min-height: 100%;
    color: var(--lh-ink);
    font-family: var(--lh-font);
    background:
        linear-gradient(180deg, #f3f6f7 0%, #fff 38%, var(--lh-foam) 100%);
}

/* Full-height page shell: keeps footer at the bottom on short pages */
.lh-shell {
    box-sizing: border-box;
    width: 100%;
    min-height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.lh-header {
    flex: 0 0 auto;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.lh-main {
    flex: 1 0 auto;
    min-width: 0;
    width: 100%;
}

.lh-footer {
    flex: 0 0 auto;
    width: 100%;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(ellipse 80% 60% at 12% 0%, rgba(42, 159, 181, 0.16), transparent 55%),
        linear-gradient(180deg, #0e2430 0%, #0a1820 100%);
    color: #e8eef1;
}

.lh-navbar {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    background: var(--lh-header);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lh-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none !important;
}

.lh-brand-mark {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 0.25rem;
    background: linear-gradient(145deg, #2a9fb5, #0b5f73);
    box-shadow: 0 0 0 3px rgba(42, 159, 181, 0.22);
}

.lh-brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    padding: 0.18rem;
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.lh-brand-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lh-brand-text {
    font-family: var(--lh-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--lh-header-text);
    line-height: 1.15;
}

.lh-brand-place {
    font-weight: 600;
    color: #7ec8d6;
}

.lh-brand-onsamos {
    letter-spacing: -0.03em;
}

.lh-brand-on {
    color: #5eb8cc;
    font-weight: 600;
}

.lh-brand-samos {
    color: #fff;
    font-weight: 700;
}

.lh-brand-calendar {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    letter-spacing: -0.03em;
}

.lh-brand-hub {
    color: #fff;
    font-weight: 700;
}

.lh-brand-calendar-sep {
    color: rgba(126, 200, 214, 0.55);
    font-weight: 500;
    margin: 0 0.05em;
}

.lh-brand-calendar-word {
    color: #7ec8d6;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.lh-toggler {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0.55rem;
    padding: 0.35rem 0.5rem;
    filter: invert(1);
}

.lh-navbar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
}

.lh-nav-collapse {
    flex-basis: 100%;
}

@media (min-width: 992px) {
    .lh-nav-collapse {
        flex-basis: auto;
        flex-grow: 1;
        display: flex !important;
        justify-content: flex-end;
    }

    .lh-toggler {
        display: none;
    }
}

.lh-navbar-nav {
    width: 100%;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 0.15rem;
}

@media (min-width: 992px) {
    .lh-navbar-nav {
        width: auto;
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }
}

.lh-navbar .nav-link.lh-nav-link {
    font-weight: 500;
    color: rgba(232, 238, 241, 0.78) !important;
    padding: 0.45rem 0.8rem !important;
    border-radius: 0.45rem;
    position: relative;
    transition:
        color 0.18s ease,
        background-color 0.18s ease;
}

.lh-navbar .nav-link.lh-nav-link:hover,
.lh-navbar .nav-link.lh-nav-link:focus {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06);
}

.lh-navbar .nav-link.lh-nav-link.is-active,
.lh-navbar .nav-link.lh-nav-link.show {
    color: #fff !important;
    font-weight: 600;
    background: rgba(42, 159, 181, 0.18);
}

.lh-navbar .nav-link.dropdown-toggle::after {
    margin-left: 0.35rem;
    vertical-align: 0.15em;
}

.lh-navbar .dropdown-menu {
    min-width: 13.5rem;
    margin-top: 0.35rem;
    padding: 0.4rem 0;
    border: 1px solid rgba(15, 35, 45, 0.08);
    border-radius: 0.65rem;
    box-shadow: 0 0.75rem 1.75rem rgba(10, 24, 32, 0.16);
}

.lh-navbar .dropdown-header {
    padding: 0.45rem 1rem 0.25rem;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(15, 35, 45, 0.45);
}

.lh-navbar .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--lh-ink);
}

.lh-navbar button.dropdown-item {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
}

.lh-navbar .dropdown-item:hover,
.lh-navbar .dropdown-item:focus {
    background: rgba(11, 95, 115, 0.08);
    color: var(--lh-sea);
}

.lh-navbar .dropdown-item.active,
.lh-navbar .dropdown-item:active {
    background: rgba(11, 95, 115, 0.12);
    color: var(--lh-sea);
}

.lh-navbar .dropdown-divider {
    margin: 0.35rem 0;
    border-top-color: rgba(15, 35, 45, 0.08);
}

.lh-nav-dropdown-hint {
    margin-left: 0.5rem;
    font-size: 0.7rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(155, 44, 44, 0.85);
}

.lh-nav-context-static {
    color: #c9e7ee !important;
    font-size: 0.88rem;
    font-weight: 600;
    max-width: 11rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: default;
}

.lh-nav-context-static:hover,
.lh-nav-context-static:focus {
    background: transparent !important;
    color: #c9e7ee !important;
}

.lh-lang-nav-item {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
}

@media (min-width: 992px) {
    .lh-lang-nav-item {
        padding: 0;
        margin-left: 0.25rem;
    }
}

.lh-dropdown-logout {
    color: #9b2c2c !important;
}

.lh-user-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--lh-header-text);
    font-size: 0.875rem;
    font-weight: 500;
}

.lh-admin-context {
    margin-bottom: 1.25rem;
}

.lh-admin-context-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.45rem 0.75rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--lh-ink);
    font-size: 0.95rem;
}

.lh-admin-context-label {
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(12, 28, 36, 0.5);
}

.lh-admin-context-value {
    font-weight: 650;
}

.lh-admin-context-slug {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.8rem;
    color: rgba(12, 28, 36, 0.45);
}

.lh-admin-context-link {
    margin-left: 0.15rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--lh-sea);
    text-decoration: none;
}

.lh-admin-context-link:hover {
    text-decoration: underline;
}
.lh-location-pick {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    width: 100%;
    height: 100%;
    min-height: 7rem;
    padding: 1.15rem 1.2rem;
    border: 1px solid var(--lh-line);
    border-radius: calc(var(--lh-radius) + 0.15rem);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--lh-shadow);
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.lh-location-pick:hover,
.lh-location-pick:focus {
    border-color: rgba(11, 95, 115, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(12, 28, 36, 0.12);
}

.lh-location-pick.is-current {
    border-color: var(--lh-sea);
    background: linear-gradient(180deg, rgba(11, 95, 115, 0.08), rgba(255, 255, 255, 0.95));
}

.lh-location-pick-name {
    font-family: var(--lh-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--lh-ink);
}

.lh-location-pick-slug code {
    font-size: 0.85rem;
    color: var(--lh-sea);
}

.lh-location-pick-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.35rem;
}

.lh-location-pick-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(11, 95, 115, 0.12);
    color: var(--lh-sea);
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.lh-location-pick-badge.is-inactive {
    background: rgba(155, 44, 44, 0.1);
    color: #9b2c2c;
}


.lh-dropdown-logout:hover,
.lh-dropdown-logout:focus {
    background: rgba(155, 44, 44, 0.08) !important;
    color: #9b2c2c !important;
}

.lh-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.18rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.lh-lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.35rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    text-decoration: none;
    color: rgba(232, 238, 241, 0.65);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.lh-lang-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.lh-lang-btn.is-active {
    background: #2a9fb5;
    color: #fff;
}

/* Buttons */
.lh-btn-primary,
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-active-color: #fff;
    --bs-btn-bg: var(--lh-sea);
    --bs-btn-border-color: var(--lh-sea);
    --bs-btn-hover-bg: var(--lh-sea-deep);
    --bs-btn-hover-border-color: var(--lh-sea-deep);
    --bs-btn-active-bg: var(--lh-sea-deep);
    --bs-btn-active-border-color: var(--lh-sea-deep);
    border-radius: 999px !important;
    font-weight: 600;
    padding: 0.55rem 1.15rem;
    color: #fff !important;
}

.lh-btn-ghost {
    border: 1px solid var(--lh-line);
    border-radius: 999px;
    background: transparent;
    color: var(--lh-ink);
    font-weight: 500;
}

.lh-btn-ghost:hover {
    background: rgba(20, 32, 43, 0.04);
    color: var(--lh-sea);
}

.lh-btn-solid {
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--lh-sea-deep);
    font-weight: 650;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.lh-btn-solid:hover {
    background: var(--lh-foam);
    color: var(--lh-sea-deep);
}

.lh-btn-ghost-light {
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-weight: 550;
}

.lh-btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

/* Hero */
.lh-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}

.lh-hero-home,
.lh-hero-location {
    --lh-hero-height: 280px;
    min-height: var(--lh-hero-height);
    height: var(--lh-hero-height);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1.75rem 0;
    text-align: left;
    background-color: var(--lh-sea-deep);
    background-image:
        linear-gradient(115deg, rgba(7, 52, 69, 0.88) 0%, rgba(10, 77, 99, 0.72) 55%, rgba(7, 52, 69, 0.55) 100%),
        url("../img/hero-aegean.jpg");
    background-size: cover;
    background-position: center 40%;
}

.lh-hero-location {
    background-position: center 55%;
}

.lh-hero-glow {
    position: absolute;
    inset: auto -10% -30% auto;
    width: min(520px, 80vw);
    height: min(520px, 80vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
    pointer-events: none;
    z-index: 0;
    animation: lh-float 10s ease-in-out infinite;
}

.lh-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 38rem;
    margin: 0;
    text-align: left;
    animation: lh-rise 0.7s ease both;
}

.lh-hero > .container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.lh-kicker {
    margin: 0 0 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.lh-kicker-dark {
    color: var(--lh-sea);
}

.lh-hero-title {
    margin: 0 0 0.75rem;
    font-family: var(--lh-display);
    font-weight: 600;
    font-size: clamp(1.55rem, 3.6vw, 2.25rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    text-align: left;
}

.lh-hero-event {
    --lh-hero-height: 168px;
    padding: 1.15rem 0;
}

.lh-hero-event .lh-hero-title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 3.2vw, 1.95rem);
}

.lh-hero-event .lh-hero-content {
    max-width: 44rem;
}

.lh-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.55rem;
}

.lh-hero-datetime {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 550;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.lh-hero-lead {
    margin: 0 0 1.1rem;
    max-width: 34rem;
    font-size: clamp(0.92rem, 1.8vw, 1.02rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
}

.lh-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.9rem;
}

/* Sections */
.lh-section {
    padding: 2.5rem 0 3.25rem;
}

.lh-section-tight {
    padding: 2.5rem 0 3.5rem;
}

.lh-feature {
    height: 100%;
    padding: 1.5rem 1.35rem;
    border-radius: var(--lh-radius);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--lh-line);
    box-shadow: 0 10px 30px rgba(7, 52, 69, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: lh-rise 0.7s ease both;
}

.lh-feature:nth-child(1),
.col-md-4:nth-child(1) .lh-feature { animation-delay: 0.05s; }
.col-md-4:nth-child(2) .lh-feature { animation-delay: 0.12s; }
.col-md-4:nth-child(3) .lh-feature { animation-delay: 0.2s; }

.lh-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--lh-shadow);
}

.lh-feature-index {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--lh-clay);
}

.lh-feature-title {
    margin: 0 0 0.55rem;
    font-family: var(--lh-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.lh-feature-text {
    color: var(--lh-muted);
    line-height: 1.55;
    font-size: 0.98rem;
}

.lh-feature-text code {
    font-size: 0.85em;
    color: var(--lh-sea);
    background: rgba(10, 77, 99, 0.08);
    padding: 0.1rem 0.35rem;
    border-radius: 0.35rem;
}

.lh-panel {
    padding: 1.5rem;
    border-radius: var(--lh-radius);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--lh-line);
}

.lh-panel-fill {
    height: 100%;
}

.lh-panel-title {
    margin: 0 0 0.5rem;
    font-family: var(--lh-display);
    font-size: 1.35rem;
    font-weight: 600;
}

.lh-panel-text {
    color: var(--lh-muted);
    line-height: 1.55;
}

.lh-section-head {
    margin-bottom: 1.5rem;
}

.lh-section-title {
    margin: 0 0 0.35rem;
    font-family: var(--lh-display);
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.lh-section-sub {
    color: var(--lh-muted);
}

.lh-section-lead {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--lh-ink);
    line-height: 1.4;
}

.lh-submit-notice {
    margin: 0 0 0.25rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(11, 95, 115, 0.18);
    border-radius: 0.75rem;
    background: rgba(11, 95, 115, 0.06);
    color: var(--lh-sea-deep);
    font-size: 0.92rem;
    line-height: 1.45;
    max-width: 40rem;
}

.lh-event-list {
    display: grid;
    gap: 0.65rem;
}

.lh-event-card,
.lh-event-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.65rem 1rem;
    align-items: start;
    padding: 0.85rem 1rem;
    border-radius: var(--lh-radius);
    background: #fff;
    border: 1px solid var(--lh-line);
    color: inherit;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    position: relative;
}

.lh-event-row-media {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    width: 4.5rem;
}

.lh-event-media-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.lh-event-row-main {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.lh-event-row-main-link {
    display: block;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

.lh-event-row-aside {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0.45rem;
    padding-top: 0.1rem;
}

.lh-event-card:hover,
.lh-event-row:hover {
    box-shadow: var(--lh-shadow);
    border-color: rgba(11, 95, 115, 0.28);
    color: inherit;
}

.lh-event-thumb {
    width: 4.5rem;
    height: 5.6rem;
    border-radius: 0.55rem;
    overflow: hidden;
    background: rgba(11, 95, 115, 0.08);
    flex: 0 0 auto;
}

.lh-event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lh-event-date {
    min-width: 4.25rem;
    text-align: center;
    padding: 0.5rem 0.35rem;
    border-radius: 0.65rem;
    background: rgba(11, 95, 115, 0.07);
}

.lh-event-day {
    display: block;
    font-family: var(--lh-display);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
    color: var(--lh-sea-deep);
}

.lh-event-month {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--lh-muted);
    line-height: 1.25;
}

.lh-event-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
}

.lh-event-badges-light {
    margin-bottom: 0.65rem;
}

.lh-event-cat {
    display: inline-flex;
    padding: 0.12rem 0.5rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--cat) 14%, white);
    color: var(--cat);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.lh-event-cat-more {
    display: inline-flex;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    background: rgba(12, 28, 36, 0.06);
    color: var(--lh-muted);
    font-size: 0.7rem;
    font-weight: 700;
}

.lh-event-today {
    display: inline-flex;
    padding: 0.12rem 0.5rem;
    border-radius: 999px;
    background: #0b5f73;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lh-event-title {
    margin: 0 0 0.55rem;
    font-family: var(--lh-display);
    font-size: 1.08rem;
    font-weight: 650;
    line-height: 1.28;
    letter-spacing: -0.015em;
    color: var(--lh-ink);
}

.lh-event-excerpt {
    margin: 0.45rem 0 0;
    color: var(--lh-muted);
    font-size: 0.88rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lh-event-facts-inline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.28rem 1rem;
}

.lh-event-fact-inline {
    display: inline-grid;
    grid-template-columns: 1rem minmax(0, max-content);
    column-gap: 0.45rem;
    align-items: center;
    width: auto;
    max-width: 100%;
    font-size: 0.84rem;
    line-height: 1.35;
}

.lh-event-fact-inline > :not(.lh-event-fact-icon) {
    grid-column: 2;
    min-width: 0;
}

.lh-event-fact-copy {
    display: inline;
    min-width: 0;
}

.lh-event-fact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1.15rem;
    color: var(--lh-sea);
    flex: 0 0 auto;
}

.lh-event-fact-icon svg {
    display: block;
    width: 14px;
    height: 14px;
}

.lh-event-fact-date,
.lh-event-fact-time {
    color: var(--lh-sea-deep);
    font-weight: 650;
    font-variant-numeric: tabular-nums;
}

.lh-event-fact-place {
    flex: 1 1 100%;
    color: var(--lh-muted);
    font-weight: 500;
    grid-template-columns: 1rem minmax(0, 1fr);
}

.lh-event-fact-place-text {
    min-width: 0;
}

.lh-event-where {
    color: var(--lh-ink);
    font-weight: 600;
}

.lh-event-place-name {
    color: var(--lh-muted);
    font-weight: 500;
}

.lh-event-fact-sep {
    margin: 0 0.28rem;
    color: var(--lh-line);
}

.lh-event-fact-series {
    grid-template-columns: minmax(0, max-content);
}

.lh-event-fact-series > .lh-event-series-day {
    grid-column: 1;
    margin-left: 0;
    white-space: nowrap;
    font-size: 0.82em;
    font-weight: 500;
    color: var(--lh-muted);
}

.lh-event-fact-series > .lh-event-series-day::before {
    content: '·';
    margin-right: 0.35rem;
    color: var(--lh-line);
}

.lh-event-fact-inline .lh-event-series-day {
    margin-left: 0.35rem;
    font-size: 0.82em;
    font-weight: 500;
    color: var(--lh-muted);
    white-space: nowrap;
}

.lh-event-fact-inline .lh-event-series-day::before {
    content: '·';
    margin-right: 0.35rem;
    color: var(--lh-line);
}

/* Legacy meta (detail pages / older markup) */
.lh-event-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.75rem;
    margin-top: 0.15rem;
    color: var(--lh-muted);
    font-size: 0.84rem;
}

.lh-event-when {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.18rem 0.5rem;
    border: 1px solid rgba(11, 95, 115, 0.18);
    background: rgba(11, 95, 115, 0.07);
    color: var(--lh-sea-deep);
    font-size: 0.78rem;
    font-weight: 650;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
}

.lh-event-when-sep {
    opacity: 0.55;
    font-weight: 500;
}

.lh-favorite {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lh-favorite-list {
    width: auto;
}

.lh-favorite-form {
    display: block;
    margin: 0;
    padding: 0;
    width: auto;
}

.lh-favorite-list .lh-favorite-form {
    width: auto;
}

.lh-favorite-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 2.35rem;
    height: 2.35rem;
    min-width: 2.35rem;
    padding: 0;
    border: 1px solid rgba(11, 95, 115, 0.18);
    border-radius: 999px;
    background: #fff;
    color: var(--lh-muted);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
}

.lh-favorite-list .lh-favorite-btn {
    width: 2.35rem;
    height: 2.35rem;
}

.lh-favorite-btn:hover {
    color: #c9920a;
    border-color: rgba(224, 161, 6, 0.4);
    text-decoration: none;
}

.lh-favorite-btn.is-active {
    color: #e0a106;
    border-color: rgba(224, 161, 6, 0.45);
    background: rgba(224, 161, 6, 0.1);
}

.lh-favorite-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.lh-favorite-svg {
    display: block;
    width: 16px;
    height: 16px;
}

.lh-favorite-btn:hover .lh-favorite-icon {
    transform: scale(1.08);
}

.lh-favorite-icon {
    transition: transform 0.15s ease;
}


.lh-auth-notice {
    margin: 0 0 1.15rem;
    padding: 0.85rem 0.95rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(11, 95, 115, 0.18);
    background: rgba(11, 95, 115, 0.06);
    color: var(--lh-ink);
    font-size: 0.92rem;
    line-height: 1.45;
}

.lh-auth-notice-hint {
    color: var(--lh-muted);
    font-size: 0.86rem;
}

.lh-back-link {
    display: inline-flex;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.lh-back-link:hover {
    color: #fff;
}

.lh-prose {
    color: var(--lh-ink);
    line-height: 1.65;
}

.lh-prose p,
.lh-hero-lead p {
    margin: 0 0 0.85em;
}

.lh-prose p:last-child,
.lh-hero-lead p:last-child {
    margin-bottom: 0;
}

.lh-prose ul,
.lh-prose ol {
    margin: 0 0 0.85em;
    padding-left: 1.35rem;
}

.lh-prose a,
.lh-hero-lead a {
    color: var(--lh-sea);
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.lh-prose .ql-align-center,
.lh-hero-lead .ql-align-center {
    text-align: center;
}

.lh-prose .ql-align-right,
.lh-hero-lead .ql-align-right {
    text-align: right;
}

.lh-prose .ql-align-justify,
.lh-hero-lead .ql-align-justify {
    text-align: justify;
}

.lh-prose .ql-align-left,
.lh-hero-lead .ql-align-left {
    text-align: left;
}

.lh-meta-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.lh-meta-label {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--lh-muted);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lh-event-aside-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.1rem;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--lh-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.lh-event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.lh-event-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin: 0.5rem 0 0;
}

.lh-event-tag {
    display: inline-block;
    padding: 0.28rem 0.6rem;
    border: 1px solid var(--lh-line);
    background: var(--lh-foam);
    color: var(--lh-ink);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.lh-event-card-tags .lh-event-tag {
    padding: 0.12rem 0.42rem;
    font-size: 0.68rem;
    font-weight: 600;
}

.lh-event-tag-place {
    border-color: rgba(11, 95, 115, 0.28);
    background: rgba(11, 95, 115, 0.08);
    color: var(--lh-sea-deep);
}

.lh-event-tag-theme {
    border-color: rgba(18, 26, 33, 0.12);
    background: #fff;
}

.lh-event-page {
    padding: 0.35rem 0 2.75rem;
}

.lh-event-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0.15rem 0 0.95rem;
    padding: 0.35rem 0.15rem;
    color: var(--lh-sea-deep);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 650;
    letter-spacing: 0.01em;
    transition: color 0.15s ease;
}

.lh-event-back:hover {
    color: var(--lh-sea);
    text-decoration: none;
}

.lh-event-back-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.55rem;
    border: 1px solid rgba(11, 95, 115, 0.2);
    border-radius: 999px;
    background: #fff;
    color: inherit;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.lh-event-back:hover .lh-event-back-icon {
    border-color: rgba(11, 95, 115, 0.4);
    background: var(--lh-foam);
    transform: translateX(-2px);
}

.lh-event-summary {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 0 1.15rem;
    padding: 0.85rem 0 1rem;
}

.lh-event-edit-btn {
    position: absolute;
    top: 0.55rem;
    right: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border: 1px solid rgba(11, 95, 115, 0.22);
    border-radius: 999px;
    background: #fff;
    color: var(--lh-sea-deep);
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(12, 28, 36, 0.06);
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.lh-event-edit-btn:hover {
    border-color: var(--lh-sea);
    color: var(--lh-sea);
    background: var(--lh-foam);
    text-decoration: none;
}

.lh-event-top {
    display: flex;
    align-items: stretch;
    gap: 0.85rem 1.1rem;
    width: 100%;
}

.lh-event-top-main {
    flex: 1 1 auto;
    min-width: 0;
}

.lh-event-summary.has-edit .lh-event-top-main {
    padding-right: 2.6rem;
}

.lh-event-cover {
    /* Hoist trigger into .lh-event-top flex so height stretch + natural width work */
    display: contents;
}

.lh-event-cover .lh-poster-trigger,
.lh-event-cover button {
    flex: 0 0 auto;
    align-self: stretch;
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
    width: auto;
    max-width: min(38vw, 11rem);
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--lh-line);
    background: #0f1f27;
    cursor: zoom-in;
}

.lh-event-cover img {
    display: block;
    box-sizing: border-box;
    /* Cross-size = full 2-row height; main-size follows intrinsic ratio */
    align-self: stretch;
    height: auto;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}

.lh-event-kicker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lh-sea);
}

.lh-event-kicker a {
    color: inherit;
    text-decoration: none;
}

.lh-event-kicker a:hover {
    text-decoration: underline;
}

.lh-event-page-title {
    margin: 0 0 0.85rem;
    font-family: var(--lh-display);
    font-size: clamp(1.12rem, 2.2vw, 1.4rem);
    font-weight: 650;
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: var(--lh-ink);
}

.lh-event-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.35rem;
    width: 100%;
    margin: 0;
    padding: 0.65rem 0 0;
    border-top: 1px solid var(--lh-line);
}

.lh-event-facts--detail {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    padding-top: 0.85rem;
}

.lh-event-facts--detail .lh-event-fact-inline {
    display: grid;
    grid-template-columns: 1.15rem minmax(0, 1fr);
    column-gap: 0.65rem;
    align-items: start;
    font-size: inherit;
    line-height: 1.35;
}

.lh-event-facts--detail .lh-event-fact-icon {
    width: 1.15rem;
    height: 1.35rem;
    margin-top: 0.15rem;
    color: var(--lh-sea);
}

.lh-event-facts--detail .lh-event-fact-icon svg {
    width: 16px;
    height: 16px;
}

.lh-event-fact-copy {
    min-width: 0;
    display: grid;
    gap: 0.12rem;
}

.lh-event-fact-label {
    color: var(--lh-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lh-event-fact-value {
    color: var(--lh-ink);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.35;
    font-variant-numeric: tabular-nums;
}

.lh-event-org-link {
    color: var(--lh-sea-deep);
    text-decoration: none;
    border-bottom: 1px solid rgba(11, 95, 115, 0.28);
}

.lh-event-org-link:hover {
    border-bottom-color: var(--lh-sea-deep);
}

.lh-event-org-link--card {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.45rem;
    align-self: flex-start;
    max-width: 100%;
    padding: 0.1rem 0;
    border-bottom: none;
    font-size: 0.86rem;
    line-height: 1.3;
}

.lh-event-org-link--card .lh-event-org-label {
    color: var(--lh-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lh-event-org-link--card .lh-event-org-name {
    color: var(--lh-sea-deep);
    font-weight: 650;
    border-bottom: 1px solid rgba(11, 95, 115, 0.28);
}

.lh-event-org-link--card:hover .lh-event-org-name {
    border-bottom-color: var(--lh-sea-deep);
}

.lh-event-facts--detail .lh-event-fact-date .lh-event-fact-value,
.lh-event-facts--detail .lh-event-fact-time .lh-event-fact-value {
    color: var(--lh-sea-deep);
}

.lh-event-facts--detail .lh-event-where {
    color: var(--lh-ink);
    font-weight: 600;
}

.lh-event-facts--detail .lh-event-place-name {
    color: var(--lh-muted);
    font-weight: 500;
}

.lh-event-facts--detail .lh-event-series-day {
    display: inline;
    margin-left: 0.35rem;
}

.lh-event-facts--detail .lh-event-series-day::before {
    content: '·';
    margin-right: 0.35rem;
    color: var(--lh-line);
}

.lh-event-fact {
    min-width: 0;
    flex: 1 1 7.5rem;
}

.lh-event-fact dt {
    margin: 0 0 0.12rem;
    color: var(--lh-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lh-event-fact dd {
    margin: 0;
    color: var(--lh-ink);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.3;
}

.lh-event-body {
    width: 100%;
    margin: 0 0 1.35rem;
    padding: 0.35rem 0 0;
}

.lh-event-body .lh-prose {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.lh-event-body-title {
    margin: 0 0 0.75rem;
    font-family: var(--lh-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lh-ink);
}

.lh-event-footer {
    width: 100%;
    margin: 0 0 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--lh-line);
}

.lh-event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0 0 0.85rem;
}

.lh-event-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1.25rem;
    margin: 0;
}

.lh-event-toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
}

.lh-event-toolbar-actions .lh-share-aside {
    margin-top: 0;
}

.lh-event-toolbar-actions .lh-favorite {
    display: inline-flex;
}

.lh-event-toolbar-actions .lh-favorite-form {
    width: auto;
}

.lh-event-toolbar-actions .lh-favorite-btn:hover,
.lh-favorite-detail .lh-favorite-btn:hover {
    border-color: rgba(224, 161, 6, 0.45);
    color: #c9920a;
}

.lh-event-toolbar-actions .lh-favorite-btn.is-active,
.lh-favorite-detail .lh-favorite-btn.is-active {
    color: #e0a106;
    border-color: rgba(224, 161, 6, 0.45);
    background: rgba(224, 161, 6, 0.1);
}

.lh-calendar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(11, 95, 115, 0.22);
    border-radius: 999px;
    background: #fff;
    color: var(--lh-sea-deep);
    font-size: 0.86rem;
    font-weight: 650;
    text-decoration: none;
    line-height: 1.2;
}

.lh-calendar-btn:hover {
    border-color: var(--lh-sea);
    color: var(--lh-sea);
    text-decoration: none;
}

.lh-calendar-icon {
    display: inline-flex;
}

.lh-event-gallery {
    margin: 0 0 1.75rem;
}

@media (min-width: 576px) {
    .lh-event-fact {
        flex: 1 1 8.5rem;
    }
}

@media (max-width: 575.98px) {
    .lh-event-summary {
        padding-top: 0.65rem;
        margin-bottom: 0.9rem;
    }

    .lh-event-top {
        gap: 0.7rem;
    }

    .lh-event-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

.lh-perm-grid {
    display: grid;
    gap: 0.75rem;
}

.lh-perm-item {
    display: grid;
    gap: 0.15rem;
    padding: 0.75rem 0.85rem;
    border-radius: 0.85rem;
    background: rgba(10, 77, 99, 0.05);
    border: 1px solid var(--lh-line);
}

.lh-perm-group {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lh-clay);
}

.lh-perm-item code {
    font-size: 0.78rem;
    color: var(--lh-sea);
}

@media (max-width: 700px) {
    .lh-event-row {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .lh-event-row-aside {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        justify-self: end;
    }

    .lh-event-row-main {
        grid-column: 2;
        grid-row: 1;
        padding-right: 5.25rem;
    }

    .lh-event-row-media {
        grid-column: 1;
        grid-row: 1 / span 1;
        align-self: start;
    }
}

/* Auth */
.lh-auth-card {
    padding: 1.75rem 1.5rem;
    border-radius: calc(var(--lh-radius) + 0.25rem);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--lh-line);
    box-shadow: var(--lh-shadow);
    animation: lh-rise 0.55s ease both;
}

@media (min-width: 768px) {
    .lh-auth-card {
        padding: 2.25rem 2rem;
    }
}

.lh-auth-title {
    margin: 0 0 0.35rem;
    font-family: var(--lh-display);
    font-size: clamp(1.75rem, 3vw, 2.1rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.lh-auth-lead {
    margin: 0 0 1.5rem;
    color: var(--lh-muted);
}

.lh-auth-foot {
    margin-top: 1.25rem;
    color: var(--lh-muted);
    font-size: 0.95rem;
}

.lh-auth-foot a {
    color: var(--lh-sea);
    font-weight: 600;
    text-decoration: none;
}

.lh-auth-foot a:hover {
    text-decoration: underline;
}

.lh-input,
.form-control {
    border-radius: 0.85rem !important;
    border-color: rgba(20, 32, 43, 0.14);
    padding: 0.7rem 0.9rem;
    background: rgba(255, 255, 255, 0.92);
}

.lh-input:focus,
.form-control:focus {
    border-color: rgba(10, 77, 99, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(10, 77, 99, 0.12);
}

.form-label {
    font-weight: 550;
    font-size: 0.9rem;
    color: var(--lh-ink);
}

/* Flash / system notices */
.lh-flash {
    display: grid;
    gap: 0.65rem;
    margin: 1.1rem 0 0;
}

.lh-flash-item {
    padding: 0.85rem 1.05rem;
    border-radius: 0.55rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.45;
    border: 1px solid transparent;
}

.lh-flash-success {
    color: #0f3d2e;
    background: #e8f5ef;
    border-color: #c5e4d4;
}

.lh-flash-error {
    color: #5c1a1a;
    background: #f8eaea;
    border-color: #e5c5c5;
}

.alert {
    margin-top: 1rem;
    border: 0;
    border-radius: 0.9rem;
    box-shadow: 0 8px 24px rgba(7, 52, 69, 0.06);
}

/* Footer — keep horizontal inset (do not use padding shorthand; it wipes .container gutters) */
.lh-footer-inner {
    display: grid;
    gap: 1.25rem;
    padding-block: 2.25rem 1.75rem;
    padding-inline: 1.15rem;
}

.lh-footer-inner-rich {
    gap: 1.75rem;
    padding-block: 2.75rem 2rem;
}

@media (min-width: 768px) {
    .lh-footer-inner:not(.lh-footer-inner-rich) {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 1.25rem;
        padding-block: 2.25rem;
        padding-inline: 1.5rem;
    }

    .lh-footer-inner:not(.lh-footer-inner-rich) .lh-footer-copy {
        text-align: center;
    }

    .lh-footer-inner-rich {
        grid-template-columns: 1.5fr 1fr;
        grid-template-areas:
            "brand contact"
            "meta meta";
        align-items: start;
        column-gap: 2.5rem;
        row-gap: 1.75rem;
        padding-block: 3rem 2.15rem;
        padding-inline: 1.5rem;
    }

    .lh-footer-inner-rich .lh-footer-brand-col { grid-area: brand; }
    .lh-footer-inner-rich .lh-footer-contact-col { grid-area: contact; }
    .lh-footer-inner-rich .lh-footer-meta {
        grid-area: meta;
        padding-top: 1.35rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.lh-footer-brand-col {
    display: grid;
    gap: 0.65rem;
    justify-items: start;
    text-align: left;
}

.lh-footer-brand-block {
    display: flex;
    align-items: center;
}

.lh-footer-brand {
    font-family: var(--lh-display);
    font-weight: 650;
    font-size: 1.35rem;
    color: #e8eef1;
}

.lh-footer-logo-link {
    display: inline-flex;
    text-decoration: none;
    border-radius: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lh-footer-logo-link:hover {
    transform: translateY(-1px);
}

.lh-footer-logo {
    display: block;
    width: auto;
    height: 5.75rem;
    max-width: 13.5rem;
    object-fit: contain;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.97);
    padding: 0.55rem 0.7rem;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 10px 28px rgba(0, 0, 0, 0.22);
}

@media (min-width: 768px) {
    .lh-footer-logo {
        height: 7rem;
        max-width: 16rem;
        padding: 0.7rem 0.85rem;
    }
}

.lh-footer-tagline {
    margin: 0;
    color: rgba(232, 238, 241, 0.72);
    font-size: 0.95rem;
    line-height: 1.45;
    max-width: 18rem;
}

.lh-footer-heading {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(232, 238, 241, 0.55);
}

.lh-footer-nav {
    display: none;
}

.lh-footer-contact-col,
.lh-footer-social-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
}

.lh-footer-contact-col .lh-footer-heading,
.lh-footer-social-col .lh-footer-heading {
    margin-bottom: 0;
}

.lh-footer-about-badge {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.55rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.65rem 0.95rem 0.65rem 0.8rem;
    border-radius: 999px;
    text-decoration: none !important;
    color: #e8eef1;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    background:
        linear-gradient(145deg, rgba(42, 159, 181, 0.22), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(94, 184, 204, 0.38);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 8px 20px rgba(0, 0, 0, 0.18);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.lh-footer-about-badge:hover,
.lh-footer-about-badge:focus {
    color: #fff;
    text-decoration: none !important;
    background:
        linear-gradient(145deg, rgba(42, 159, 181, 0.38), rgba(255, 255, 255, 0.08));
    border-color: rgba(126, 200, 214, 0.55);
    transform: translateY(-1px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 10px 24px rgba(0, 0, 0, 0.22);
}

.lh-footer-about-badge-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(145deg, #7ec8d6, #2a9fb5);
    box-shadow: 0 0 0 3px rgba(42, 159, 181, 0.22);
}

.lh-footer-about-badge-label {
    white-space: nowrap;
    flex: 1 1 auto;
}

.lh-footer-about-badge-arrow {
    color: rgba(126, 200, 214, 0.9);
    font-size: 0.95rem;
    line-height: 1;
    margin-left: auto;
    transition: transform 0.2s ease, color 0.2s ease;
}

.lh-footer-about-badge:hover .lh-footer-about-badge-arrow,
.lh-footer-about-badge:focus .lh-footer-about-badge-arrow {
    color: #fff;
    transform: translateX(2px);
}

.lh-nav-about {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.55rem;
    white-space: nowrap;
    text-decoration: none !important;
}

.lh-nav-about:hover,
.lh-nav-about:focus,
.lh-nav-about.is-active {
    text-decoration: none !important;
}

.lh-nav-about.is-active::after {
    display: none;
}

.lh-footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #e8eef1;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.35;
    padding: 0.55rem 0.8rem;
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.lh-footer-email:hover {
    color: #fff;
    background: rgba(42, 159, 181, 0.18);
    border-color: rgba(94, 184, 204, 0.35);
}

.lh-footer-email-icon {
    display: inline-flex;
    color: #5eb8cc;
    flex-shrink: 0;
}

.lh-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lh-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.8rem;
    color: #e8eef1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.lh-footer-social-link:hover {
    color: #fff;
    transform: translateY(-1px);
    background: rgba(42, 159, 181, 0.22);
    border-color: rgba(94, 184, 204, 0.4);
}

.lh-footer-social-facebook:hover {
    background: rgba(24, 119, 242, 0.28);
    border-color: rgba(24, 119, 242, 0.45);
}

.lh-footer-social-instagram:hover {
    background: rgba(225, 48, 108, 0.24);
    border-color: rgba(225, 48, 108, 0.4);
}

.lh-footer-social-fallback {
    font-weight: 700;
    font-size: 0.95rem;
}

.lh-footer-copy {
    margin: 0;
    color: rgba(232, 238, 241, 0.55);
    font-size: 0.88rem;
}

.lh-footer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem 1.25rem;
    width: 100%;
    margin: 0;
    color: rgba(232, 238, 241, 0.55);
    font-size: 0.88rem;
}

.lh-footer-inner-rich .lh-footer-meta {
    width: 100%;
}

.lh-footer-copyright {
    margin: 0;
    color: inherit;
}

.lh-footer-credit {
    margin: 0;
    margin-left: auto;
    color: rgba(232, 238, 241, 0.48);
    font-size: 0.8rem;
    letter-spacing: 0.01em;
    text-align: right;
}

.lh-footer-credit-link {
    display: inline-block;
    margin-left: 0.2rem;
    color: #8fd4e4;
    font-weight: 650;
    font-size: 0.84rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-bottom: 1px solid rgba(143, 212, 228, 0.35);
    transition: color 0.18s ease, border-color 0.18s ease;
}

.lh-footer-credit-link:hover,
.lh-footer-credit-link:focus {
    color: #c8eef6;
    border-bottom-color: rgba(200, 238, 246, 0.7);
}

/* Errors page */
.lh-body .display-1 {
    font-family: var(--lh-display);
}

/* Portal */
.lh-portal-hero {
    background: linear-gradient(135deg, #0c1c24 0%, #0b5f73 100%);
    color: #fff;
    padding: 1.75rem 0 1.85rem;
}

.lh-portal-hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    text-align: left;
}

.lh-portal-hero-inner-simple {
    justify-content: flex-start;
}

.lh-portal-hero-brand {
    display: block;
    flex: 1 1 16rem;
    min-width: 0;
    max-width: 40rem;
    margin: 0;
    text-align: left;
    color: inherit;
    text-decoration: none;
    border-radius: 0.35rem;
    transition: opacity 0.18s ease;
}

.lh-portal-hero-brand:hover,
.lh-portal-hero-brand:focus {
    color: inherit;
    opacity: 0.92;
    outline: none;
}

.lh-portal-hero-brand:focus-visible {
    box-shadow: 0 0 0 2px rgba(126, 200, 214, 0.55);
}

.lh-portal-kicker {
    margin: 0 0 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
}

.lh-portal-kicker-brand {
    text-transform: none;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
}

.lh-portal-title {
    margin: 0 0 0.4rem;
    font-family: var(--lh-display);
    font-size: clamp(1.65rem, 3.4vw, 2.15rem);
    font-weight: 600;
    letter-spacing: -0.03em;
}

.lh-portal-lead {
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.5;
}

.lh-portal-stat {
    display: grid;
    justify-items: end;
    text-align: right;
    min-width: 6rem;
}

.lh-portal-stat-num {
    font-family: var(--lh-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.lh-portal-stat-label {
    margin-top: 0.25rem;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.lh-portal {
    padding: 1.35rem 0 2.25rem;
}

.lh-portal-grid {
    display: grid;
    gap: 1.25rem;
}

.lh-portal-content {
    min-width: 0;
    display: grid;
    gap: 0.9rem;
}

@media (min-width: 992px) {
    .lh-portal-grid {
        grid-template-columns: 15.5rem minmax(0, 1fr);
        align-items: start;
        column-gap: 1.25rem;
        row-gap: 0.85rem;
    }

    .lh-portal-aside {
        grid-column: 1;
        align-self: start;
        position: sticky;
        top: calc(var(--lh-header-offset, 0px) + 0.75rem);
    }

    .lh-portal-content {
        grid-column: 2;
    }

    .lh-portal-main {
        min-width: 0;
        display: grid;
        gap: 0.9rem;
    }

    .lh-search-form {
        margin-bottom: 0;
    }

    .lh-portal-toolbar {
        padding: 0.85rem 0.95rem;
        border: 1px solid rgba(11, 95, 115, 0.12);
        border-radius: 0.9rem;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 10px 26px rgba(21, 32, 52, 0.05);
        margin-bottom: 0.25rem;
    }
}

.lh-mobile-filter-label {
    display: none;
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--lh-muted);
    letter-spacing: 0.01em;
}

.lh-portal-aside,
.lh-portal-rail {
    display: grid;
    gap: 1.5rem;
}

.lh-cat-nav {
    padding: 1rem;
    border: 1px solid var(--lh-line);
    border-radius: var(--lh-radius);
    background: #fff;
}

.lh-place-nav .lh-cat-link {
    padding-left: 0.55rem;
}

.lh-cat-nav-title {
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lh-muted);
}

.lh-cat-select {
    display: none;
    width: 100%;
}

.lh-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.2rem;
}

.lh-cat-link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.55rem;
    border-radius: 0.55rem;
    text-decoration: none;
    color: var(--lh-ink);
    font-size: 0.9rem;
    font-weight: 500;
}

.lh-cat-link:hover {
    background: rgba(11, 95, 115, 0.06);
    color: var(--lh-sea);
}

.lh-cat-link.is-active {
    background: rgba(11, 95, 115, 0.1);
    color: var(--lh-sea-deep);
    font-weight: 650;
}

.lh-cat-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--cat, var(--lh-sea));
    flex: 0 0 auto;
}

.lh-cat-count {
    margin-left: auto;
    color: var(--lh-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.lh-portal-toolbar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.lh-portal-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.lh-portal-sort-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem 1rem;
    width: 100%;
}

.lh-date-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.lh-day-step {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
}

.lh-day-step-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 999px;
    border: 1px solid rgba(11, 95, 115, 0.22);
    background: rgba(42, 159, 181, 0.14);
    color: var(--lh-sea);
    text-decoration: none;
    box-shadow: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.lh-day-step-btn:hover,
.lh-day-step-btn:focus {
    border-color: rgba(11, 95, 115, 0.38);
    background: rgba(42, 159, 181, 0.24);
    color: var(--lh-sea-deep);
    transform: translateY(-1px);
}

.lh-day-step-btn svg {
    width: 0.78rem;
    height: 0.78rem;
}

.lh-today-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(11, 95, 115, 0.28);
    background: #fff;
    color: var(--lh-sea-deep);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lh-today-badge:hover {
    border-color: var(--lh-sea);
    color: var(--lh-sea);
}

.lh-today-badge.is-active {
    background: var(--lh-header);
    border-color: var(--lh-header);
    color: #fff;
}

.lh-scope-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.lh-engage-filters {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-right: auto;
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(11, 95, 115, 0.06);
    border: 1px solid rgba(11, 95, 115, 0.12);
}

.lh-engage-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    min-height: 2.25rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--lh-sea-deep);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.lh-engage-icon-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.lh-engage-icon-btn-icon svg {
    display: block;
    width: 16px;
    height: 16px;
}

.lh-engage-icon-btn-count {
    color: var(--lh-muted);
    font-weight: 650;
}

.lh-engage-icon-btn:hover {
    color: var(--lh-sea);
    background: #fff;
    border-color: rgba(11, 95, 115, 0.2);
    text-decoration: none;
}

.lh-engage-icon-btn:hover .lh-engage-icon-btn-count {
    color: var(--lh-sea);
}

.lh-engage-icon-btn.is-active.is-interested {
    background: #fff8e8;
    border-color: rgba(224, 161, 6, 0.45);
    color: #c9920a;
    box-shadow: 0 1px 2px rgba(201, 146, 10, 0.12);
}

.lh-engage-icon-btn.is-active.is-interested .lh-engage-icon-btn-count {
    color: #a67a08;
}

.lh-scope-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(11, 95, 115, 0.22);
    background: #fff;
    color: var(--lh-sea-deep);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 650;
}

.lh-scope-badge span {
    color: var(--lh-muted);
    font-weight: 600;
}

.lh-scope-badge:hover {
    border-color: var(--lh-sea);
    color: var(--lh-sea);
}

.lh-scope-badge.is-active {
    background: var(--lh-header);
    border-color: var(--lh-header);
    color: #fff;
}

.lh-scope-badge.is-active span {
    color: rgba(255, 255, 255, 0.72);
}

.lh-search-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.lh-search-input {
    flex: 1 1 14rem;
    min-width: 0;
    padding: 0.6rem 0.85rem;
    border: 1px solid var(--lh-line);
    border-radius: 0.65rem;
    background: #fff;
    color: var(--lh-ink);
    font-size: 0.95rem;
}

.lh-search-input:focus {
    outline: 0;
    border-color: rgba(11, 95, 115, 0.45);
    box-shadow: 0 0 0 0.18rem rgba(11, 95, 115, 0.12);
}

.lh-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.55rem 1rem;
    border: 0;
    border-radius: 999px;
    background: var(--lh-header);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 650;
    cursor: pointer;
}

.lh-search-btn-icon {
    display: none;
}

.lh-search-btn:hover {
    background: var(--lh-sea);
}

.lh-search-clear {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lh-muted);
    text-decoration: none;
}

.lh-search-clear:hover {
    color: var(--lh-sea);
}

.lh-event-row.is-past {
    opacity: 0.92;
}

.lh-event-row.is-cancelled,
.lh-event-card.is-cancelled {
    background:
        linear-gradient(135deg, rgba(148, 58, 58, 0.06), rgba(148, 58, 58, 0.02)),
        #f7f2f2;
    border-color: rgba(148, 58, 58, 0.22);
    box-shadow: none;
}

.lh-event-row.is-cancelled:hover,
.lh-event-card.is-cancelled:hover {
    border-color: rgba(148, 58, 58, 0.34);
    box-shadow: 0 10px 28px rgba(90, 30, 30, 0.08);
}

.lh-event-row.is-cancelled .lh-event-thumb img,
.lh-event-row.is-cancelled .lh-event-title {
    filter: grayscale(0.35);
}

.lh-event-row.is-cancelled .lh-event-title {
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    text-decoration-color: rgba(120, 40, 40, 0.45);
    color: #5c3333;
}

.lh-event-cancelled {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #8f3a3a, #6e2c2c);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-transform: none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.lh-event-cancelled::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #ffd0d0;
    box-shadow: 0 0 0 2px rgba(255, 208, 208, 0.35);
}

.lh-event-summary.is-cancelled {
    padding: 1rem 1.15rem 1.2rem;
    border: 1px solid rgba(148, 58, 58, 0.2);
    border-radius: var(--lh-radius);
    background:
        linear-gradient(135deg, rgba(148, 58, 58, 0.07), rgba(148, 58, 58, 0.02)),
        rgba(255, 255, 255, 0.96);
}

.lh-event-cancelled-banner {
    margin: 0 0 0.85rem;
}

.lh-event-past {
    display: inline-flex;
    padding: 0.12rem 0.5rem;
    border-radius: 999px;
    background: rgba(18, 26, 33, 0.08);
    color: var(--lh-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Share */
.lh-share {
    position: relative;
    display: inline-block;
}

.lh-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(11, 95, 115, 0.22);
    border-radius: 999px;
    background: #fff;
    color: var(--lh-sea-deep);
    font-size: 0.86rem;
    font-weight: 650;
    cursor: pointer;
}

.lh-share-btn:hover,
.lh-share.is-open .lh-share-btn {
    border-color: var(--lh-sea);
    color: var(--lh-sea);
}

.lh-share-icon {
    display: inline-flex;
}

.lh-share-hero .lh-share-btn {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.lh-share-hero .lh-share-btn:hover,
.lh-share-hero.is-open .lh-share-btn {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.lh-share-aside {
    display: block;
    margin-top: 1rem;
}

.lh-share-aside .lh-share-btn {
    width: 100%;
    justify-content: center;
}

.lh-share-compact .lh-share-btn {
    box-sizing: border-box;
    width: 2.35rem;
    height: 2.35rem;
    min-width: 2.35rem;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.lh-share-compact .lh-share-icon,
.lh-share-compact .lh-share-icon svg {
    display: block;
    width: 16px;
    height: 16px;
}

.lh-share-compact .lh-share-btn-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lh-event-row-aside .lh-favorite-btn {
    box-sizing: border-box;
    width: 2.35rem;
    height: 2.35rem;
    min-width: 2.35rem;
    padding: 0;
    border: 1px solid rgba(11, 95, 115, 0.22);
    color: var(--lh-sea-deep);
}

.lh-event-toolbar-actions .lh-share-aside .lh-share-btn {
    box-sizing: border-box;
    height: 2.45rem;
}

.lh-event-toolbar-actions .lh-favorite-btn,
.lh-favorite-detail .lh-favorite-btn {
    box-sizing: border-box;
    width: 2.45rem;
    height: 2.45rem;
    min-width: 2.45rem;
    padding: 0;
    border: 1px solid rgba(11, 95, 115, 0.22);
    border-radius: 999px;
    background: #fff;
    color: var(--lh-sea-deep);
}

.lh-share-panel {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    z-index: 40;
    width: min(17.5rem, 78vw);
    padding: 0.85rem;
    border: 1px solid var(--lh-line);
    border-radius: 0.85rem;
    background: #fff;
    box-shadow: var(--lh-shadow);
}

.lh-share-hero .lh-share-panel,
.lh-share-aside .lh-share-panel {
    left: 0;
    right: auto;
}

.lh-share-panel-title {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lh-muted);
}

.lh-share-actions {
    display: grid;
    gap: 0.35rem;
}

.lh-share-action {
    display: block;
    width: 100%;
    padding: 0.55rem 0.7rem;
    border: 1px solid transparent;
    border-radius: 0.55rem;
    background: rgba(11, 95, 115, 0.05);
    color: var(--lh-ink);
    text-align: left;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 550;
    cursor: pointer;
}

.lh-share-action:hover {
    background: rgba(11, 95, 115, 0.1);
    color: var(--lh-sea);
}

.lh-share-feedback {
    margin: 0.55rem 0 0;
    color: var(--lh-sea);
    font-size: 0.8rem;
    font-weight: 600;
}

.lh-date-form {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    position: relative;
}

.lh-date-input {
    width: 8.6rem;
    min-height: 2.15rem;
    padding: 0.35rem 0.55rem;
    border: 1px solid var(--lh-line);
    border-radius: 0.55rem;
    background: #fff;
    color: var(--lh-ink);
    font-size: 0.86rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    cursor: pointer;
}

.lh-date-input::placeholder {
    color: var(--lh-muted);
    opacity: 0.85;
}

.lh-date-input:focus {
    outline: 2px solid rgba(11, 95, 115, 0.25);
    outline-offset: 1px;
    border-color: var(--lh-sea);
}

.lh-date-clear {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lh-muted);
    text-decoration: none;
}

.lh-date-clear:hover {
    color: var(--lh-sea);
}

/* Custom datepicker popup (appended to body) */
.lh-dp {
    position: absolute;
    z-index: 2000;
    width: 17.5rem;
    padding: 0.75rem;
    border: 1px solid var(--lh-line);
    border-radius: calc(var(--lh-radius) - 0.1rem);
    background: #fff;
    box-shadow: 0 12px 28px rgba(18, 26, 33, 0.12);
}

.lh-dp[hidden] {
    display: none !important;
}

.lh-dp-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
}

.lh-dp-title {
    font-size: 0.9rem;
    font-weight: 650;
    color: var(--lh-sea-deep);
    text-align: center;
    flex: 1;
}

.lh-dp-nav {
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--lh-line);
    border-radius: 999px;
    background: #fff;
    color: var(--lh-sea-deep);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

.lh-dp-nav:hover {
    border-color: var(--lh-sea);
    color: var(--lh-sea);
}

.lh-dp-dow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.15rem;
    margin-bottom: 0.35rem;
}

.lh-dp-dow span {
    text-align: center;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lh-muted);
    padding: 0.2rem 0;
}

.lh-dp-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.2rem;
}

.lh-dp-empty {
    min-height: 2rem;
}

.lh-dp-day {
    min-height: 2rem;
    border: 0;
    border-radius: 0.45rem;
    background: transparent;
    color: var(--lh-ink);
    font-size: 0.86rem;
    font-variant-numeric: tabular-nums;
    cursor: pointer;
}

.lh-dp-day:hover {
    background: rgba(11, 95, 115, 0.08);
    color: var(--lh-sea);
}

.lh-dp-day.is-today {
    box-shadow: inset 0 0 0 1px rgba(11, 95, 115, 0.35);
}

.lh-dp-day.is-selected {
    background: var(--lh-header, var(--lh-sea-deep));
    color: #fff;
}

.lh-dp-day.is-selected:hover {
    background: var(--lh-sea);
    color: #fff;
}

.lh-portal-heading {
    margin: 0 0 0.2rem;
    font-family: var(--lh-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.lh-portal-meta {
    color: var(--lh-muted);
    font-size: 0.88rem;
}

.lh-sort-form {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.lh-sort-label {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lh-muted);
}

.lh-sort-select {
    min-width: 9.5rem;
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--lh-line);
    border-radius: 0.55rem;
    background: #fff;
    color: var(--lh-ink);
    font-size: 0.88rem;
    font-weight: 500;
}

.lh-empty {
    padding: 1.5rem;
    border: 1px dashed var(--lh-line);
    border-radius: var(--lh-radius);
    background: rgba(255, 255, 255, 0.7);
    color: var(--lh-muted);
}

.lh-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    padding: 0.85rem 0.35rem;
}

.lh-pagination-status {
    flex: 1 0 100%;
    margin: 0 0 0.15rem;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lh-muted);
}

.lh-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.6rem;
    min-height: 2.6rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--lh-line);
    border-radius: 0.55rem;
    background: #fff;
    color: var(--lh-ink);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 1px 0 rgba(12, 28, 36, 0.04);
}

@media (max-width: 575.98px) {
    .lh-pagination {
        gap: 0.35rem;
        margin-top: 1.25rem;
        padding: 1rem 0.15rem 0.35rem;
        border-top: 1px solid var(--lh-line);
    }

    .lh-page-link {
        min-width: 2.85rem;
        min-height: 2.85rem;
        font-size: 0.92rem;
    }

    .lh-page-link.lh-page-nav {
        flex: 1 1 auto;
        min-width: 0;
        padding-inline: 0.85rem;
    }
}

.lh-page-link:hover {
    border-color: rgba(11, 95, 115, 0.35);
    color: var(--lh-sea);
}

.lh-page-link.is-active {
    background: var(--lh-header);
    border-color: var(--lh-header);
    color: #fff;
}

.lh-page-link.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.lh-page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    color: var(--lh-muted);
    font-weight: 700;
    letter-spacing: 0.04em;
    user-select: none;
}

.lh-ad-slot {
    position: relative;
    display: grid;
    place-items: center;
    gap: 0.25rem;
    border: 1px dashed rgba(18, 26, 33, 0.18);
    border-radius: var(--lh-radius);
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(18, 26, 33, 0.015),
            rgba(18, 26, 33, 0.015) 8px,
            rgba(18, 26, 33, 0.04) 8px,
            rgba(18, 26, 33, 0.04) 16px
        );
    color: var(--lh-muted);
    text-align: center;
    overflow: hidden;
}

.lh-ad-filled {
    border-style: solid;
    background: #0f1f27;
    padding: 0;
}

.lh-ad-link {
    display: block;
    width: 100%;
    height: 100%;
}

.lh-ad-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lh-ad-badge {
    position: absolute;
    top: 0.45rem;
    left: 0.45rem;
    z-index: 1;
    padding: 0.2rem 0.45rem;
    border-radius: 0.35rem;
    background: rgba(12, 28, 36, 0.72);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lh-ad-slot-leader {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 970 / 180;
    height: auto;
    margin-bottom: 1.15rem;
}

.lh-ad-slot-side {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 300 / 250;
    height: auto;
}

.lh-ad-slot-rail {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 300 / 600;
    height: auto;
}

.lh-ad-slot-inline {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 728 / 90;
    height: auto;
    margin: 1rem 0 1.25rem;
}

/* Lab: slightly taller inline so photo+copy stay readable */
.lh-lab .lh-ad-slot-inline {
    aspect-ratio: 728 / 140;
}

.lh-ad-slot-footer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 970 / 180;
    height: auto;
    margin-top: 1.5rem;
}

@media (max-width: 575.98px) {
    .lh-ad-slot-leader,
    .lh-ad-slot-inline,
    .lh-ad-slot-footer {
        aspect-ratio: 16 / 5;
    }

    .lh-ad-slot-side {
        aspect-ratio: 16 / 10;
    }

    .lh-ad-slot-rail {
        aspect-ratio: 3 / 4;
        max-height: 22rem;
    }
}

.lh-sponsors {
    width: 100%;
    margin: 0;
    padding: 2rem 0 2.15rem;
    background:
        linear-gradient(180deg, rgba(12, 28, 36, 0.04) 0%, transparent 18%),
        linear-gradient(135deg, #dceef2 0%, #e8f3f5 38%, #f0ebe3 100%);
    border-top: 1px solid rgba(11, 95, 115, 0.16);
    border-bottom: 1px solid rgba(12, 28, 36, 0.08);
}

.lh-sponsors-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-inline: 1rem;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .lh-sponsors {
        padding: 2.35rem 0 2.5rem;
    }

    .lh-sponsors-inner {
        padding-inline: 1.5rem;
    }
}

.lh-sponsors-label {
    margin: 0 0 1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lh-sea-deep);
    text-align: center;
}

.lh-sponsors-row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(11.5rem, 1fr));
    align-items: stretch;
    gap: 0.85rem;
}

.lh-sponsor {
    display: flex;
    min-width: 0;
    max-width: none;
}

.lh-sponsor-link {
    display: grid;
    grid-template-columns: 4.75rem minmax(0, 1fr);
    gap: 0.7rem;
    align-items: center;
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(18, 26, 33, 0.1);
    box-shadow: 0 10px 26px rgba(12, 28, 36, 0.07);
    text-decoration: none !important;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lh-sponsor-link:hover,
.lh-sponsor-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(12, 28, 36, 0.12);
}

.lh-sponsor-media {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0;
    background: #0f1f27;
}

.lh-sponsor-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lh-sponsor-copy {
    display: grid;
    gap: 0.25rem;
    min-width: 0;
}

.lh-sponsor-name {
    font-family: var(--lh-display);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--lh-ink);
}

.lh-sponsor-caption {
    font-size: 0.74rem;
    line-height: 1.35;
    color: var(--lh-muted);
}

.lh-sponsor-gold .lh-sponsor-link {
    border-color: rgba(196, 149, 42, 0.42);
    background: linear-gradient(160deg, #fff8e4 0%, #fff 58%);
}

.lh-sponsor-gold .lh-sponsor-link:hover,
.lh-sponsor-gold .lh-sponsor-link:focus-visible {
    border-color: rgba(196, 149, 42, 0.7);
}

.lh-sponsor-silver .lh-sponsor-link {
    border-color: rgba(11, 95, 115, 0.28);
    background: linear-gradient(160deg, #eef7fa 0%, #fff 58%);
}

.lh-sponsor-silver .lh-sponsor-link:hover,
.lh-sponsor-silver .lh-sponsor-link:focus-visible {
    border-color: rgba(11, 95, 115, 0.5);
}

.lh-sponsor-bronze .lh-sponsor-link {
    border-color: rgba(176, 122, 74, 0.36);
    background: linear-gradient(160deg, #faf4ec 0%, #fff 58%);
}

.lh-sponsor-bronze .lh-sponsor-link:hover,
.lh-sponsor-bronze .lh-sponsor-link:focus-visible {
    border-color: rgba(176, 122, 74, 0.58);
}

@media (max-width: 575.98px) {
    .lh-sponsors {
        padding: 1.5rem 0 1.65rem;
    }

    .lh-sponsors-inner {
        padding-inline: 0.75rem;
    }

    .lh-sponsors-row {
        grid-template-columns: repeat(auto-fit, minmax(9.75rem, 1fr));
        gap: 0.65rem;
    }

    .lh-sponsor-link {
        grid-template-columns: 3.6rem minmax(0, 1fr);
        padding: 0.55rem 0.6rem;
        gap: 0.55rem;
    }

    .lh-sponsor-name {
        font-size: 0.9rem;
    }

    .lh-sponsor-caption {
        font-size: 0.7rem;
    }
}

.lh-ad-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lh-ad-placeholder {
    font-size: 0.8rem;
}

.lh-event-poster {
    margin: 0 0 1.25rem;
    border-radius: var(--lh-radius);
    overflow: hidden;
    border: 1px solid var(--lh-line);
    background: #0f1f27;
    max-width: 100%;
}

.lh-event-poster img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 28rem;
    object-fit: cover;
}

.lh-hero-has-poster {
    background-image:
        linear-gradient(115deg, rgba(12, 28, 36, 0.92) 0%, rgba(11, 95, 115, 0.78) 55%, rgba(12, 28, 36, 0.62) 100%),
        var(--lh-event-poster);
    background-size: cover;
    background-position: center;
}

.lh-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

@media (min-width: 768px) {
    .lh-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.lh-gallery-item {
    display: block;
    border-radius: 0.65rem;
    overflow: hidden;
    border: 1px solid var(--lh-line);
    aspect-ratio: 3 / 2;
    background: rgba(11, 95, 115, 0.08);
}

.lh-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.lh-gallery-item:hover img {
    transform: scale(1.04);
}

/* Photo grid (event extras & reusable galleries) */
.lh-photo-gallery {
    margin-top: 0.25rem;
}

.lh-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0.75rem;
}

@media (min-width: 576px) {
    .lh-photo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .lh-photo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem 0.85rem;
    }
}

@media (min-width: 1200px) {
    .lh-photo-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.lh-photo-card {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.lh-photo-card-media {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #0f1f27;
    cursor: zoom-in;
}

.lh-photo-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.28s ease;
}

.lh-photo-card-media:hover img,
.lh-photo-card-media:focus img {
    transform: scale(1.035);
}

.lh-photo-card-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    text-align: center;
}

.lh-photo-card-author {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--lh-ink);
    line-height: 1.25;
}

.lh-photo-card-status {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: var(--lh-muted);
}

.lh-photo-card-status-icon {
    width: 0.72rem;
    height: 0.72rem;
    flex-shrink: 0;
    border-radius: 0.12rem;
    background: rgba(11, 95, 115, 0.2);
    box-shadow: inset 0 0 0 1.5px var(--lh-sea);
    position: relative;
}

.lh-photo-card-status-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.22rem;
    height: 0.22rem;
    border-radius: 50%;
    background: var(--lh-sea);
    transform: translate(-50%, -50%);
}

.lh-photo-card-delete {
    display: flex;
    justify-content: center;
}

.lh-breadcrumb {
    position: sticky;
    top: var(--lh-header-offset);
    z-index: 1025;
    border-bottom: 1px solid var(--lh-line);
    background: rgba(247, 250, 251, 0.94);
    backdrop-filter: saturate(1.15) blur(10px);
    -webkit-backdrop-filter: saturate(1.15) blur(10px);
}

.lh-breadcrumb-below-hero {
    margin: 0;
    border-top: 1px solid rgba(18, 26, 33, 0.06);
    border-bottom: 1px solid rgba(18, 26, 33, 0.08);
    background: rgba(247, 250, 251, 0.94);
}

.lh-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem 0.45rem;
    list-style: none;
    margin: 0;
    padding: 0.7rem 0;
    font-size: 0.86rem;
    color: var(--lh-muted);
}

.lh-breadcrumb-below-hero .lh-breadcrumb-list {
    padding: 0.55rem 0;
    font-size: 0.78rem;
    letter-spacing: 0.01em;
}

.lh-breadcrumb-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
}

.lh-breadcrumb-list li:not(:last-child)::after {
    content: "›";
    color: rgba(18, 26, 33, 0.28);
    font-weight: 500;
}

.lh-breadcrumb-list a {
    color: var(--lh-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}

.lh-breadcrumb-list a:hover {
    color: var(--lh-sea);
    text-decoration: none;
}

.lh-breadcrumb-list span {
    color: var(--lh-ink);
    font-weight: 550;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(22rem, 55vw);
}

.lh-breadcrumb-below-hero .lh-breadcrumb-list span {
    color: var(--lh-muted);
    font-weight: 500;
}

.lh-kicker-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.78);
}

.lh-kicker-link:hover {
    color: #fff;
    text-decoration: underline;
}

.lh-aside-link {
    display: inline-flex;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--lh-line);
    color: var(--lh-sea);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.lh-aside-link:hover {
    text-decoration: underline;
}

.lh-event-pager {
    display: grid;
    gap: 0.85rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    padding: 1.25rem 0.15rem 0.5rem;
    border-top: 1px solid var(--lh-line);
}

@media (max-width: 575.98px) {
    .lh-event-pager {
        gap: 1rem;
        padding-top: 1.35rem;
    }

    .lh-event-pager-link {
        padding: 0.85rem 0.95rem;
        border: 1px solid var(--lh-line);
        border-radius: var(--lh-radius);
        background: #fff;
    }

    .lh-event-pager-side.is-next .lh-event-pager-link {
        justify-items: end;
    }
}

@media (min-width: 768px) {
    .lh-event-pager {
        grid-template-columns: 1fr auto 1fr;
        align-items: start;
        gap: 1rem;
    }
}

.lh-event-pager-side.is-next {
    text-align: right;
}

.lh-event-pager-center {
    display: flex;
    justify-content: center;
}

.lh-event-pager-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.95rem;
    border: 1px solid var(--lh-line);
    border-radius: 999px;
    background: #fff;
    color: var(--lh-sea-deep);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 650;
}

.lh-event-pager-back .lh-event-back-icon {
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
    border-radius: 0;
}

.lh-event-pager-back:hover {
    border-color: rgba(11, 95, 115, 0.35);
    color: var(--lh-sea);
    text-decoration: none;
}

.lh-event-pager-back:hover .lh-event-back-icon {
    transform: translateX(-2px);
    background: transparent;
}

.lh-event-pager-link {
    display: grid;
    gap: 0.2rem;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.lh-event-pager-link.is-next {
    justify-items: end;
    text-align: right;
}

.lh-event-pager-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lh-muted);
}

.lh-event-pager-title {
    color: var(--lh-sea-deep);
    font-weight: 650;
    font-size: 0.95rem;
    line-height: 1.35;
}

.lh-event-pager-link:hover .lh-event-pager-title {
    color: var(--lh-sea);
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .lh-portal-grid {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
    }

    /* Flatten wrapper so search → filters → results can be ordered. */
    .lh-portal-content {
        display: contents;
    }

    .lh-search-form {
        order: 1;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: stretch;
        gap: 0.5rem;
        margin: 0;
        padding: 0.9rem;
        border: 1px solid var(--lh-line);
        border-radius: var(--lh-radius);
        background: #fff;
    }

    .lh-portal-aside {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        margin: 0;
        padding: 0.9rem;
        border: 1px solid var(--lh-line);
        border-radius: var(--lh-radius);
        background: #fff;
    }

    .lh-portal-main {
        order: 3;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
    }

    .lh-search-clear {
        grid-column: 1 / -1;
        margin-top: 0;
    }

    .lh-search-input {
        width: 100%;
        min-height: 2.7rem;
        padding: 0.55rem 0.85rem;
        border-radius: 0.65rem;
        font-size: 1rem;
    }

    .lh-search-btn {
        width: 2.7rem;
        min-height: 2.7rem;
        padding: 0;
        border-radius: 0.65rem;
        flex: 0 0 auto;
    }

    .lh-search-btn-label {
        display: none;
    }

    .lh-search-btn-icon {
        display: block;
    }

    .lh-cat-nav,
    .lh-place-nav {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .lh-place-nav {
        padding-top: 0.75rem;
        border-top: 1px solid var(--lh-line);
    }

    .lh-cat-nav-title {
        display: none;
    }

    .lh-mobile-filter-label {
        display: block;
        margin: 0;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--lh-muted);
    }

    .lh-cat-select,
    .lh-place-select {
        display: block;
        width: 100%;
        min-height: 2.7rem;
        padding: 0.55rem 2.25rem 0.55rem 0.85rem;
        border: 1px solid var(--lh-line);
        border-radius: 0.65rem;
        background: #fff;
        color: var(--lh-ink);
        font-size: 1rem;
        font-weight: 500;
        box-shadow: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%230b5f73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 1rem;
    }

    .lh-cat-select:focus,
    .lh-place-select:focus {
        border-color: rgba(11, 95, 115, 0.45);
        box-shadow: 0 0 0 0.18rem rgba(11, 95, 115, 0.12);
        outline: none;
    }

    .lh-cat-list {
        display: none;
    }

    .lh-portal-toolbar {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        margin: 0;
        padding: 0.9rem;
        border: 1px solid var(--lh-line);
        border-radius: var(--lh-radius);
        background: #fff;
    }

    .lh-portal-controls {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
    }

    .lh-scope-filters {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        width: 100%;
        border: 1px solid var(--lh-line);
        border-radius: 0.65rem;
        overflow: hidden;
        background: rgba(11, 95, 115, 0.04);
    }

    .lh-scope-badge {
        justify-content: center;
        min-height: 2.55rem;
        padding: 0.45rem 0.35rem;
        border: 0;
        border-radius: 0;
        border-right: 1px solid var(--lh-line);
        background: transparent;
        font-size: 0.74rem;
        letter-spacing: 0;
        text-align: center;
    }

    .lh-scope-badge:last-child {
        border-right: 0;
    }

    .lh-scope-badge span {
        display: inline;
        margin-left: 0.15rem;
    }

    .lh-scope-badge.is-active {
        background: var(--lh-header);
        color: #fff;
    }

    .lh-date-filters {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }

    .lh-today-badge {
        justify-content: center;
        min-height: 2.55rem;
        padding: 0.45rem 0.75rem;
        border-radius: 0.65rem;
    }

    .lh-date-form {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        min-width: 0;
        width: 100%;
    }

    .lh-date-input {
        flex: 1 1 auto;
        width: 100%;
        min-height: 2.55rem;
        border-radius: 0.65rem;
        font-size: 0.95rem;
    }

    .lh-portal-sort-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        width: 100%;
        padding-top: 0.85rem;
        border-top: 1px solid var(--lh-line);
    }

    .lh-engage-filters {
        margin-right: 0;
        flex: 0 0 auto;
    }

    .lh-sort-form {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        flex: 1 1 12rem;
        min-width: 0;
        justify-content: flex-end;
    }

    .lh-sort-label {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 0.8rem;
    }

    .lh-sort-select {
        flex: 1 1 auto;
        min-width: 0;
        min-height: 2.55rem;
        max-width: none;
        border-radius: 0.65rem;
        font-size: 0.9rem;
    }

    .lh-event-list {
        margin-top: 0;
    }

    .lh-empty {
        margin-top: 0;
    }
}

/* Motion */
@keyframes lh-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lh-float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-18px, -12px, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .lh-hero-content,
    .lh-feature,
    .lh-auth-card,
    .lh-hero-glow {
        animation: none !important;
    }

    .lh-feature:hover {
        transform: none;
    }
}

/* Mobile refinements */
@media (max-width: 575.98px) {
    .lh-hero-home,
    .lh-hero-location {
        --lh-hero-height: 250px;
        align-items: center;
        text-align: left;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        background-position: center center;
    }

    .lh-hero-event {
        --lh-hero-height: 148px;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .lh-hero-actions .btn {
        width: 100%;
    }

    .lh-nav-actions {
        padding-top: 0.75rem;
        padding-bottom: 0.5rem;
        gap: 0.5rem !important;
    }

    .lh-nav-actions .btn,
    .lh-nav-actions .lh-btn-ghost {
        width: 100%;
    }

    .lh-portal-stat {
        justify-items: start;
        text-align: left;
    }
}

/* Admin events */
.lh-admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.lh-admin-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.lh-admin-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--lh-line);
    border-radius: var(--lh-radius);
    background: rgba(255, 255, 255, 0.92);
}

.lh-admin-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.lh-admin-table th,
.lh-admin-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--lh-line);
    vertical-align: middle;
}

.lh-admin-table th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(12, 28, 36, 0.55);
}

.lh-admin-sort {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.lh-admin-sort:hover,
.lh-admin-sort.is-active {
    color: var(--lh-sea);
}

.lh-admin-table tr:last-child td {
    border-bottom: 0;
}

.lh-admin-event-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lh-admin-event-thumb {
    width: 48px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.4rem;
    border: 1px solid var(--lh-line);
}

.lh-admin-event-title {
    display: inline;
    color: var(--lh-ink);
    font-weight: 700;
    text-decoration: none;
    line-height: 1.35;
}

.lh-admin-event-title:hover,
.lh-admin-event-title:focus {
    color: var(--lh-sea);
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.lh-admin-muted {
    font-size: 0.82rem;
    color: rgba(12, 28, 36, 0.55);
}

.lh-admin-count {
    margin: 0;
    color: rgba(12, 28, 36, 0.55);
    font-size: 0.88rem;
    font-weight: 600;
}

.lh-admin-col-num {
    width: 2.75rem;
    text-align: right;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.lh-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 650;
    text-transform: uppercase;
    background: rgba(12, 28, 36, 0.08);
}

.lh-status-pill-icon {
    flex-shrink: 0;
}

.lh-status-pill-icon-only {
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
}

.lh-admin-status-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    align-items: center;
    color: var(--lh-muted, #6c757d);
    font-size: 0.85rem;
}

.lh-admin-status-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.lh-admin-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    line-height: 1;
}

.lh-status-pill.status-approved {
    background: rgba(25, 135, 84, 0.12);
    color: #146c43;
}

.lh-status-pill.status-pending {
    background: rgba(255, 193, 7, 0.18);
    color: #997404;
}

.lh-status-pill.status-cancelled {
    background: rgba(220, 53, 69, 0.12);
    color: #b02a37;
}

.lh-status-pill.status-rejected {
    background: rgba(108, 117, 125, 0.16);
    color: #495057;
}

.lh-admin-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.lh-admin-photo {
    margin: 0;
    display: grid;
    gap: 0.45rem;
}

.lh-admin-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0.55rem;
    border: 1px solid var(--lh-line);
}

.lh-admin-cover-preview img {
    border-radius: 0.55rem;
    border: 1px solid var(--lh-line);
    object-fit: cover;
}

.lh-admin-form-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--lh-line);
}

.lh-admin-back {
    font-weight: 600;
    color: var(--lh-sea);
    text-decoration: none;
}

.lh-admin-back:hover {
    text-decoration: underline;
}

.lh-admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.lh-admin-side {
    position: sticky;
    top: 5.5rem;
}

.lh-admin-event-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.lh-admin-event-form .lh-panel {
    margin-bottom: 0;
}

.lh-admin-block-title {
    margin: 0 0 1.1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lh-muted, #6b7a84);
}

.lh-form-section {
    margin: 0 0 1.35rem;
    padding: 1rem 1.05rem 1.15rem;
    border: 1px solid rgba(11, 95, 115, 0.12);
    border-radius: 0.75rem;
    background: rgba(11, 95, 115, 0.03);
}

.lh-form-section--last {
    margin-bottom: 0;
}

.lh-form-section-title {
    margin: 0 0 0.85rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(11, 95, 115, 0.12);
    font-size: 0.92rem;
    font-weight: 650;
    color: var(--lh-ink, #12233a);
    letter-spacing: -0.01em;
}

.lh-admin-block-subtitle {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    font-weight: 650;
}

.lh-admin-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1rem;
}

.lh-admin-multiselect {
    min-height: 9.5rem;
}

.lh-select-filter {
    display: grid;
    gap: 0.4rem;
    position: relative;
}

.lh-select-filter-input {
    font-size: 0.9rem;
    padding-block: 0.48rem;
    padding-inline: 0.8rem 2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236b8794' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='7' cy='7' r='4.5'/%3E%3Cpath d='m11 11 3 3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 0.95rem;
}

.lh-select-filter-input::-webkit-search-cancel-button {
    margin-right: 0.15rem;
}

.lh-select-filter .lh-admin-multiselect,
.lh-select-filter select.form-select {
    margin-top: 0;
}

.lh-select-filter-native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.lh-select-filter-results {
    list-style: none;
    margin: 0;
    padding: 0.3rem;
    max-height: 14rem;
    overflow: auto;
    border: 1px solid var(--lh-line, #d5e0e5);
    border-radius: 0.65rem;
    background: #fff;
    box-shadow: 0 12px 28px rgba(7, 52, 69, 0.12);
    z-index: 20;
}

.lh-select-filter-option {
    display: block;
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 0.45rem;
    cursor: pointer;
    color: #17333d;
    font-size: 0.92rem;
    line-height: 1.35;
}

.lh-select-filter-option:hover,
.lh-select-filter-option.is-active {
    background: rgba(11, 95, 115, 0.1);
}

.lh-select-filter-option.is-selected {
    font-weight: 650;
    color: #0b5f73;
    background: rgba(11, 95, 115, 0.08);
}

.lh-select-filter-option.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.lh-select-filter-empty {
    padding: 0.65rem 0.7rem;
    color: #6b8794;
    font-size: 0.88rem;
}

.lh-admin-details {
    border: 1px solid var(--lh-line);
    border-radius: 0.55rem;
    padding: 0.65rem 0.85rem;
    background: color-mix(in srgb, var(--lh-bg, #fff) 88%, var(--lh-line));
}

.lh-admin-details > summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.92rem;
    list-style: none;
}

.lh-admin-details > summary::-webkit-details-marker {
    display: none;
}

.lh-admin-details > summary::before {
    content: '+';
    display: inline-block;
    width: 1.1rem;
    color: var(--lh-sea, #1f6f8b);
    font-weight: 700;
}

.lh-admin-details[open] > summary::before {
    content: '−';
}

.lh-admin-details-body {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--lh-line);
}

.lh-admin-event-side .lh-admin-cover-preview img {
    width: 100%;
    max-width: 11rem;
    height: auto;
    aspect-ratio: 3 / 4;
}

.lh-admin-danger-panel {
    padding: 0.85rem;
}

.lh-event-series-day {
    display: inline;
    margin-left: 0.35rem;
    font-size: 0.82em;
    font-weight: 500;
    color: var(--lh-muted, #6b7a84);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.lh-event-fact .lh-event-series-day {
    display: block;
    margin-left: 0;
    margin-top: 0.2rem;
}

.lh-event-meta .lh-event-series-day::before {
    content: '·';
    margin-right: 0.35rem;
    color: var(--lh-line, #c9d2d8);
}

@media (max-width: 991.98px) {
    .lh-admin-side {
        position: static;
    }

    .lh-admin-field-grid {
        grid-template-columns: 1fr;
    }
}

/* Carousel + lightbox */
.lh-carousel {
    border-radius: calc(var(--lh-radius) + 0.1rem);
    overflow: hidden;
    border: 1px solid var(--lh-line);
    background: #0f1f27;
}

.lh-carousel-frame,
.lh-poster-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.lh-carousel-frame img,
.lh-poster-trigger img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 28rem;
    object-fit: cover;
}

.lh-carousel .carousel-indicators {
    margin-bottom: 0.75rem;
}

.lh-carousel .carousel-control-prev,
.lh-carousel .carousel-control-next {
    width: 12%;
}

.lh-lightbox {
    position: relative;
    border: 0;
    background: #0c1c24;
    overflow: hidden;
}

.lh-lightbox-dialog {
    max-width: min(96vw, 1100px);
}

.lh-lightbox-close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 3;
    filter: invert(1);
}

.lh-lightbox-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(85vh, 800px);
    object-fit: contain;
    margin: 0 auto;
    background: #0c1c24;
}

.lh-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(12, 28, 36, 0.55);
    color: #fff;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
}

.lh-lightbox-nav:hover,
.lh-lightbox-nav:focus {
    background: rgba(12, 28, 36, 0.8);
}

.lh-lightbox-prev {
    left: 0.65rem;
}

.lh-lightbox-next {
    right: 0.65rem;
}

.lh-lightbox-counter {
    position: absolute;
    left: 50%;
    bottom: 0.7rem;
    transform: translateX(-50%);
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Quill editors (admin event form) */
.lh-quill {
    background: #fff;
    border-radius: 0 0 0.55rem 0.55rem;
}

.lh-quill .ql-editor {
    min-height: 7rem;
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.55;
}

.lh-quill-short .ql-editor {
    min-height: 5rem;
}

.lh-quill-long .ql-editor {
    min-height: 14rem;
}

.lh-quill.is-invalid,
.lh-quill.is-invalid + .ql-toolbar,
.ql-toolbar.ql-snow + .lh-quill.is-invalid {
    border-color: #dc3545;
}

.ql-toolbar.ql-snow {
    border-color: var(--lh-line);
    border-radius: 0.55rem 0.55rem 0 0;
    background: rgba(11, 95, 115, 0.04);
}

.ql-container.ql-snow {
    border-color: var(--lh-line);
    border-radius: 0 0 0.55rem 0.55rem;
    font-family: inherit;
}

/* Admin dashboard tiles + user role checklist */
.lh-admin-tile {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    height: 100%;
    padding: 1.15rem 1.2rem;
    border-radius: var(--lh-radius);
    border: 1px solid var(--lh-line);
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 24px rgba(12, 28, 36, 0.04);
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.lh-admin-tile:hover {
    border-color: rgba(11, 95, 115, 0.35);
    color: inherit;
    transform: translateY(-1px);
}

.lh-admin-tile-label {
    font-weight: 700;
    color: var(--lh-sea-deep);
    font-size: 1.05rem;
}

.lh-admin-tile-text {
    color: var(--lh-muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.lh-role-checklist {
    display: grid;
    gap: 0.55rem;
}

.lh-role-check {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin: 0;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--lh-line);
    border-radius: 0.55rem;
    cursor: pointer;
    background: rgba(11, 95, 115, 0.03);
}

.lh-role-check input {
    margin-top: 0.2rem;
}

.lh-role-check strong {
    display: block;
    font-size: 0.92rem;
    color: var(--lh-ink);
}

.lh-role-check small {
    display: block;
    color: var(--lh-muted);
    font-size: 0.78rem;
}

.lh-role-check.is-locked {
    opacity: 0.72;
    cursor: default;
    background: rgba(11, 95, 115, 0.06);
}

.lh-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.lh-kpi-card {
    text-align: left;
    min-height: 100%;
}

.lh-kpi-label {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(12, 28, 36, 0.55);
    font-weight: 650;
}

.lh-kpi-value {
    font-family: Fraunces, Georgia, serif;
    font-size: 1.65rem;
    font-weight: 650;
    color: var(--lh-ink);
    line-height: 1.1;
}

.lh-analytics-filters .lh-filter-row {
    margin-top: 0.35rem;
}

.lh-analytics-bars {
    display: grid;
    gap: 0.55rem;
}

.lh-analytics-bar-row {
    display: grid;
    grid-template-columns: 3.2rem 1fr 4.5rem;
    gap: 0.55rem;
    align-items: center;
}

.lh-analytics-bar-label,
.lh-analytics-bar-meta {
    font-size: 0.78rem;
    color: rgba(12, 28, 36, 0.6);
}

.lh-analytics-bar-meta {
    text-align: right;
    line-height: 1.2;
}

.lh-analytics-bar-meta strong {
    color: rgba(12, 28, 36, 0.82);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.lh-analytics-bar-meta span {
    display: block;
    font-size: 0.68rem;
    color: rgba(12, 28, 36, 0.5);
}

.lh-analytics-bar-track {
    display: flex;
    align-items: stretch;
    height: 0.85rem;
    border-radius: 999px;
    background: rgba(12, 28, 36, 0.06);
    overflow: hidden;
}

.lh-bar {
    display: block;
    height: 100%;
    min-width: 0;
    flex: 0 0 auto;
}

.lh-bar-page { background: #0b5f73; }
.lh-bar-event { background: #2a8fa3; }
.lh-bar-views { background: #0b5f73; }
.lh-bar-impressions { background: #c9a227; }
.lh-bar-clicks { background: #b02a37; }

.lh-kpi-hint {
    font-size: 0.68rem;
    line-height: 1.3;
    color: rgba(12, 28, 36, 0.5);
}

.lh-analytics-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.85rem;
    font-size: 0.8rem;
    color: rgba(12, 28, 36, 0.65);
}

.lh-legend {
    display: inline-block;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    margin-right: 0.35rem;
    vertical-align: -1px;
}

.lh-bar-device-mobile { background: #1f6f8b; }
.lh-bar-device-desktop { background: #2a9d8f; }
.lh-bar-device-tablet { background: #e9c46a; }
.lh-bar-device-other { background: #6c757d; }

.lh-about-what {
    padding-top: 2.5rem;
}

.lh-about-points {
    display: grid;
    gap: 1.75rem 2rem;
}

@media (min-width: 768px) {
    .lh-about-points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }
}

.lh-about-point {
    min-width: 0;
}

.lh-about-point-index {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.14em;
    color: #0b5f73;
}

.lh-about-point-title {
    margin: 0 0 0.55rem;
    font-family: var(--lh-display);
    font-size: 1.2rem;
    font-weight: 650;
    color: var(--lh-ink);
    letter-spacing: -0.02em;
}

.lh-about-point-text {
    margin: 0;
    color: var(--lh-muted);
    line-height: 1.55;
    font-size: 0.98rem;
}

.lh-about-publish-wrap {
    padding-top: 0.75rem;
    padding-bottom: 1rem;
}

.lh-about-publish {
    width: 100%;
    padding: 2rem 1.35rem;
    border-radius: 1.1rem;
    background:
        radial-gradient(ellipse 85% 70% at 100% 0%, rgba(42, 159, 181, 0.12), transparent 55%),
        linear-gradient(165deg, #f7fbfc 0%, #eef6f8 100%);
    border: 1px solid rgba(11, 95, 115, 0.14);
}

@media (min-width: 768px) {
    .lh-about-publish {
        padding: 2.6rem 2.6rem;
    }
}

.lh-about-publish-title {
    margin: 0 0 0.85rem;
    font-family: var(--lh-display);
    font-size: clamp(1.55rem, 3.2vw, 2.05rem);
    font-weight: 650;
    letter-spacing: -0.025em;
    color: var(--lh-ink);
    line-height: 1.15;
}

.lh-about-publish-body {
    margin: 0 0 1.6rem;
    color: var(--lh-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 46rem;
}

.lh-about-publish-steps {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: grid;
    gap: 1.15rem;
}

@media (min-width: 900px) {
    .lh-about-publish-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.lh-about-publish-step {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    min-width: 0;
}

.lh-about-publish-step-num {
    flex: 0 0 auto;
    width: 1.85rem;
    height: 1.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--lh-header);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.lh-about-publish-step-title {
    margin: 0.15rem 0 0.35rem;
    font-family: var(--lh-display);
    font-size: 1.05rem;
    font-weight: 650;
    color: var(--lh-ink);
    letter-spacing: -0.015em;
}

.lh-about-publish-step-text {
    margin: 0;
    color: var(--lh-muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.lh-about-publish-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-bottom: 0.95rem;
}

.lh-about-publish-note {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(90, 106, 118, 0.92);
    line-height: 1.45;
    max-width: 40rem;
}

.lh-about-invite-wrap {
    padding-top: 0.5rem;
    padding-bottom: 3rem;
}

.lh-about-invite {
    width: 100%;
    max-width: none;
    padding: 1.75rem 1.25rem;
    border-top: 1px solid var(--lh-line);
    background: transparent;
    border-radius: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
}

@media (min-width: 768px) {
    .lh-about-invite {
        padding: 2rem 0 0;
    }
}

.lh-about-invite-title {
    margin: 0 0 0.75rem;
    font-family: var(--lh-display);
    font-size: clamp(1.25rem, 2.5vw, 1.55rem);
    font-weight: 650;
    letter-spacing: -0.02em;
    color: var(--lh-ink);
    line-height: 1.2;
    max-width: none;
}

.lh-about-invite-body {
    margin: 0 0 1.15rem;
    color: var(--lh-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 42rem;
}

.lh-about-invite-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.25rem;
    margin-bottom: 0.85rem;
}

.lh-about-invite-email {
    color: #0b5f73;
    font-weight: 600;
    text-decoration: none;
    word-break: break-all;
}

.lh-about-invite-email:hover {
    text-decoration: underline;
}

.lh-about-invite-note {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(90, 106, 118, 0.9);
    line-height: 1.45;
}

/* ------------------------------------------------------------------ */
/* Admin shell: docked sidebar + workspace under public navbar       */
/* ------------------------------------------------------------------ */

body.lh-admin-body {
    --lh-admin-sidebar-w: 15.75rem;
    --lh-admin-sidebar-bg: #0f2430;
    --lh-admin-sidebar-text: #b7c8d0;
    --lh-admin-sidebar-muted: rgba(183, 200, 208, 0.55);
    --lh-admin-main-bg: #e8eef1;
    --lh-admin-surface: #ffffff;
    background: var(--lh-admin-main-bg);
}

.lh-admin-shell > .lh-header {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.lh-admin-workspace {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    background: var(--lh-admin-main-bg);
    min-height: calc(100vh - var(--lh-header-offset, 4.25rem));
    min-height: calc(100dvh - var(--lh-header-offset, 4.25rem));
}

.lh-admin-frame {
    display: flex;
    align-items: stretch;
    flex: 1 0 auto;
    width: 100%;
    min-height: inherit;
}

.lh-admin-sidebar {
    flex: 0 0 var(--lh-admin-sidebar-w) !important;
    flex-grow: 0 !important;
    width: var(--lh-admin-sidebar-w) !important;
    max-width: var(--lh-admin-sidebar-w) !important;
    min-width: var(--lh-admin-sidebar-w) !important;
    color: var(--lh-admin-sidebar-text);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.12);
}

.lh-admin-sidebar,
.lh-admin-sidebar.offcanvas-lg,
.lh-admin-sidebar .offcanvas-body {
    background-color: var(--lh-admin-sidebar-bg) !important;
}

.lh-admin-sidebar-header {
    padding: 0.95rem 1.1rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lh-admin-sidebar-header .offcanvas-title {
    color: #e8eef1;
    font-weight: 650;
    letter-spacing: 0.02em;
}

.lh-admin-side-nav {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0.7rem 1.75rem;
    gap: 0.45rem;
}

.lh-admin-side-group {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin: 0;
    padding: 0.55rem 0.4rem 0.55rem;
    border-radius: 0.7rem;
    border: 1px solid transparent;
    background: transparent;
}

.lh-admin-side-group.is-content {
    --lh-admin-group: #2a9fb5;
    background: rgba(42, 159, 181, 0.07);
    border-color: rgba(42, 159, 181, 0.16);
}

.lh-admin-side-group.is-marketing {
    --lh-admin-group: #d4a017;
    background: rgba(212, 160, 23, 0.09);
    border-color: rgba(212, 160, 23, 0.22);
}

.lh-admin-side-group.is-analytics {
    --lh-admin-group: #5b8def;
    background: rgba(91, 141, 239, 0.09);
    border-color: rgba(91, 141, 239, 0.2);
}

.lh-admin-side-group.is-system {
    --lh-admin-group: #8fa3ad;
    background: rgba(143, 163, 173, 0.08);
    border-color: rgba(143, 163, 173, 0.16);
}

.lh-admin-side-heading {
    margin: 0.15rem 0.55rem 0.35rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--lh-admin-group, #b7c8d0) 78%, #fff);
}

.lh-admin-side-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.48rem 0.7rem;
    margin: 0;
    border-radius: 0.45rem;
    border-left: 3px solid transparent;
    color: var(--lh-admin-sidebar-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.lh-admin-side-link:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #f2f7f9;
}

.lh-admin-side-group .lh-admin-side-link.is-active {
    background: color-mix(in srgb, var(--lh-admin-group) 28%, transparent);
    border-left-color: var(--lh-admin-group);
    color: #ffffff;
    font-weight: 650;
}

.lh-admin-side-link.is-active {
    background: rgba(42, 159, 181, 0.2);
    border-left-color: #2a9fb5;
    color: #ffffff;
    font-weight: 650;
}

.lh-admin-side-ico {
    display: inline-grid;
    place-items: center;
    width: 1.05rem;
    height: 1.05rem;
    opacity: 0.9;
    flex: 0 0 auto;
}

.lh-admin-side-external {
    justify-content: space-between;
}

.lh-admin-side-ext {
    font-size: 0.78rem;
    opacity: 0.65;
    line-height: 1;
}

.lh-admin-side-group.is-marketing .lh-admin-side-heading::before,
.lh-admin-side-group.is-analytics .lh-admin-side-heading::before,
.lh-admin-side-group.is-content .lh-admin-side-heading::before,
.lh-admin-side-group.is-system .lh-admin-side-heading::before {
    content: "";
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin-right: 0.4rem;
    border-radius: 999px;
    background: var(--lh-admin-group);
    vertical-align: 0.05rem;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--lh-admin-group) 22%, transparent);
}

.lh-admin-main {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    background: var(--lh-admin-surface);
    padding: 0;
}

.lh-admin-mobile-bar {
    position: sticky;
    top: var(--lh-header-offset, 4.25rem);
    z-index: 1020;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.95rem;
    background: #f3f6f7;
    border-bottom: 1px solid rgba(15, 40, 50, 0.1);
}

.lh-admin-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(15, 40, 50, 0.14);
    border-radius: 0.45rem;
    background: #fff;
    color: #16343c;
    font-size: 0.88rem;
    font-weight: 600;
}

.lh-admin-menu-btn:hover {
    background: #f4f8f9;
    color: var(--lh-sea);
}

.lh-admin-content {
    flex: 1 0 auto;
    width: 100%;
    padding: 1rem 1.5rem 2.25rem;
}

.lh-admin-flash {
    margin-bottom: 0.75rem;
}

/* Admin content: fill all remaining width next to sidebar */
.lh-admin-content .container,
.lh-admin-content .lh-breadcrumb .container,
.lh-admin-content .container-fluid,
.lh-admin-content .container-lg,
.lh-admin-content .container-xl,
.lh-admin-content .container-xxl {
    max-width: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.lh-admin-content .lh-breadcrumb {
    margin: 0 0 0.65rem;
    padding: 0;
    position: static;
    top: auto;
    z-index: auto;
    border: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.lh-admin-content .lh-breadcrumb-list {
    margin: 0;
    padding: 0 0 0.15rem;
}

.lh-admin-content .lh-section,
.lh-admin-content .lh-section-tight {
    padding-top: 0.15rem;
    padding-bottom: 1.25rem;
}

.lh-admin-content .lh-section-head {
    margin-bottom: 1.15rem;
}

.lh-admin-content .lh-section-title {
    font-family: var(--lh-font);
    font-size: clamp(1.35rem, 1.1rem + 0.7vw, 1.7rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #14262e;
}

.lh-admin-content .lh-section-sub {
    max-width: 40rem;
    color: var(--lh-muted);
}

.lh-admin-content .lh-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.lh-admin-content .lh-panel {
    background: var(--lh-admin-surface);
    border: 1px solid rgba(18, 26, 33, 0.08);
    border-radius: 0.7rem;
    box-shadow: 0 1px 2px rgba(12, 28, 36, 0.04);
}

.lh-admin-content .lh-panel-title {
    font-family: var(--lh-font);
    font-size: 1.05rem;
    font-weight: 650;
}

.lh-admin-content .lh-perm-grid {
    gap: 0.5rem;
}

.lh-admin-content .lh-perm-item {
    padding: 0.65rem 0.8rem;
    border-radius: 0.5rem;
    background: #f4f8f9;
    border-color: rgba(18, 26, 33, 0.07);
}

.lh-admin-content .lh-meta-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.lh-admin-content .lh-meta-list li {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.5rem;
    background: #f4f8f9;
    border: 1px solid rgba(18, 26, 33, 0.07);
}

@media (min-width: 992px) {
    .lh-admin-sidebar.offcanvas-lg {
        position: sticky !important;
        top: var(--lh-header-offset, 4.25rem);
        height: calc(100vh - var(--lh-header-offset, 4.25rem));
        height: calc(100dvh - var(--lh-header-offset, 4.25rem));
        overflow-y: auto;
        visibility: visible !important;
        transform: none !important;
        z-index: auto;
        flex: 0 0 var(--lh-admin-sidebar-w) !important;
        flex-grow: 0 !important;
        width: var(--lh-admin-sidebar-w) !important;
        max-width: var(--lh-admin-sidebar-w) !important;
        min-width: var(--lh-admin-sidebar-w) !important;
        --bs-offcanvas-width: var(--lh-admin-sidebar-w);
        border: none !important;
        border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .lh-admin-sidebar .offcanvas-header {
        display: flex !important;
    }

    .lh-admin-sidebar .btn-close {
        display: none;
    }

    .lh-admin-main {
        flex: 1 1 auto !important;
        width: auto !important;
        max-width: none !important;
    }

    .lh-admin-content {
        padding: 1.15rem 1.75rem 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .lh-admin-frame {
        display: block;
        min-height: 0;
    }

    .lh-admin-workspace {
        min-height: 0;
    }

    .lh-admin-sidebar {
        width: min(18.5rem, 88vw);
        max-width: min(18.5rem, 88vw);
        border-right: none;
        box-shadow: 8px 0 28px rgba(8, 24, 32, 0.28);
    }

    .lh-admin-content {
        padding: 0.85rem 0.95rem 2rem;
    }
}

/* —— Public organization page (prototype) —— */
.lh-org-hero {
    padding: 1.35rem 0 1.15rem;
    background:
        radial-gradient(120% 90% at 0% 0%, rgba(11, 95, 115, 0.14), transparent 52%),
        linear-gradient(180deg, #e8f1f4 0%, #f4f8f9 72%, transparent 100%);
}

.lh-org-hero-inner {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.lh-org-logo-wrap {
    flex: 0 0 auto;
}

.lh-org-logo {
    width: 4.75rem;
    height: 4.75rem;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid rgba(18, 26, 33, 0.08);
    background: #fff;
    box-shadow: 0 10px 28px rgba(8, 40, 48, 0.1);
}

.lh-org-title {
    margin: 0.1rem 0 0.45rem;
    font-family: var(--lh-display);
    font-size: clamp(1.7rem, 5.2vw + 0.55rem, 2.45rem);
    font-weight: 650;
    line-height: 1.12;
    color: var(--lh-ink);
}

.lh-org-lead {
    margin: 0 0 0.65rem;
    max-width: 38rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(18, 26, 33, 0.72);
}

.lh-org-address {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 550;
    color: var(--lh-sea-deep);
}

.lh-org-address a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(11, 95, 115, 0.28);
}

.lh-org-address a:hover {
    border-bottom-color: var(--lh-sea);
}

.lh-org-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 1.15rem;
}

.lh-org-action {
    display: grid;
    gap: 0.1rem;
    align-content: center;
    min-height: 3.15rem;
    padding: 0.55rem 0.75rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(18, 26, 33, 0.1);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 18px rgba(8, 40, 48, 0.05);
    color: var(--lh-ink);
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.lh-org-action:hover {
    border-color: rgba(11, 95, 115, 0.35);
    background: #fff;
    color: var(--lh-sea-deep);
    transform: translateY(-1px);
}

.lh-org-action--primary {
    background: var(--lh-header);
    border-color: var(--lh-header);
    color: #fff;
    box-shadow: 0 12px 24px rgba(12, 28, 36, 0.18);
}

.lh-org-action--primary:hover {
    background: #132833;
    border-color: #132833;
    color: #fff;
}

.lh-org-action-label {
    font-size: 0.92rem;
    font-weight: 650;
    line-height: 1.2;
}

.lh-org-action-hint {
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0.72;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lh-org-hero-jump {
    margin-top: 0.85rem;
}

.lh-org-jump {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.88rem;
    font-weight: 650;
    color: var(--lh-sea);
    text-decoration: none;
}

.lh-org-jump::after {
    content: "↓";
    font-size: 0.8em;
}

.lh-org-jump:hover {
    color: var(--lh-sea-deep);
}

.lh-org-sticky {
    display: none;
}

.lh-org-gallery-wrap {
    padding-top: 0.35rem;
}

.lh-org-gallery-head {
    margin-bottom: 0.75rem;
}

.lh-org-gallery-head .lh-section-title {
    font-size: clamp(1.2rem, 2vw + 0.85rem, 1.45rem);
}

.lh-org-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

@media (min-width: 768px) {
    .lh-org-gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.85rem;
    }
}

.lh-org-gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 0.75rem;
    aspect-ratio: 4 / 3;
    background: #dce7eb;
}

.lh-org-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lh-org-strip {
    --lh-org-strip-gap: 0.65rem;
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.45rem;
}

.lh-org-strip-track {
    display: flex;
    gap: var(--lh-org-strip-gap);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0.15rem 0.1rem 0.55rem;
    scrollbar-width: thin;
}

.lh-org-strip-track:focus-visible {
    outline: 2px solid rgba(11, 95, 115, 0.45);
    outline-offset: 2px;
    border-radius: 0.5rem;
}

.lh-org-strip-item {
    flex: 0 0 auto;
    width: clamp(8.25rem, 38vw, 11rem);
    aspect-ratio: 4 / 5;
    padding: 0;
    border: 0;
    border-radius: 0.9rem;
    overflow: hidden;
    background: #d7e4e9;
    cursor: zoom-in;
    scroll-snap-align: start;
    box-shadow: 0 10px 22px rgba(8, 40, 48, 0.08);
}

.lh-org-strip-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lh-org-strip-item:hover img {
    transform: scale(1.03);
    transition: transform 0.2s ease;
}

.lh-org-strip-nav {
    flex: 0 0 auto;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    border: 1px solid rgba(18, 26, 33, 0.12);
    background: #fff;
    color: #0b5f73;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(8, 40, 48, 0.08);
}

.lh-org-strip-nav:hover:not(:disabled) {
    border-color: rgba(11, 95, 115, 0.35);
    background: #f3f8f9;
}

.lh-org-strip-nav:disabled,
.lh-org-strip-nav.is-disabled {
    opacity: 0.35;
    cursor: default;
    box-shadow: none;
}

.lh-org-meta-wrap {
    padding-top: 0.25rem;
}

.lh-org-panel {
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(18, 26, 33, 0.08);
    background: linear-gradient(180deg, #fff, #f5f9fa);
    box-shadow: 0 10px 24px rgba(8, 40, 48, 0.04);
}

.lh-org-meta {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .lh-org-meta:not(.lh-org-meta--single) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

.lh-org-meta-title {
    margin: 0 0 0.75rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0b5f73;
}

.lh-org-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.lh-org-link {
    display: grid;
    gap: 0.12rem;
    padding: 0.7rem 0.8rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(18, 26, 33, 0.07);
    background: rgba(255, 255, 255, 0.78);
    color: inherit;
    text-decoration: none;
}

.lh-org-link:hover {
    border-color: rgba(11, 95, 115, 0.28);
    background: #fff;
}

.lh-org-link-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(18, 26, 33, 0.5);
}

.lh-org-link-value {
    font-size: 0.95rem;
    font-weight: 550;
    color: var(--lh-ink);
    overflow-wrap: anywhere;
}

.lh-org-meta-list,
.lh-org-socials {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.lh-org-meta-item {
    display: grid;
    gap: 0.15rem;
}

.lh-org-meta-label {
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(18, 26, 33, 0.5);
}

.lh-org-meta-list a,
.lh-org-socials a {
    color: var(--lh-ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(11, 95, 115, 0.25);
    justify-self: start;
}

.lh-org-meta-list a:hover,
.lh-org-socials a:hover {
    border-bottom-color: #0b5f73;
}

.lh-org-events-wrap {
    scroll-margin-top: calc(var(--lh-header-offset) + 0.75rem);
}

.lh-org-events {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.lh-org-event {
    --cat: #0a4d63;
    position: relative;
    display: grid;
    grid-template-columns: 4.35rem minmax(0, 1fr);
    gap: 0.8rem 0.9rem;
    align-items: stretch;
    padding: 0.8rem 0.85rem;
    border-radius: 1rem;
    border: 1px solid rgba(18, 26, 33, 0.08);
    background:
        linear-gradient(180deg, #fff 0%, #f6fafb 100%);
    box-shadow: 0 10px 26px rgba(8, 40, 48, 0.06);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.lh-org-event::before {
    content: "";
    position: absolute;
    inset: 0.55rem auto 0.55rem 0;
    width: 3px;
    border-radius: 999px;
    background: var(--cat);
    opacity: 0.85;
}

.lh-org-event:hover {
    border-color: rgba(11, 95, 115, 0.28);
    box-shadow: 0 16px 32px rgba(8, 40, 48, 0.1);
    transform: translateY(-1px);
}

.lh-org-event.is-cancelled {
    opacity: 0.72;
}

.lh-org-event.is-past {
    background: linear-gradient(180deg, #fbfcfd 0%, #f3f6f7 100%);
}

.lh-org-event.is-past::before {
    opacity: 0.45;
}

.lh-org-event-media {
    min-width: 0;
}

.lh-org-event-thumb,
.lh-org-event-date {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 0.7rem;
    overflow: hidden;
}

.lh-org-event-thumb {
    background: rgba(11, 95, 115, 0.08);
    box-shadow: inset 0 0 0 1px rgba(18, 26, 33, 0.06);
}

.lh-org-event-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lh-org-event-date {
    display: grid;
    place-content: center;
    gap: 0.1rem;
    text-align: center;
    background: linear-gradient(160deg, rgba(11, 95, 115, 0.12), #f7fbfc);
    border: 1px solid rgba(11, 95, 115, 0.16);
    color: var(--cat);
}

.lh-org-event-day {
    font-family: var(--lh-display);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
}

.lh-org-event-month {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lh-org-event-body {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 0.3rem;
    padding-right: 0.15rem;
}

.lh-org-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 0.35rem;
    align-items: baseline;
    font-size: 0.82rem;
    font-weight: 650;
    color: #0b5f73;
}

.lh-org-event-meta-sep,
.lh-org-event-time {
    color: rgba(18, 26, 33, 0.55);
    font-weight: 500;
}

.lh-org-event-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.lh-org-event-title {
    margin: 0;
    font-family: var(--lh-display);
    font-size: clamp(1.02rem, 1.8vw + 0.7rem, 1.2rem);
    font-weight: 650;
    line-height: 1.28;
    color: var(--lh-ink);
}

.lh-org-event-venue {
    margin: 0;
    font-size: 0.86rem;
    color: rgba(18, 26, 33, 0.62);
}

.lh-org-filters {
    display: grid;
    gap: 0.9rem;
    margin: 0 0 1.25rem;
}

.lh-org-search.lh-search-form {
    gap: 0.55rem;
    margin-bottom: 0;
}

.lh-org-toolbar {
    display: grid;
    gap: 0.95rem;
    padding: 0.95rem;
    border-radius: 1rem;
    border: 1px solid rgba(18, 26, 33, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 248, 0.98));
    box-shadow: 0 8px 22px rgba(8, 40, 48, 0.04);
}

.lh-org-toolbar-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 0.85rem;
    align-items: center;
}

.lh-org-toolbar-row--sort {
    padding-top: 0.85rem;
    border-top: 1px solid rgba(18, 26, 33, 0.07);
}

.lh-org-sort-field {
    display: grid;
    gap: 0.3rem;
    min-width: min(100%, 11rem);
    flex: 1 1 11rem;
}

.lh-org-events-wrap .lh-sort-label {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(18, 26, 33, 0.5);
}

.lh-org-events-wrap .lh-sort-select {
    width: 100%;
    min-width: 0;
    min-height: 2.55rem;
}

.lh-org-filter-note {
    margin: 0 0 1rem;
    font-size: 0.92rem;
    color: rgba(18, 26, 33, 0.65);
}

.lh-org-empty {
    color: rgba(18, 26, 33, 0.62);
    padding: 1.15rem 1.1rem;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px dashed rgba(18, 26, 33, 0.12);
}

@media (min-width: 576px) {
    .lh-org-hero {
        padding: 2rem 0 1.45rem;
    }

    .lh-org-logo {
        width: 5.5rem;
        height: 5.5rem;
    }

    .lh-org-lead {
        font-size: 1.05rem;
    }

    .lh-org-actions {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .lh-org-event {
        grid-template-columns: 5rem minmax(0, 1fr);
        gap: 0.95rem 1.05rem;
        padding: 1rem 1.1rem;
    }

    .lh-org-toolbar {
        padding: 1.1rem 1.15rem;
    }
}

@media (max-width: 575.98px) {
    .lh-org-hero-inner {
        flex-direction: row;
        align-items: flex-start;
    }

    .lh-org-gallery-wrap .container {
        padding-left: 0;
        padding-right: 0;
    }

    .lh-org-gallery-head {
        padding-left: var(--bs-gutter-x, 0.75rem);
        padding-right: var(--bs-gutter-x, 0.75rem);
    }

    .lh-org-strip {
        grid-template-columns: minmax(0, 1fr);
    }

    .lh-org-strip-track {
        padding-left: var(--bs-gutter-x, 0.75rem);
        padding-right: var(--bs-gutter-x, 0.75rem);
    }

    .lh-org-strip-nav {
        position: absolute;
        z-index: 2;
        top: 50%;
        transform: translateY(-60%);
        width: 2.1rem;
        height: 2.1rem;
    }

    .lh-org-strip-nav--prev {
        left: 0.35rem;
    }

    .lh-org-strip-nav--next {
        right: 0.35rem;
    }

    .lh-org-search.lh-search-form {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lh-org-search .lh-search-input {
        min-height: 2.75rem;
        font-size: 1rem;
    }

    .lh-org-search .lh-search-btn {
        width: 100%;
        min-height: 2.75rem;
    }

    .lh-org-toolbar-row--scope {
        flex-direction: column;
        align-items: stretch;
    }

    .lh-org-toolbar .lh-scope-filters,
    .lh-org-toolbar .lh-date-filters {
        width: 100%;
    }

    .lh-org-toolbar .lh-scope-filters {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        border: 1px solid rgba(18, 26, 33, 0.1);
        border-radius: 0.75rem;
        overflow: hidden;
        background: rgba(11, 95, 115, 0.04);
    }

    .lh-org-toolbar .lh-scope-badge {
        justify-content: center;
        min-height: 2.7rem;
        padding: 0.4rem 0.25rem;
        border: 0;
        border-radius: 0;
        border-right: 1px solid rgba(18, 26, 33, 0.1);
        background: transparent;
        font-size: 0.72rem;
        text-align: center;
    }

    .lh-org-toolbar .lh-scope-badge:last-child {
        border-right: 0;
    }

    .lh-org-toolbar .lh-scope-badge.is-active {
        background: var(--lh-header);
        color: #fff;
    }

    .lh-org-toolbar .lh-date-filters {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        gap: 0.5rem;
    }

    .lh-org-toolbar .lh-date-form {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        min-width: 0;
        width: 100%;
    }

    .lh-org-toolbar .lh-date-input {
        flex: 1 1 auto;
        min-width: 0;
        min-height: 2.7rem;
        width: 100%;
    }

    .lh-org-toolbar .lh-today-badge {
        justify-content: center;
        min-height: 2.7rem;
        border-radius: 0.75rem;
    }

    .lh-org-toolbar-row--sort {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .lh-org-sort-field {
        min-width: 0;
        flex: none;
    }

    .lh-org-event-title {
        font-size: 1.02rem;
    }

    .lh-org-sticky {
        position: fixed;
        z-index: 40;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
        background: rgba(247, 250, 251, 0.94);
        border-top: 1px solid rgba(18, 26, 33, 0.08);
        backdrop-filter: blur(10px);
        box-shadow: 0 -10px 28px rgba(8, 40, 48, 0.08);
    }

    .lh-org-sticky:has(> :only-child) {
        grid-template-columns: 1fr;
    }

    .lh-org-sticky-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 2.85rem;
        padding: 0.55rem 0.75rem;
        border-radius: 0.85rem;
        border: 1px solid rgba(18, 26, 33, 0.12);
        background: #fff;
        color: var(--lh-ink);
        font-size: 0.95rem;
        font-weight: 650;
        text-decoration: none;
    }

    .lh-org-sticky-btn--primary {
        background: var(--lh-header);
        border-color: var(--lh-header);
        color: #fff;
    }

    body:has(.lh-org-sticky) .lh-footer,
    body:has(.lh-org-sticky) .lh-org-events-wrap {
        padding-bottom: 4.75rem;
    }
}

/* Admin: product overview / pricing guide */
.lh-admin-features-note {
    max-width: 46rem;
    padding: 0.7rem 0.85rem;
    border-radius: 0.75rem;
    border: 1px dashed rgba(11, 95, 115, 0.28);
    background: rgba(11, 95, 115, 0.06);
    color: var(--lh-sea-deep);
    font-size: 0.92rem;
}

.lh-admin-features-list {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.4rem;
    color: rgba(18, 26, 33, 0.78);
    font-size: 0.92rem;
    line-height: 1.45;
}

.lh-admin-features-modhead {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem 0.75rem;
    margin-bottom: 0.55rem;
}

.lh-admin-features-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(11, 95, 115, 0.1);
    color: var(--lh-sea-deep);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lh-admin-features-price {
    border-top: 3px solid rgba(11, 95, 115, 0.35);
}

.lh-admin-features-amount {
    margin: 0;
    font-family: var(--lh-display);
    font-size: 1.2rem;
    font-weight: 650;
    color: var(--lh-ink);
    line-height: 1.25;
}

.lh-admin-features-period {
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    color: var(--lh-muted);
}

.lh-admin-features-package {
    border-top: 3px solid rgba(196, 130, 42, 0.55);
}

.lh-admin-features-tagline {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(196, 130, 42, 0.95);
}

.lh-admin-features-bestfor {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    color: rgba(18, 26, 33, 0.72);
    line-height: 1.4;
}

.lh-admin-features-tiers {
    margin-top: 0.75rem;
    padding-top: 0.65rem;
    border-top: 1px dashed rgba(18, 26, 33, 0.12);
    font-size: 0.8rem;
    color: var(--lh-muted);
    line-height: 1.4;
}

.lh-admin-features-overbook {
    border-left: 3px solid rgba(11, 95, 115, 0.4);
}

.lh-admin-features-olist {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.5rem;
    color: rgba(18, 26, 33, 0.78);
    font-size: 0.92rem;
    line-height: 1.45;
}

/* Admin: ad slots map */
.lh-admin-slots-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
}

.lh-admin-slots-leg {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--lh-muted);
}

.lh-admin-slots-leg::before {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 0.2rem;
}

.lh-admin-slots-leg.is-ad::before {
    background: color-mix(in srgb, var(--lh-sea-deep) 55%, #fff);
    border: 1px solid color-mix(in srgb, var(--lh-sea-deep) 40%, transparent);
}

.lh-admin-slots-leg.is-page::before {
    background: rgba(18, 26, 33, 0.08);
    border: 1px solid rgba(18, 26, 33, 0.12);
}

.lh-admin-slots-leg.is-off::before {
    background: transparent;
    border: 1px dashed rgba(18, 26, 33, 0.35);
}

.lh-admin-slots-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(16rem, 0.7fr);
    gap: 1rem;
    align-items: start;
}

.lh-admin-slots-board {
    background: #fff;
    border: 1px solid rgba(18, 26, 33, 0.1);
    border-radius: 0.85rem;
    padding: 1rem 1rem 1.1rem;
}

.lh-admin-slots-board-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.lh-admin-slots-board-head h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lh-ink);
}

.lh-admin-slots-board-head span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--lh-muted);
    font-variant-numeric: tabular-nums;
}

.lh-admin-slots-browser {
    border: 1px solid rgba(18, 26, 33, 0.12);
    border-radius: 0.7rem;
    overflow: hidden;
    background: #f3f5f6;
}

.lh-admin-slots-chrome {
    display: grid;
    grid-template-columns: auto auto auto minmax(0, 1fr);
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.7rem;
    background: #e8ecee;
    border-bottom: 1px solid rgba(18, 26, 33, 0.08);
}

.lh-admin-slots-chrome > span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: rgba(18, 26, 33, 0.2);
}

.lh-admin-slots-url {
    margin-left: 0.35rem;
    padding: 0.25rem 0.55rem;
    border-radius: 0.35rem;
    background: #fff;
    color: rgba(18, 26, 33, 0.55);
    font-size: 0.7rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lh-admin-slots-page {
    display: grid;
    gap: 0.45rem;
    padding: 0.7rem;
}

.lh-admin-slots-desk {
    display: grid;
    grid-template-columns: minmax(5.5rem, 0.34fr) minmax(0, 1fr);
    gap: 0.45rem;
}

.lh-admin-slots-aside,
.lh-admin-slots-main {
    display: grid;
    gap: 0.4rem;
    align-content: start;
}

.lh-admin-slots-bar {
    display: grid;
    place-items: center;
    min-height: 1.7rem;
    padding: 0.35rem 0.5rem;
    border-radius: 0.35rem;
    background: rgba(18, 26, 33, 0.06);
    color: rgba(18, 26, 33, 0.45);
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.02em;
}

.lh-admin-slots-bar.is-sm {
    min-height: 1.35rem;
    font-size: 0.64rem;
}

.lh-admin-slots-slot {
    display: grid;
    place-items: center;
    gap: 0.08rem;
    padding: 0.55rem 0.4rem;
    border-radius: 0.4rem;
    border: 1px solid color-mix(in srgb, var(--lh-sea-deep) 28%, transparent);
    background: color-mix(in srgb, var(--lh-sea-deep) 12%, #fff);
    text-align: center;
}

.lh-admin-slots-slot em {
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 750;
    color: var(--lh-sea-deep);
    letter-spacing: 0.01em;
}

.lh-admin-slots-slot small {
    font-size: 0.66rem;
    font-weight: 650;
    color: rgba(11, 95, 115, 0.75);
    font-variant-numeric: tabular-nums;
}

.lh-admin-slots-slot.is-leader,
.lh-admin-slots-slot.is-footer {
    min-height: 2.6rem;
}

.lh-admin-slots-slot.is-inline {
    min-height: 1.9rem;
}

.lh-admin-slots-slot.is-side {
    min-height: 4.2rem;
}

.lh-admin-slots-slot.is-rail {
    min-height: 5.2rem;
}

.lh-admin-slots-slot.is-sponsors {
    background: color-mix(in srgb, #8a5a2b 10%, #fff);
    border-color: color-mix(in srgb, #8a5a2b 30%, transparent);
}

.lh-admin-slots-slot.is-sponsors em {
    color: #6b4320;
}

.lh-admin-slots-slot.is-sponsors small {
    color: rgba(107, 67, 32, 0.75);
}

.lh-admin-slots-rails {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
}

.lh-admin-slots-phone {
    border: 1px solid rgba(18, 26, 33, 0.14);
    border-radius: 1.35rem;
    padding: 0.85rem 0.75rem 0.95rem;
    background: #f7f8f9;
    max-width: 22rem;
    margin-inline: auto;
}

.lh-admin-slots-phone-notch {
    width: 5.5rem;
    height: 0.45rem;
    margin: 0 auto 0.85rem;
    border-radius: 999px;
    background: rgba(18, 26, 33, 0.18);
}

.lh-admin-slots-flow {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.lh-admin-slots-flow li {
    display: grid;
    grid-template-columns: 1.5rem minmax(0, 1fr);
    gap: 0.55rem;
    align-items: center;
    padding: 0.55rem 0.6rem;
    border-radius: 0.45rem;
    border: 1px solid color-mix(in srgb, var(--lh-sea-deep) 25%, transparent);
    background: color-mix(in srgb, var(--lh-sea-deep) 10%, #fff);
}

.lh-admin-slots-flow li.is-page {
    border-color: rgba(18, 26, 33, 0.1);
    background: rgba(18, 26, 33, 0.04);
}

.lh-admin-slots-flow li span {
    display: grid;
    place-items: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: var(--lh-sea-deep);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 750;
}

.lh-admin-slots-flow li.is-page span {
    background: rgba(18, 26, 33, 0.45);
}

.lh-admin-slots-flow li div {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(18, 26, 33, 0.78);
    line-height: 1.25;
}

.lh-admin-slots-flow li strong {
    color: var(--lh-sea-deep);
    font-weight: 750;
}

.lh-admin-slots-off {
    margin: 0.75rem 0 0;
    padding: 0.55rem 0.65rem;
    border-radius: 0.4rem;
    border: 1px dashed rgba(18, 26, 33, 0.28);
    color: var(--lh-muted);
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1.35;
}

.lh-admin-slots-off strong {
    color: rgba(18, 26, 33, 0.7);
}

.lh-admin-slots-cards-title {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    font-weight: 700;
}

.lh-admin-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.lh-admin-slots-card {
    padding: 0.85rem 0.9rem;
    border-radius: 0.65rem;
    border: 1px solid rgba(18, 26, 33, 0.1);
    background: #fff;
}

.lh-admin-slots-card-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.lh-admin-slots-card-top code {
    font-size: 0.88rem;
    font-weight: 750;
    color: var(--lh-sea-deep);
    background: transparent;
    padding: 0;
}

.lh-admin-slots-card-top span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--lh-muted);
    font-variant-numeric: tabular-nums;
}

.lh-admin-slots-card p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.35;
    color: rgba(18, 26, 33, 0.7);
}

.lh-admin-slots-card.is-main {
    border-color: color-mix(in srgb, var(--lh-sea-deep) 28%, transparent);
    background: color-mix(in srgb, var(--lh-sea-deep) 5%, #fff);
}

.lh-admin-slots-card.is-sponsor {
    border-color: color-mix(in srgb, #8a5a2b 28%, transparent);
    background: color-mix(in srgb, #8a5a2b 5%, #fff);
}

.lh-admin-slots-card.is-sponsor .lh-admin-slots-card-top code {
    color: #6b4320;
}

@media (max-width: 991.98px) {
    .lh-admin-slots-stage {
        grid-template-columns: 1fr;
    }

    .lh-admin-slots-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .lh-admin-slots-desk {
        grid-template-columns: 1fr;
    }

    .lh-admin-slots-rails {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lh-admin-slots-grid {
        grid-template-columns: 1fr;
    }
}

.lh-admin-poster-preview {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    border: 1px solid rgba(18, 26, 33, 0.08);
    background: #eef3f5;
}

.lh-admin-poster-confidence {
    font-size: 0.9rem;
    color: rgba(18, 26, 33, 0.7);
}

.lh-admin-poster-dup-warn {
    border: 1px solid rgba(180, 83, 9, 0.35);
    background: rgba(255, 247, 237, 0.95);
}

.lh-admin-poster-dup-list {
    margin: 0;
    padding-left: 1.15rem;
}

.lh-admin-poster-dup-list li {
    margin: 0.35rem 0;
}

.lh-admin-poster-dup-org {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.05rem 0.4rem;
    border-radius: 999px;
    background: rgba(180, 83, 9, 0.14);
    color: #9a3412;
    font-size: 0.72rem;
    font-weight: 700;
}

/* —— Lab homepage (ad / sponsor placement sandbox) —— */
.lh-lab .lh-lab-aside-ad {
    margin-top: 0.35rem;
}

.lh-lab .lh-lab-event-list {
    display: grid;
    gap: 0.75rem;
}

.lh-lab .lh-lab-extra {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.85rem;
}

.lh-lab .lh-lab-rails-caption {
    margin: 0;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--lh-muted);
}

.lh-lab .lh-lab-rails {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
    align-items: start;
    gap: 0.85rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.lh-lab .lh-lab-rail-tile.lh-ad-slot-rail {
    width: min(100%, 11.5rem);
    max-width: 11.5rem;
    aspect-ratio: 300 / 600;
    height: auto;
    margin: 0;
    border-radius: 0.5rem;
    background: #0c1c24;
}

@media (min-width: 768px) {
    .lh-lab .lh-lab-rail-tile.lh-ad-slot-rail {
        width: min(100%, 13.5rem);
        max-width: 13.5rem;
    }
}

@media (min-width: 1100px) {
    .lh-lab .lh-lab-rails {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.lh-lab .lh-lab-rail-tile .lh-lab-ad-face {
    padding: 0.55rem 0.4rem;
}

.lh-lab .lh-lab-rail-tile .lh-lab-ad-face-kicker,
.lh-lab .lh-lab-rail-tile .lh-lab-ad-title,
.lh-lab .lh-lab-rail-tile .lh-lab-ad-empty-kicker,
.lh-lab .lh-lab-rail-tile .lh-lab-ad-empty-title,
.lh-lab .lh-lab-rail-tile .lh-ad-badge {
    display: none;
}

.lh-lab .lh-lab-rail-tile .lh-lab-ad-face-size,
.lh-lab .lh-lab-rail-tile .lh-lab-ad-empty-size {
    font-size: clamp(0.85rem, 2.2vw, 1.15rem);
    letter-spacing: 0.01em;
}

.lh-lab .lh-lab-rail-tile .lh-lab-size {
    font-size: 0.62rem;
    padding: 0.14rem 0.38rem;
    top: 0.4rem;
    left: 0.4rem;
}

.lh-lab .lh-lab-rail-tile .lh-lab-slot-tag {
    font-size: 0.58rem;
    top: 0.4rem;
    right: 0.4rem;
    padding: 0.12rem 0.35rem;
}

@media (max-width: 991.98px) {
    /* Mobile: no ads above/inside the list — leader moves under pagination via DOM+order */
    .lh-lab .lh-lab-aside-ad,
    .lh-lab .lh-ad-slot-inline {
        display: none !important;
    }
}

.lh-lab .lh-lab-main {
    display: flex;
    flex-direction: column;
}

.lh-lab .lh-portal-toolbar {
    order: 1;
}

.lh-lab .lh-lab-event-list {
    order: 2;
}

.lh-lab .lh-pagination {
    order: 3;
}

.lh-lab .lh-lab-leader {
    order: 4;
    margin-top: 1.1rem;
    margin-bottom: 0.35rem;
}

.lh-lab .lh-lab-extra {
    order: 5;
}

@media (min-width: 992px) {
    /* Desktop: leader stays above the event list */
    .lh-lab .lh-lab-leader {
        order: 2;
        margin-top: 0;
        margin-bottom: 0.85rem;
    }

    .lh-lab .lh-lab-event-list {
        order: 3;
    }

    .lh-lab .lh-pagination {
        order: 4;
    }

    .lh-lab .lh-lab-extra {
        order: 5;
    }
}

.lh-lab .lh-lab-ad {
    --lab-ad-accent: #0b5f73;
    display: grid;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border: 1px solid color-mix(in srgb, var(--lab-ad-accent) 28%, rgba(18, 26, 33, 0.12));
    border-radius: var(--lh-radius);
    background:
        linear-gradient(
            135deg,
            color-mix(in srgb, var(--lab-ad-accent) 14%, #fff) 0%,
            color-mix(in srgb, var(--lab-ad-accent) 5%, #f5f7f8) 100%
        );
    overflow: hidden;
    color: var(--lh-ink);
}

.lh-lab .lh-lab-ad-face {
    display: grid;
    place-items: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0.85rem 2.75rem;
    text-decoration: none;
    color: inherit;
}

.lh-lab .lh-lab-ad.has-image .lh-lab-ad-face {
    padding: 0;
    overflow: hidden;
}

.lh-lab .lh-lab-ad-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #0c1c24;
}

.lh-lab .lh-ad-slot-leader .lh-lab-ad-img,
.lh-lab .lh-ad-slot-footer .lh-lab-ad-img {
    object-fit: cover;
    background: transparent;
}

.lh-lab .lh-lab-ad-face-meta {
    display: grid;
    justify-items: center;
    gap: 0.2rem;
    max-width: 100%;
    text-align: center;
}

.lh-lab .lh-lab-ad-face-kicker,
.lh-lab .lh-lab-ad-empty-kicker {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(18, 26, 33, 0.45);
}

.lh-lab .lh-lab-ad-face-size,
.lh-lab .lh-lab-ad-empty-size {
    font-family: var(--lh-font-display, Fraunces, Georgia, serif);
    font-size: clamp(1.05rem, 2.6vw, 1.55rem);
    font-weight: 650;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--lh-sea-deep);
    font-variant-numeric: tabular-nums;
}

.lh-lab .lh-lab-ad-title {
    max-width: 100%;
    margin: 0.35rem 0 0;
    font-family: var(--lh-font-display, Fraunces, Georgia, serif);
    font-size: clamp(0.78rem, 1.6vw, 0.95rem);
    font-weight: 550;
    line-height: 1.25;
    text-align: center;
    color: rgba(18, 26, 33, 0.62);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.lh-lab .lh-portal-main,
.lh-lab .lh-lab-event-list,
.lh-lab .lh-lab-extra,
.lh-lab .lh-lab-rails {
    min-width: 0;
    max-width: 100%;
}

.lh-lab .lh-lab-slot-tag {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    z-index: 2;
    padding: 0.15rem 0.4rem;
    border-radius: 0.3rem;
    border: 1px dashed rgba(11, 95, 115, 0.35);
    background: rgba(255, 255, 255, 0.92);
    color: rgba(11, 95, 115, 0.9);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: lowercase;
}

.lh-lab .lh-lab-size {
    position: absolute;
    top: 0.45rem;
    left: 0.45rem;
    z-index: 2;
    padding: 0.18rem 0.45rem;
    border-radius: 0.3rem;
    background: rgba(12, 28, 36, 0.78);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}

.lh-lab .lh-lab-ad .lh-ad-badge {
    top: auto;
    bottom: 0.45rem;
    left: 0.45rem;
    background: rgba(12, 28, 36, 0.5);
    letter-spacing: 0.06em;
    text-transform: none;
    font-weight: 600;
}

.lh-lab .lh-sponsors-label .lh-lab-slot-tag {
    position: static;
    margin-left: 0.4rem;
    vertical-align: middle;
}

.lh-lab .lh-lab-ad-empty {
    display: grid;
    place-items: center;
    gap: 0.2rem;
    width: 100%;
    min-height: 100%;
    padding: 1rem 2.5rem;
}

.lh-lab .lh-lab-ad-empty-title {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(18, 26, 33, 0.55);
}

/* Wide short banners: size chip primary, quieter center label */
.lh-lab .lh-ad-slot-leader .lh-lab-ad-face,
.lh-lab .lh-ad-slot-inline .lh-lab-ad-face,
.lh-lab .lh-ad-slot-footer .lh-lab-ad-face {
    padding: 0.45rem 2.5rem;
}

.lh-lab .lh-ad-slot-leader .lh-lab-ad-face-size,
.lh-lab .lh-ad-slot-inline .lh-lab-ad-face-size,
.lh-lab .lh-ad-slot-footer .lh-lab-ad-face-size,
.lh-lab .lh-ad-slot-leader .lh-lab-ad-empty-size,
.lh-lab .lh-ad-slot-inline .lh-lab-ad-empty-size,
.lh-lab .lh-ad-slot-footer .lh-lab-ad-empty-size {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
}

.lh-lab .lh-ad-slot-inline .lh-lab-ad-title,
.lh-lab .lh-ad-slot-inline .lh-lab-ad-face-kicker,
.lh-lab .lh-ad-slot-inline .lh-lab-ad-empty-kicker,
.lh-lab .lh-ad-slot-inline .lh-lab-ad-empty-title {
    display: none;
}

/* Lab sponsors: full container width, up to 8 per row */
.lh-lab-sponsors {
    padding: 1.35rem 0 1.55rem;
    background:
        linear-gradient(180deg, rgba(12, 28, 36, 0.03) 0%, transparent 22%),
        #f3f6f7;
}

.lh-lab-sponsors-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-inline: 1rem;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .lh-lab-sponsors-inner {
        padding-inline: 1.5rem;
    }
}

.lh-lab-sponsors .lh-sponsors-label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.55rem;
    margin-bottom: 0.85rem;
}

.lh-lab-sponsors-sizehint {
    display: inline-block;
    padding: 0.18rem 0.5rem;
    border-radius: 0.35rem;
    background: rgba(12, 28, 36, 0.78);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: none;
}

.lh-lab-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    width: 100%;
}

@media (min-width: 576px) {
    .lh-lab-sponsors-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .lh-lab-sponsors-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .lh-lab-sponsors-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.lh-lab-sponsors .lh-sponsor-link {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.4rem;
    border-radius: 0.45rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 26, 33, 0.08);
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lh-lab-sponsors .lh-sponsor-link:hover,
.lh-lab-sponsors .lh-sponsor-link:focus-visible {
    transform: none;
    border-color: color-mix(in srgb, var(--lab-ad-accent, #0b5f73) 35%, rgba(18, 26, 33, 0.12));
    box-shadow: 0 4px 12px rgba(12, 28, 36, 0.06);
}

.lh-lab-sponsors .lh-sponsor-media {
    position: relative;
    aspect-ratio: 400 / 200;
    border-radius: 0.3rem;
    background:
        linear-gradient(
            135deg,
            color-mix(in srgb, var(--lab-ad-accent, #0b5f73) 18%, #fff) 0%,
            color-mix(in srgb, var(--lab-ad-accent, #0b5f73) 6%, #f4f7f8) 100%
        );
}

.lh-lab-sponsors .lh-sponsor-media img {
    object-fit: contain;
    padding: 0.4rem;
    background: #fff;
}

.lh-lab-sponsors .lh-lab-size {
    top: 0.28rem;
    left: 0.28rem;
    font-size: 0.55rem;
    padding: 0.1rem 0.3rem;
}

.lh-lab-sponsors .lh-sponsor-textmark {
    min-height: 0;
    font-size: 1.05rem;
    background: transparent;
    color: color-mix(in srgb, var(--lab-ad-accent, #0b5f73) 70%, #0c1c24);
}

.lh-lab-sponsors .lh-sponsor-copy {
    gap: 0;
    text-align: center;
    padding: 0 0.1rem 0.05rem;
}

.lh-lab-sponsors .lh-sponsor-name {
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.25;
    color: rgba(18, 26, 33, 0.7);
}

.lh-lab-sponsors .lh-sponsor-caption {
    display: none;
}

.lh-lab-sponsors .lh-sponsor-gold .lh-sponsor-link,
.lh-lab-sponsors .lh-sponsor-silver .lh-sponsor-link,
.lh-lab-sponsors .lh-sponsor-bronze .lh-sponsor-link {
    background: rgba(255, 255, 255, 0.96);
}

.lh-sponsor-textmark {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: 4.5rem;
    background: linear-gradient(135deg, #dceef2 0%, #eef4f6 100%);
    color: rgba(12, 28, 36, 0.55);
    font-family: var(--lh-font-display, Fraunces, Georgia, serif);
    font-size: 2rem;
    font-weight: 700;
}

/* —— Associations directory (preview) —— */
.lh-directory-preview-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.lh-directory-hero-copy {
    max-width: 42rem;
    cursor: default;
}

.lh-directory-hero-copy.lh-portal-hero-brand:hover,
.lh-directory-hero-copy.lh-portal-hero-brand:focus {
    opacity: 1;
}

.lh-directory-portal {
    padding-bottom: 2.5rem;
}

.lh-directory-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.85rem;
}

@media (min-width: 640px) {
    .lh-directory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .lh-directory-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

.lh-directory-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-height: 100%;
    padding: 1rem 1rem 0.95rem;
    border: 1px solid rgba(18, 26, 33, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 28px rgba(8, 40, 48, 0.06);
    color: inherit;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.lh-directory-card.is-link:hover,
.lh-directory-card.is-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(11, 95, 115, 0.22);
    box-shadow: 0 16px 36px rgba(8, 40, 48, 0.1);
    color: inherit;
}

.lh-directory-card-head {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.lh-directory-card-logo-wrap {
    flex: 0 0 auto;
}

.lh-directory-card-logo {
    width: 3.35rem;
    height: 3.35rem;
    object-fit: cover;
    border-radius: 0.85rem;
    border: 1px solid rgba(18, 26, 33, 0.08);
    background: #fff;
}

.lh-directory-card-logo-fallback {
    display: grid;
    place-items: center;
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, #dceef2 0%, #eef4f6 100%);
    color: var(--lh-sea-deep);
    font-family: var(--lh-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.lh-directory-card-heading {
    min-width: 0;
}

.lh-directory-card-title {
    margin: 0 0 0.35rem;
    font-family: var(--lh-display);
    font-size: 1.05rem;
    font-weight: 650;
    line-height: 1.25;
    color: var(--lh-ink);
}

.lh-directory-card-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.lh-directory-cat-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--cat, #64748b) 14%, white);
    color: color-mix(in srgb, var(--cat, #64748b) 82%, black);
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.01em;
}

.lh-directory-card-desc {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(18, 26, 33, 0.72);
}

.lh-directory-card-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lh-directory-card-facts li {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    font-size: 0.78rem;
    font-weight: 550;
    color: rgba(18, 26, 33, 0.62);
}

.lh-directory-card-facts svg {
    flex: 0 0 auto;
    color: var(--lh-sea);
}

.lh-directory-card-cta {
    margin-top: auto;
    padding-top: 0.15rem;
    font-size: 0.82rem;
    font-weight: 650;
    color: var(--lh-sea-deep);
}

.lh-directory-empty {
    padding: 2.5rem 1rem;
    text-align: center;
    border: 1px dashed rgba(18, 26, 33, 0.14);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.72);
}

.lh-directory-empty-text {
    margin: 0 0 0.75rem;
    color: rgba(18, 26, 33, 0.68);
}

.lh-directory-empty-reset {
    font-weight: 650;
    color: var(--lh-sea-deep);
    text-decoration: none;
    border-bottom: 1px solid rgba(11, 95, 115, 0.28);
}

.lh-directory-empty-reset:hover {
    border-bottom-color: var(--lh-sea);
}

@media (max-width: 991.98px) {
    .lh-page-directory .lh-portal-hero .lh-portal-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .lh-page-directory .lh-portal-stat {
        justify-items: start;
        text-align: left;
    }
}

/* —— Admin sessions cleanup —— */
.lh-sessions-breakdown th,
.lh-sessions-breakdown td {
    vertical-align: middle;
}

.lh-sessions-type-card {
    height: 100%;
    padding: 0.9rem 1rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(18, 26, 33, 0.08);
    background: rgba(255, 255, 255, 0.96);
}

.lh-sessions-type-card.is-guest {
    border-left: 4px solid #64748b;
}

.lh-sessions-type-card.is-logged {
    border-left: 4px solid var(--lh-sea-deep);
}

.lh-sessions-type-kicker {
    margin: 0 0 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(18, 26, 33, 0.55);
}

.lh-sessions-type-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--lh-ink);
}

.lh-sessions-type-meta {
    font-size: 0.82rem;
    color: rgba(18, 26, 33, 0.68);
}
