/**
 * SNAPSMACK - Stylesheet for the new-horizon skin
 * Alpha v0.7.5
 */

/*
 * SNAPSMACK_EOF_HEADER
 * Last non-empty line of this file MUST be the canonical CSS EOF
 * marker: slash-star, space, five equals, space, the literal string
 * 'SNAPSMACK EOF', space, five equals, space, star-slash.
 * (Authoritative byte sequence: tools/check-eof.py EOF_MARKERS['.css'].)
 * Missing or different = truncated/corrupted. Restore before saving.
 */




/* ==========================================================================
    GLOBAL STYLES
    ========================================================================= */

html {
    height: 100%;
    margin: 0;
    padding: 0;
    background: var(--bg-page);
    color: var(--text-primary);
    font-family: Georgia, 'Times New Roman', Times, serif;
    overflow: hidden;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: var(--bg-page);
    color: var(--text-primary);
    font-family: Georgia, 'Times New Roman', Times, serif;
    overflow-y: auto;
}

/* ==========================================================================
    LAYOUT STRUCTURE (SNAPPING ENGINE)
    ========================================================================= */

#page-wrapper {
    display: flex;
    flex-direction: column;
    height: 100dvh;
}

#scroll-stage {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    align-items: stretch;
    min-height: 0;
}

/* ==========================================================================
    HEADER (FIXED HEIGHT LOCK)
    ========================================================================= */

#header {
    background: var(--bg-page);
    height: 80px; /* FIXED: Absolute baseline */
    padding: 0;
    flex-shrink: 0;
    z-index: 20;
    position: relative;
    display: flex;
    align-items: center;
}

#header .inside {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 0 40px; 
}

.site-title-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-bright);
    margin: 0;
    line-height: 1;
    display: block;
}

.logo-area a {
    text-decoration: none;
    color: var(--text-bright);
}

.site-logo {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.2s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--text-bright);
}

.nav-menu .sep {
    padding: 0 15px;
    color: var(--text-faint);
    font-size: 0.9rem;
    cursor: default;
}

/* ==========================================================================
    PHOTOBOX & IMAGE (OPTICAL LIFT ENGINE)
    ========================================================================= */

#photobox {
    background: var(--bg-page);
    width: 100%;
    /* 1. Calculate Full Available Void: 100dvh - 80px (Header) - 60px (Infobox) */
    height: calc(100dvh - 140px);
    display: flex;
    justify-content: center;
    align-items: center;
    /* 2. OPTICAL LIFT: 50px bottom padding moves the center point UP by 25px */
    padding: 0 0 50px 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
    overflow: hidden;
    flex-grow: 1;
    flex-shrink: 0 !important;
}

.main-photo {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px; /* Room for box-shadow frame — must exceed largest shadow spread (21px for Obsidian) */
    box-sizing: border-box;
}

.zoomable::after {
    content: none !important;
}

/* THE INDEX FRAME */
img.post-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    box-sizing: border-box;
    border: 5px solid var(--border-accent);
    box-shadow: none;
    cursor: zoom-in !important;
    outline: none !important;
}

/* ==========================================================================
    INFOBOX (FIXED HEIGHT LOCK)
    ========================================================================= */

#infobox {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--bg-page);
    height: 60px; /* FIXED: Absolute baseline */
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 10;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    box-sizing: border-box; /* FIX: Include borders in 60px — prevents 2px scrollbar overflow */
}

.nav-links {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links .left,
.nav-links .center,
.nav-links .right {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    margin: 0;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 0;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--text-bright);
}

.nav-links .sep {
    color: var(--text-faint);
    font-size: 0.9rem;
}

.dim {
    color: var(--border-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

/* ==========================================================================
    POST CONTENT DRAWER (UNIFIED ALIGNMENT)
    ========================================================================= */

#footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    padding: 52px 0 0 0; /* REDUCED 35% from 80px */
    text-align: left;
    display: none;
    width: 100%;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
}

.photo-title-footer, 
.description, 
.meta,
.comment-form,
#pane-comments {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.photo-title-footer {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-bright);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 2rem;
    margin: 0 auto 40px auto;
    font-weight: 700;
}

.description {
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.6;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.description a,
.static-content a:not(.nav-menu a) {
    color: var(--text-bright);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.description a:hover,
.static-content a:not(.nav-menu a):hover {
    color: var(--border-accent);
}

.description a:has(img),
.static-content a:has(img) {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* ==========================================================================
    THE SIGNATURE (SYSTEM FOOTER STRIP)
    ========================================================================= */

#system-footer {
    background: var(--bg-chrome) !important;
    padding: 32px 0 !important; /* REDUCED 35% from 50px */
    text-align: center !important;
    width: 100% !important;
    border-top: 1px solid var(--border-accent) !important;
    margin-top: auto;
    display: none;
}

#footer[style*="display: block"] ~ #system-footer,
#footer[style*="display:block"] ~ #system-footer {
    display: block !important;
}

#system-footer .inside {
    max-width: 95% !important;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
}

#system-footer p, #sig-text {
    color: var(--text-primary) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.7rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin: 0 !important;
}

/* ==========================================================================
    TECHNICAL SPECIFICATIONS (TYPEWRITER LOOK)
    ========================================================================= */

.meta {
    border-top: 1px solid var(--border-primary);
    padding-top: 40px;
    margin-top: 40px;
    text-align: center;
    padding-bottom: 60px;
}

.meta-header {
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 4px;
    font-size: 1.1rem;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 600;
}

.meta-header.no-signals {
    color: var(--text-link) !important;
}

.exif-table {
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
    width: auto;
}

.exif-label {
    padding-right: 40px;
    padding-bottom: 12px;
    color: var(--text-muted);
    font-weight: 900;
    text-transform: uppercase;
    font-family: sans-serif;
    width: 160px;
    vertical-align: top;
}

.exif-value {
    padding-bottom: 12px;
    color: var(--text-secondary);
    font-family: 'Courier New', Courier, monospace !important;
    font-size: 1.1em;
    letter-spacing: 0.5px;
}

/* ==========================================================================
    COMMENTS (FORM LAYOUT FIX)
    ========================================================================= */

.comment-form {
    border-top: 1px solid var(--border-dim);
    padding-top: 40px;
    margin-top: 40px;
    padding-bottom: 80px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.comment-form input,
.comment-form textarea {
    background: var(--bg-page);
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
    padding: 15px;
    font-family: "Courier New", Courier, monospace;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
}

.form-row input {
    flex: 1;
}

.comment-form textarea {
    height: 150px;
    resize: vertical;
}

.comment-form button {
    margin-top: 20px;
    background: var(--bg-tertiary);
    color: var(--text-dim);
    border: 1px solid var(--border-primary);
    padding: 12px 30px;
    cursor: pointer;
    font-family: sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    float: right;
}

/* ==========================================================================
    ARCHIVE GRID
   ========================================================================= */

/* --- GRID A: Square & Cropped (CSS Grid layout) --- */
#browse-grid {
    max-width: 95%;
    margin: 80px auto;
    padding: 0 60px;
    flex: 1 0 auto;
}

/* --- GRID B: Justified (Own ID — ZERO shared selectors with Grid A) --- */
#justified-grid {
    display: block;
    max-width: 95%;
    margin: 40px auto;
    padding: 0;
    box-sizing: border-box;
    flex: 1 0 auto;
}

.square-grid .thumb-container,
.cropped-grid .thumb-container {
    margin: 0 auto;
    background: var(--bg-page);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* ARCHIVE FRAME — scoped to Grid A only */
.square-grid .thumb-link,
.cropped-grid .thumb-link {
    display: inline-block;
    border: 3px solid var(--border-accent);
    box-shadow: none;
    box-sizing: border-box;
}

/* Square grid: thumb-link fills the 1:1 cell */
.square-grid .thumb-link {
    display: block;
    width: 100%;
    height: 100%;
}
.square-grid .thumb-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Cropped grid: thumb-link fills cell, portraits/squares scoped by public-facing.css */
.cropped-grid .thumb-link {
    display: block;
    width: 100%;
    overflow: hidden;
}
.cropped-grid .thumb-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.square-grid .thumb-link img,
.cropped-grid .thumb-link img {
    max-width: var(--thumb-width, 400px);
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.square-grid .thumb-link img:hover,
.cropped-grid .thumb-link img:hover {
    opacity: 0.7;
}

/* --- Justified item hover (separate chain, own container) --- */
#justified-grid .justified-item img {
    transition: opacity 0.3s ease;
}
#justified-grid .justified-item:hover img {
    opacity: 0.7;
}

/* ==========================================================================
    STATIC PAGE OVERRIDES (Symmetry Enforcement)
    ========================================================================= */

.static-transmission #scroll-stage {
    display: block !important;
    text-align: center !important;
}

.static-transmission #footer,
.static-transmission #system-footer,
.archive-page #footer,
.archive-page #system-footer {
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
    position: relative; 
    z-index: 100;
}

.static-transmission #footer { background: var(--bg-secondary) !important; }
.static-transmission #system-footer { background: var(--bg-chrome) !important; border-top: 1px solid var(--border-accent) !important; }

/* THE LANE: Centered 850px container with 20px padding for symmetry */
.static-content {
    max-width: var(--static-content-width, 850px) !important;
    margin: 40px auto 0 auto !important;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    background: var(--bg-page);
    text-align: left;
    overflow-x: hidden;
}

.static-content::after { 
    content: ""; 
    display: table; 
    clear: both; 
}

/* THE TITLE: 24px Optical Snap to align with framed content below */
.static-page-title {
    width: 100% !important;
    max-width: 850px !important;
    margin: 0 0 40px 0 !important;
    padding-left: 24px !important; /* 20px baseline + 4px frame compensation */
    padding-right: 20px !important;
    text-align: left !important;
    display: block !important;
    box-sizing: border-box !important;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-bright);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 2rem;
    font-weight: 700;
}

/* THE BIO IMAGE: 17px Top (Baseline Snap) and 10px Left (Lane Shift) */
.static-transmission .description .align-left {
    float: left !important;
    margin: 17px 50px 25px 10px !important;
    border: 3px solid var(--border-accent) !important;
    box-shadow: none !important;
    max-width: 40% !important;
    height: auto !important;
    display: block !important;
}

/* Reset Hero Header vertical air */
.static-transmission #photobox.page-hero {
    display: block !important; 
    min-height: auto !important;
    padding: 0 !important; 
    width: auto !important;
    float: left !important; 
    background: transparent !important;
    margin: 0 !important;
}

/* Kill paragraph top interference to ensure baseline snap */
.static-transmission .description p:first-of-type {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Kill the manager's ghost break */
.static-transmission .description img + br {
    display: none !important;
}

/* ==========================================================================
    DASHBOARD & INLINE ASSETS (PARSED SHORTCODES)
    ========================================================================= */

.inline-asset, .snapsmack-asset, .snap-inline-frame {
    display: block;
    height: auto;
    box-sizing: border-box;
    border: 5px solid var(--border-accent) !important;
    box-shadow: none !important;
    /* PADDING UNDER: 60px space before the next paragraph */
    margin-top: 20px;
    margin-bottom: 60px !important;
}

/* ENFORCING THE LANE: 850px container minus the 42px of total frame depth */
.asset-full   { width: calc(100% - 42px) !important; margin-left: auto; margin-right: auto; }
.asset-medium { width: 50%; min-width: 300px; }
.asset-small  { width: 25%; min-width: 150px; }

/* Default Public Alignment Fallbacks */
.align-left { 
    float: left !important; 
    margin: 17px 50px 25px 10px !important; 
}

.align-right { 
    float: right !important; 
    margin: 5px 10px 25px 50px !important; 
}

.align-center { 
    float: none !important; 
    margin-left: auto !important; 
    margin-right: auto !important; 
}

/* ENFORCED: Clearfix for all description blocks */
.description::after { content: ""; display: table; clear: both; }

/* ─── DROPCAP ─────────────────────────────────────────────── */
/* Base rule — actual styling (float, size, colour) is driven  */
/* by the manifest dropcap_style option via custom-framing.    */
span.dropcap {
    display: inline;
}

/* ==========================================================================
    FORM & DASHBOARD UI (FULL RESTORATION)
    ========================================================================= */

#smack-form input[type="text"], 
#smack-form select, 
#smack-form-edit input[type="text"], 
#smack-form-edit select,
.input-control-row {
    height: 42px; 
    box-sizing: border-box;
}

.input-control-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-page);
    border: 1px solid var(--border-primary);
    padding: 0 10px;
}

.input-control-row input[type="text"] {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    flex: 1;
}

.built-in-label {
    font-size: 0.7rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    margin: 0;
    padding-left: 10px;
    border-left: 1px solid var(--border-dim);
    color: var(--border-accent);
    height: 100%;
    cursor: pointer;
}

.built-in-label input[type="checkbox"] {
    margin-right: 6px;
}

/* Dropdown styling */
.custom-multiselect {
    position: relative;
    width: 100%;
}

.select-box {
    background: var(--bg-page);
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
}

.dropdown-search-wrapper {
    padding: 5px;
    border-bottom: 1px solid var(--border-dim);
}

.dropdown-search-wrapper input {
    width: 100%;
    background: var(--bg-page);
    border: 1px solid var(--border-primary);
    color: var(--text-bright);
    padding: 5px;
}

.multi-cat-item {
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.multi-cat-item:hover {
    background: var(--bg-tertiary);
    color: var(--text-bright);
}

.multi-cat-item input {
    margin-right: 10px;
}

/* ==========================================================================
    ARCHIVE CONTROLS
    ========================================================================= */

#infobox .center {
    display: flex;
    gap: 40px; 
    align-items: center;
    justify-content: center;
}

#infobox .filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

#infobox .filter-group form {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

#infobox label.dim {
    margin-right: 8px;
    font-size: 0.7rem;
}

#infobox select {
    background: var(--bg-page);
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
    padding: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    cursor: pointer;
}

#infobox select:focus {
    outline: none;
    border-color: var(--border-accent);
}

#infobox a.active {
    color: var(--text-bright);
    font-size: 0.75rem;
}

#infobox a.inactive {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.empty-sector-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px;
    color: var(--text-faint);
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

/* ==========================================================================
    NOTICE & ERROR STATES
    ========================================================================= */

.hud-msg {
    position: fixed;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    color: #39FF14;
    border: 1px solid #39FF14;
    padding: 20px 40px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10000;
    transition: top 0.6s cubic-bezier(.2,.9,.2,1);
}

.hud-msg.show {
    top: 40px;
}

.sql-error-notice {
    background: #200;
    color: #f99;
    padding: 20px;
    font-family: monospace;
    border: 1px solid red;
}

.empty-gallery-msg, .not-found-msg {
    color: var(--text-link);
    text-align: center;
    padding: 100px 50px;
}

/* ==========================================================================
    REVISED FOOTER SPACING & LINKS
   ========================================================================= */

#system-footer .sep {
    display: inline-block;
    margin: 0 12px;
    color: var(--border-accent);
}

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-bright);
}

.rss-tag {
    font-weight: normal;
    letter-spacing: 1px;
}

.reverse-email {
    unicode-bidi: bidi-override;
    direction: rtl;
}

/* ==========================================================================
    BLOGROLL (PUBLIC NETWORK LISTING)
    Controlled by manifest BLOGROLL section options.
    .blogroll-canvas is independent of .static-content so width is 
    separately tunable via the manifest max-width slider.
    ========================================================================== */

/* Outer canvas — width controlled by manifest blogroll_max_width */
.blogroll-canvas {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: left;
}

/* Category block — wraps heading + grid for each category */
.blogroll-category-block {
    margin-bottom: 60px;
}

/* Category heading */
.blogroll-category-heading {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--border-accent);
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-dim);
}

/* Grid — columns controlled by manifest blogroll_columns select,
   gap controlled by manifest blogroll_col_gap slider */
.blogroll-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

/* Individual peer entry */
.blogroll-peer {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--bg-secondary);
}

.blogroll-peer:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Peer name / link */
.blogroll-peer-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.blogroll-peer-name a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blogroll-peer-name a:hover {
    color: var(--text-bright);
}

/* Editorial description — display toggled by manifest blogroll_show_desc */
.blogroll-peer-desc {
    display: block;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin: 4px 0 8px 0;
    padding: 0;
}

/* URL — display toggled by manifest blogroll_show_url */
.blogroll-peer-url {
    display: block;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: var(--text-faint);
}

/* ==========================================================================
   INLINE STYLE REMOVALS - CSS CLASSES
   ========================================================================= */

/* Pane default state — JS toggles visibility */
.footer-pane { display: none; }

/* Signals section */
.signals-header { margin-bottom: 40px; text-align: center; }
.signals-table { width: 100%; margin-bottom: 40px; }
.signal-date { font-size: 0.7rem; color: var(--text-faint); margin-top: 5px; }
.signals-empty { text-align: center; }


/* ==========================================================================
   NAV DROPDOWN
   Requires ss-engine-nav-dropdown.js (loaded by core/footer.php when
   nav_menu_json is configured). Classes emitted by core/header.php renderer.
   ========================================================================= */

.nav-has-children { position: relative; }

.nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    z-index: 500;
    background: var(--nav-dropdown-bg, #111111);
    border: 1px solid rgba(128,128,128,0.2);
    border-radius: 3px;
}

.nav-has-children:hover > .nav-submenu,
.nav-has-children.open > .nav-submenu {
    display: block;
}

.nav-submenu li { display: block; }

.nav-submenu a,
.nav-submenu span {
    display: block;
    padding: 7px 18px;
    white-space: nowrap;
    color: var(--nav-dropdown-text, #cccccc);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: opacity 0.15s;
    opacity: 0.75;
}

.nav-submenu a:hover { opacity: 1; }

/* ===== SNAPSMACK EOF ===== */
