/* ============================================================
   Outdoor Guide theme — tabbed, color-coded magazine layout for
   recurring "things to do outdoors" roundup articles (water sports,
   airboats/waterways, parks & trails, family outings, thrill &
   adventure, outdoor events). Scoped entirely under #outdoor-guide
   so it can't leak into the rest of the site chrome — this is a
   full standalone page, not loaded inside the main site layout.
   ============================================================ */

#outdoor-guide .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#outdoor-guide,
#outdoor-guide *,
#outdoor-guide *::before,
#outdoor-guide *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#outdoor-guide {
    --og-orange: #e07c24;
    --og-orange-dk: #c4681a;
    --og-black: #0e0e0e;
    --og-dark: #151515;
    --og-card-bg: #1c1c1c;
    --og-border: #2a2a2a;
    --og-text: #f0ece4;
    --og-muted: #888;
    --og-max-w: 900px;
    --og-nav-h: 40px;

    width: 100%;
    font-family: Georgia, 'Times New Roman', serif;
    background: var(--og-black);
    color: var(--og-text);
    line-height: 1.7;
}

/* ── Site bar ── */
#outdoor-guide .og-site-bar {
    background: #080808;
    height: var(--og-nav-h);
    display: flex;
    align-items: center;
    padding: 0 32px;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 300;
    border-bottom: 1px solid #1a1a1a;
}
#outdoor-guide .og-brand {
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #fff;
    text-decoration: none;
}
#outdoor-guide .og-back-link {
    margin-left: auto;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #444;
    text-decoration: none;
}
#outdoor-guide .og-back-link:hover { color: #aaa; }

/* ── Hero ── */
#outdoor-guide .og-hero {
    position: relative;
    background: linear-gradient(160deg, #0a2a1e 0%, #0f3d2a 55%, #1a5538 100%);
    padding: 52px 32px 40px;
}
#outdoor-guide .og-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #020f14;
    opacity: 0;
    pointer-events: none;
    animation: og-hero-dim 260s ease-in-out infinite alternate;
}
#outdoor-guide .og-hero-inner { position: relative; z-index: 1; max-width: var(--og-max-w); margin: 0 auto; }
#outdoor-guide .og-hero-kicker {
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #a8d5a2;
    margin-bottom: 16px;
}
#outdoor-guide .og-hero h1 {
    font-size: clamp(30px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 14px;
    max-width: 800px;
}
#outdoor-guide .og-hero-sub {
    font-size: 16px;
    color: #a8c8a0;
    max-width: 660px;
    margin-bottom: 22px;
    line-height: 1.7;
}
#outdoor-guide .og-hero-sub > * + * { margin-top: 12px; }
#outdoor-guide .og-toc { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
#outdoor-guide .og-toc-chip {
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 11px 4px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.2s;
    line-height: 1;
}
#outdoor-guide .og-toc-chip:hover { opacity: 0.82; }
#outdoor-guide .og-hero-landscape {
    display: block;
    margin-top: 20px;
    width: 100%;
    max-width: var(--og-max-w);
}
#outdoor-guide .og-sailboat-drift {
    animation: og-sail-drift 500s linear infinite;
}
#outdoor-guide .og-sailboat-bob {
    animation: og-sail-bob 2.8s ease-in-out infinite;
}
@keyframes og-sail-drift {
    from { transform: translateX(-320px); }
    to   { transform: translateX(580px); }
}
@keyframes og-sail-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-0.2px); }
}
#outdoor-guide .og-sun {
    animation: og-sun-set 280s ease-in-out infinite alternate;
}
@keyframes og-sun-set {
    from { cy: 20; fill: #f5b942; }
    to   { cy: 66; fill: #c4681a; }
}
#outdoor-guide .og-hill-a {
    animation: og-hill-a-dim 280s ease-in-out infinite alternate;
}
#outdoor-guide .og-hill-b {
    animation: og-hill-b-dim 280s ease-in-out infinite alternate;
}
@keyframes og-hill-a-dim {
    from { fill: #1d6b4a; }
    to   { fill: #0e2e20; }
}
@keyframes og-hill-b-dim {
    from { fill: #2a7d56; }
    to   { fill: #113524; }
}
@keyframes og-hero-dim {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    #outdoor-guide .og-sailboat-drift,
    #outdoor-guide .og-sailboat-bob,
    #outdoor-guide .og-sun,
    #outdoor-guide .og-hill-a,
    #outdoor-guide .og-hill-b,
    #outdoor-guide .og-hero::after {
        animation: none;
    }
}
#outdoor-guide .og-hero-credit {
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #4a7a5a;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 14px;
    display: inline-block;
}

/* ── Tab bar ── */
#outdoor-guide .og-tab-bar {
    background: #0a0a0a;
    border-bottom: 1px solid var(--og-border);
    overflow-x: auto;
    scrollbar-width: none;
    position: sticky;
    top: var(--og-nav-h);
    z-index: 200;
}
#outdoor-guide .og-tab-bar::-webkit-scrollbar { display: none; }
#outdoor-guide .og-tab-inner {
    display: flex;
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 32px;
}
#outdoor-guide .og-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 18px 9px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.18s, border-color 0.18s;
    user-select: none;
}
#outdoor-guide .og-tab-btn:hover { background: rgba(255,255,255,0.03); }
#outdoor-guide .og-tab-btn.is-active { border-bottom-color: var(--og-tab-accent, var(--og-orange)); }
#outdoor-guide .og-tab-icon { font-size: 18px; margin-bottom: 2px; }
#outdoor-guide .og-tab-name {
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #444;
    transition: color 0.18s;
}
#outdoor-guide .og-tab-btn:hover .og-tab-name { color: #888; }
#outdoor-guide .og-tab-btn.is-active .og-tab-name { color: #ddd; }

/* ── Content / section panels ── */
#outdoor-guide .og-content-wrap {
    max-width: var(--og-max-w);
    margin: 0 auto;
    padding: 0 32px 60px;
}
#outdoor-guide .og-section-panel {
    display: none;
    animation: og-fade-up 0.3s ease forwards;
}
#outdoor-guide .og-section-panel.is-active { display: block; }
@keyframes og-fade-up {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Section heading ── */
#outdoor-guide .og-sec-heading {
    display: flex;
    align-items: center;
    margin: 36px 0 6px;
    border-radius: 6px;
    overflow: hidden;
}
#outdoor-guide .og-sec-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
#outdoor-guide .og-sec-title-block {
    flex: 1;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
#outdoor-guide .og-sec-h2 {
    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
}
#outdoor-guide .og-sec-tagline {
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-style: italic;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.06em;
    white-space: nowrap;
}

/* ── Entry cards ── */
#outdoor-guide .og-card {
    background: var(--og-card-bg);
    border-left: 3px solid #333;
    border-radius: 0 6px 6px 0;
    padding: 14px 16px;
    margin-bottom: 8px;
    transition: background 0.18s;
}
#outdoor-guide .og-card:hover { background: #222; }
#outdoor-guide .og-card h3 {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #e8e4dc;
    letter-spacing: 0.01em;
    margin-bottom: 4px;
}
#outdoor-guide .og-card h3 a { color: inherit; text-decoration: none; transition: color 0.15s; }
#outdoor-guide .og-card h3 a:hover { color: var(--og-orange); }
#outdoor-guide .og-title-highlight { color: #f5b942; }
#outdoor-guide .og-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; align-items: center; }
#outdoor-guide .og-pill {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 10px;
    background: #2a2a2a;
    color: #888;
}
#outdoor-guide .og-pill--local { background: rgba(224,124,36,0.15); color: var(--og-orange); }
#outdoor-guide .og-pill--badge { background: #2a2a2a; color: #bfab82; }
#outdoor-guide .og-pill--free { background: rgba(107,131,58,0.18); color: #9ac060; }
#outdoor-guide .og-desc { font-size: 14px; color: #9f9f9f; line-height: 1.65; }
#outdoor-guide .og-desc > * + * { margin-top: 8px; }
#outdoor-guide .og-desc a { color: inherit; }
#outdoor-guide .og-url {
    display: none;
    font-family: Arial, sans-serif;
    font-size: 10px;
    color: #3a3a3a;
    margin-top: 6px;
    letter-spacing: 0.03em;
    word-break: break-all;
}
#outdoor-guide .og-url a { color: #4a4a4a; text-decoration: none; transition: color 0.15s; }
#outdoor-guide .og-url a:hover { color: var(--og-orange); }

#outdoor-guide .og-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
#outdoor-guide .og-two-col .og-card { margin-bottom: 0; }

/* ── Featured card ── */
#outdoor-guide .og-card--featured {
    border-left-width: 4px;
    padding: 18px 20px;
    background: #1f1f1f;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 12px;
}
#outdoor-guide .og-card--featured.og-card--text { grid-template-columns: minmax(0, 1fr); }
#outdoor-guide .og-card--featured .og-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
}
#outdoor-guide .og-card--featured .og-card-media img { width: 100%; height: 100%; object-fit: cover; }
#outdoor-guide .og-card--featured h3 { font-size: 19px; }
#outdoor-guide .og-card--featured .og-desc { font-size: 14.5px; color: #bdbbb7; }

/* ── Event blocks ── */
#outdoor-guide .og-event-block {
    display: grid;
    grid-template-columns: 130px 1fr;
    background: var(--og-card-bg);
    border-left: 3px solid var(--og-orange);
    border-radius: 0 6px 6px 0;
    margin-bottom: 8px;
    overflow: hidden;
    transition: background 0.18s;
}
#outdoor-guide .og-event-block:hover { background: #222; }
#outdoor-guide .og-event-date-col {
    background: #1a1a1a;
    border-right: 1px solid var(--og-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 14px;
    gap: 3px;
}
#outdoor-guide .og-event-date {
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
#outdoor-guide .og-event-venue {
    font-family: Arial, sans-serif;
    font-size: 9.5px;
    letter-spacing: 0.06em;
    color: #b1b1b1;
    line-height: 1.4;
}
#outdoor-guide .og-event-info { padding: 14px 16px; }
#outdoor-guide .og-event-title {
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.01em;
    color: #e0dcd4;
    margin-bottom: 4px;
}
#outdoor-guide .og-event-title a { color: inherit; text-decoration: none; transition: color 0.15s; }
#outdoor-guide .og-event-title a:hover { color: var(--og-orange); }
#outdoor-guide .og-event-desc { font-size: 13px; color: #666; line-height: 1.55; }

#outdoor-guide .og-empty {
    color: var(--og-muted);
    font-style: italic;
    font-size: 14px;
    padding: 12px 2px;
}

/* ── Prev / next ── */
#outdoor-guide .og-section-nav {
    display: flex;
    gap: 10px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--og-border);
}
#outdoor-guide .og-nav-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid var(--og-border);
    border-radius: 4px;
    background: #161616;
    cursor: pointer;
    transition: border-color 0.2s;
}
#outdoor-guide .og-nav-btn:hover { border-color: var(--og-orange); }
#outdoor-guide .og-nav-btn--next { justify-content: flex-end; text-align: right; }
#outdoor-guide .og-nav-btn--disabled { visibility: hidden; border: none; background: none; cursor: default; }
#outdoor-guide .og-nav-arrow { font-size: 18px; color: var(--og-orange); font-family: Arial, sans-serif; font-weight: 900; flex-shrink: 0; }
#outdoor-guide .og-nav-dir { font-family: Arial, sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #444; display: block; margin-bottom: 3px; }
#outdoor-guide .og-nav-sec { font-family: Arial, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.05em; color: #aaa; text-transform: uppercase; }

/* ── Newsletter / share CTA ── */
#outdoor-guide .og-cta-bar {
    background: var(--og-orange);
    width: 100%;
}
#outdoor-guide .og-cta-inner {
    max-width: var(--og-max-w);
    margin: 0 auto;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
#outdoor-guide .og-cta-bar h5 { font-size: 18px; font-weight: 800; color: #fff; }
#outdoor-guide .og-cta-bar p { font-size: 15px; color: rgba(255,255,255,0.78); margin-top: 3px; }
#outdoor-guide .og-cta-form { display: flex; gap: 8px; flex-wrap: wrap; }
#outdoor-guide .og-cta-input {
    padding: 10px 16px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background: rgba(255,255,255,0.25);
    color: #fff;
    min-width: 200px;
}
#outdoor-guide .og-cta-input::placeholder { color: rgba(255,255,255,0.75); }
#outdoor-guide .og-cta-btn {
    padding: 10px 20px;
    background: #fff;
    color: var(--og-orange-dk);
    font-weight: 800;
    font-size: 13px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}
#outdoor-guide .og-cta-btn:hover:not(:disabled) { background: #f6f6f6; }
#outdoor-guide .og-cta-btn:disabled { opacity: .65; cursor: not-allowed; }
#outdoor-guide .og-cta-error {
    font-size: .8rem;
    color: #3a0d00;
    background: rgba(255,255,255,.85);
    padding: .3rem .6rem;
    border-radius: 4px;
    margin-top: .5rem;
    width: 100%;
}
#outdoor-guide .og-cta-success { font-size: .95rem; font-weight: 700; color: #fff; }
#outdoor-guide .og-cta-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
#outdoor-guide .og-cta-guide { font-size: 14px; font-weight: 800; color: #fff; text-decoration: none; white-space: nowrap; }
#outdoor-guide .og-cta-guide:hover { text-decoration: underline; }
#outdoor-guide .og-cta-share { display: flex; align-items: center; gap: 12px; }
#outdoor-guide .og-cta-share a { color: #fff; font-size: 18px; text-decoration: none; opacity: .85; }
#outdoor-guide .og-cta-share a:hover { opacity: 1; }

/* ── Footer ── */
#outdoor-guide .og-page-footer {
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 18px 32px;
    text-align: center;
}
#outdoor-guide .og-page-footer span {
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #333;
}

/* ── Responsive ── */
@media (max-width: 680px) {
    #outdoor-guide .og-site-bar { padding: 0 16px; }
    #outdoor-guide .og-hero { padding: 36px 16px 32px; }
    #outdoor-guide .og-hero h1 { max-width: 380px; }
    #outdoor-guide .og-tab-bar { display: none; }
    #outdoor-guide .og-content-wrap { padding: 0 16px 50px; }
    #outdoor-guide .og-two-col { grid-template-columns: 1fr; }
    #outdoor-guide .og-card--featured { grid-template-columns: 1fr; }
    #outdoor-guide .og-event-block { grid-template-columns: 1fr; }
    #outdoor-guide .og-event-date-col { border-right: none; border-bottom: 1px solid var(--og-border); flex-direction: row; gap: 12px; align-items: center; padding: 10px 14px; }
    #outdoor-guide .og-sec-tagline { display: none; }
    #outdoor-guide .og-cta-inner { padding: 24px 20px; }
}

/* ── Listing cards that open the popover instead of linking out ── */
#outdoor-guide .og-card--clickable { cursor: pointer; }

/* ── LISTING DETAIL POPOVER (forked from themes/sushi-guide/css/style.css) ──
   Selectors are prefixed with #outdoor-guide, both to stay consistent with
   the rest of this file and — critically — because the theme's own
   `#outdoor-guide *` reset (margin/padding: 0) outranks a bare class
   selector's specificity; without the prefix these rules lose that fight
   and every padding/margin below gets silently zeroed out. Font-family is
   set explicitly too, since #outdoor-guide's own Georgia body font would
   otherwise inherit into UI chrome (badges, pills, buttons) that's meant to
   read as sans-serif, matching the card system's own labels/headings. ── */
#outdoor-guide .listing-overlay {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: listingOverlayIn 180ms ease;
    font-family: Arial, sans-serif;
}
#outdoor-guide .listing-overlay[hidden] { display: none; }

@keyframes listingOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#outdoor-guide .listing-overlay-dialog {
    position: relative;
    width: min(820px, 100%);
    max-height: calc(100dvh - 2rem);
    background: var(--og-dark);
    border: 1px solid var(--og-border);
    border-radius: 6px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#outdoor-guide .listing-overlay-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}
#outdoor-guide .listing-overlay-loading[hidden] { display: none; }

#outdoor-guide .listing-overlay-spinner {
    width: 52px;
    height: 52px;
    opacity: .6;
}

#outdoor-guide .listing-overlay-content {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    flex: 1;
    min-height: 0;
}
#outdoor-guide .listing-overlay-content[hidden] { display: none; }

#outdoor-guide .listing-overlay-hero {
    position: relative;
    flex: 0 0 280px;
    min-height: 320px;
}

#outdoor-guide .listing-overlay-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1c1c1c;
    filter: brightness(0.85);
}

#outdoor-guide .listing-overlay-close {
    position: absolute;
    top: .6rem;
    right: .6rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--og-border);
    background: rgba(10, 10, 10, .8);
    color: var(--og-text);
    font-size: .9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 120ms, color 120ms, border-color 120ms;
    z-index: 1;
}
#outdoor-guide .listing-overlay-close:hover {
    background: var(--og-orange);
    border-color: var(--og-orange);
    color: #fff;
}

#outdoor-guide .listing-overlay-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 1.5rem 1.75rem 1.25rem;
    min-height: 0;
    background: var(--og-dark);
    font-family: Arial, sans-serif;
}

#outdoor-guide .listing-overlay-title {
    margin: 0 0 .2rem;
    font-family: Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
}

#outdoor-guide .listing-overlay-subtitle {
    font-size: .85rem;
    color: #999;
    margin-bottom: .8rem;
}

#outdoor-guide .listing-overlay-meta {
    margin-bottom: .9rem;
    border-bottom: 1px solid var(--og-border);
    padding-bottom: .9rem;
}

#outdoor-guide .listing-overlay-info {
    margin-top: .55rem;
    font-size: .83rem;
    color: #bbb;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

#outdoor-guide .listing-overlay-info-row {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
}
#outdoor-guide .listing-overlay-info-row .fa {
    flex-shrink: 0;
    margin-top: .15em;
    color: var(--og-orange);
    font-size: .85rem;
    width: 14px;
    text-align: center;
}
#outdoor-guide .listing-overlay-info-row a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .25);
}
#outdoor-guide .listing-overlay-info-row a:hover { color: #fff; }

#outdoor-guide .listing-overlay-hours {
    align-items: flex-start;
}
#outdoor-guide .listing-overlay-hours > div {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    line-height: 1.5;
}

/* Circular icon buttons — call / website */
#outdoor-guide .listing-overlay-actions {
    display: flex;
    gap: .5rem;
    margin-top: .8rem;
}
#outdoor-guide .listing-overlay-actions:empty { display: none; }
#outdoor-guide .lo-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--og-card-bg);
    border: 1px solid var(--og-border);
    color: var(--og-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    text-decoration: none;
    transition: background 120ms, color 120ms, border-color 120ms;
}
#outdoor-guide .lo-icon-circle:hover {
    background: var(--og-orange);
    border-color: var(--og-orange);
    color: #fff;
}

/* Tag pills */
#outdoor-guide .listing-overlay-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: .8rem;
}
#outdoor-guide .listing-overlay-tags:empty { display: none; }
#outdoor-guide .lo-tag-pill {
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 10px;
    border: 1px solid var(--og-border);
    border-radius: 12px;
    color: #999;
    background: transparent;
}

#outdoor-guide .listing-overlay-desc {
    flex: 1;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: .95rem;
    line-height: 1.7;
    color: #bbb;
}
#outdoor-guide .listing-overlay-desc p { margin: 0; }

#outdoor-guide .listing-overlay-footer {
    margin-top: 1.1rem;
    padding-top: .85rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#outdoor-guide .listing-overlay-edit-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #999;
    text-decoration: none;
    transition: color 120ms;
}
#outdoor-guide .listing-overlay-edit-link:hover { color: #fff; }

#outdoor-guide.listing-overlay-open { overflow: hidden; }

@media (max-width: 680px) {
    #outdoor-guide .listing-overlay { padding: 0; align-items: flex-end; }
    #outdoor-guide .listing-overlay-dialog {
        width: 100%;
        max-height: 90dvh;
        border-radius: 0;
    }
    #outdoor-guide .listing-overlay-content { flex-direction: column; }
    #outdoor-guide .listing-overlay-hero {
        flex: 0 0 200px;
        min-height: 200px;
    }
    #outdoor-guide .listing-overlay-body { padding: 1.1rem 1.2rem 1rem; }
    #outdoor-guide .listing-overlay-title { font-size: 1.2rem; }
}

/* --- Listing overlay: open/closed status & hours schedule --- */

#outdoor-guide .lo-hours-row-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: .4rem;
    margin-top: .8rem;
}

#outdoor-guide .lo-status-line {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-wrap: wrap;
}

#outdoor-guide .lo-status-badge {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .18em .6em;
    border-radius: 3px;
    line-height: 1.5;
}
#outdoor-guide .lo-status-open   { background: rgba(40, 167, 69, .18); color: #4ad66d; }
#outdoor-guide .lo-status-closed { background: rgba(184, 28, 46, .18); color: #ff6b7a; }

#outdoor-guide .lo-status-detail {
    font-size: .8rem;
    color: #888;
}

#outdoor-guide .listing-overlay-hours-plain {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    margin-left: .3rem;
    font-size: .8rem;
    line-height: 1.55;
}
