/* =========================================================
   HEALEEX NET · COMMUNITY JOURNAL
   v0.2.0
   ========================================================= */

:root {
    --hxn-paper: #f4f1ea;
    --hxn-paper-deep: #ece8df;
    --hxn-surface: #ffffff;
    --hxn-surface-soft: #faf8f3;
    --hxn-ink: #132b32;
    --hxn-body: #586a6f;
    --hxn-muted: #8a9699;
    --hxn-teal: #0bafa4;
    --hxn-deep-teal: #0d5b63;
    --hxn-coral: #ef765a;
    --hxn-yellow: #e8b44c;
    --hxn-border: #d9d5cc;
    --hxn-border-soft: #e8e3da;
    --hxn-shadow: 0 14px 38px rgba(19, 43, 50, 0.07);
    --hxn-radius: 18px;
    --hxn-container: 1320px;
}

* { box-sizing: border-box; }
html { background: var(--hxn-paper); }
body.hxn-theme {
    min-height: 100vh;
    margin: 0;
    color: var(--hxn-ink);
    background:
        linear-gradient(rgba(19,43,50,.018) 1px, transparent 1px),
        var(--hxn-paper);
    background-size: 100% 36px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.hxn-theme a { color: inherit; }
body.hxn-theme img { max-width: 100%; height: auto; }
body.hxn-theme button,
body.hxn-theme input { font: inherit; }

.screen-reader-text {
    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;
}

.hxn-skip-link:focus {
    top: 10px;
    left: 10px;
    width: auto !important;
    height: auto !important;
    clip: auto !important;
    padding: 10px 14px !important;
    margin: 0 !important;
    z-index: 99999;
    background: #fff;
    border: 2px solid var(--hxn-teal);
}

.hxn-container {
    width: min(calc(100% - 40px), var(--hxn-container));
    margin-inline: auto;
}

/* HEADER */
.hxn-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(244,241,234,.94);
    border-bottom: 1px solid var(--hxn-border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hxn-header__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.hxn-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: var(--hxn-ink) !important;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -.045em;
}

.hxn-brand__logo { max-width: 155px; max-height: 38px; object-fit: contain; }
.hxn-brand__word { font-size: 1.15rem; }
.hxn-brand__divider { color: var(--hxn-border); font-weight: 500; }
.hxn-brand__net {
    color: var(--hxn-teal);
    font-size: .72rem;
    letter-spacing: .14em;
}

.hxn-header__nav-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
}

.hxn-nav__list {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hxn-nav__list a {
    color: var(--hxn-body) !important;
    text-decoration: none;
    font-size: .79rem;
    font-weight: 720;
    transition: color 150ms ease;
}
.hxn-nav__list a:hover,
.hxn-nav__list .current-menu-item > a { color: var(--hxn-deep-teal) !important; }

.hxn-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hxn-icon-button,
.hxn-account-trigger {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--hxn-ink);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    transition: background 150ms ease, border-color 150ms ease;
}
.hxn-icon-button:hover,
.hxn-account-trigger:hover { background: #fff; border-color: var(--hxn-border); }
.hxn-icon-button svg { width: 19px; height: 19px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }

.hxn-notification-link { color: var(--hxn-body) !important; }

.hxn-new-topic,
.hxn-login-link {
    min-height: 40px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 15px !important;
    color: #fff !important;
    background: var(--hxn-ink);
    border: 1px solid var(--hxn-ink);
    border-radius: 999px;
    text-decoration: none !important;
    font-size: .74rem;
    font-weight: 800;
    transition: transform 150ms ease, background 150ms ease;
}
.hxn-new-topic:hover,
.hxn-login-link:hover { transform: translateY(-1px); background: var(--hxn-deep-teal); border-color: var(--hxn-deep-teal); }
.hxn-new-topic svg { width: 16px; height: 16px; fill:none; stroke:currentColor; stroke-width:1.8; }

.hxn-nav-toggle { display:none; }

/* Account dropdown */
.hxn-account-menu { position: relative; }
.hxn-account-trigger__avatar,
.hxn-account-trigger__avatar img { display:block; width:34px; height:34px; border-radius:50%; }
.hxn-account-trigger__avatar img { object-fit:cover; }
.hxn-account-menu__dropdown {
    position:absolute;
    top:calc(100% + 10px);
    right:0;
    width:230px;
    padding:8px;
    background:#fff;
    border:1px solid var(--hxn-border);
    border-radius:16px;
    box-shadow:var(--hxn-shadow);
    opacity:0;
    visibility:hidden;
    transform:translateY(-5px);
    pointer-events:none;
    transition:opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}
.hxn-account-menu:hover .hxn-account-menu__dropdown,
.hxn-account-menu:focus-within .hxn-account-menu__dropdown,
.hxn-account-menu.is-open .hxn-account-menu__dropdown {
    opacity:1;
    visibility:visible;
    transform:none;
    pointer-events:auto;
}
.hxn-account-menu__identity { padding:10px 10px 12px; display:grid; gap:6px; border-bottom:1px solid var(--hxn-border-soft); }
.hxn-account-menu__identity strong { font-size:.82rem; }
.hxn-role-badge {
    width:max-content;
    display:inline-flex;
    align-items:center;
    min-height:23px;
    padding:0 8px;
    border-radius:999px;
    font-size:.61rem;
    font-weight:800;
    background:var(--hxn-paper-deep);
    color:var(--hxn-body);
}
.hxn-role-badge.is-professional { background:rgba(11,175,164,.11); color:var(--hxn-deep-teal); }
.hxn-role-badge.is-partner { background:rgba(232,180,76,.18); color:#7a5610; }
.hxn-role-badge.is-team { background:rgba(239,118,90,.13); color:#9c3c28; }
.hxn-account-menu__dropdown > a {
    min-height:38px;
    display:flex !important;
    align-items:center;
    padding:0 10px !important;
    border-radius:9px;
    color:var(--hxn-body) !important;
    text-decoration:none !important;
    font-size:.75rem !important;
    font-weight:680 !important;
}
.hxn-account-menu__dropdown > a:hover { background:var(--hxn-surface-soft); color:var(--hxn-ink) !important; }
.hxn-account-menu__divider { height:1px; margin:6px 4px; background:var(--hxn-border-soft); }
.hxn-account-menu__logout { color:#a94734 !important; }

/* Search drawer */
.hxn-search-drawer { background:#fff; border-top:1px solid var(--hxn-border-soft); }
.hxn-search-drawer__inner { padding-block:14px; }
.hxn-global-search {
    display:grid;
    grid-template-columns:22px 1fr auto;
    align-items:center;
    gap:12px;
}
.hxn-global-search svg { width:20px; height:20px; fill:none; stroke:var(--hxn-muted); stroke-width:1.7; }
.hxn-global-search input { min-width:0; height:44px; padding:0 4px; border:0; outline:0; background:transparent; color:var(--hxn-ink); font-size:1rem; }
.hxn-global-search button { min-height:36px; padding:0 14px; border:1px solid var(--hxn-border); border-radius:999px; background:var(--hxn-paper); color:var(--hxn-ink); font-weight:750; cursor:pointer; }

/* INTRO */
.hxn-intro {
    padding: clamp(54px, 7vw, 92px) 0 42px;
    border-bottom: 1px solid var(--hxn-border);
}
.hxn-intro__grid {
    display:grid;
    grid-template-columns:minmax(0,1.25fr) minmax(300px,.55fr);
    gap:clamp(48px,8vw,120px);
    align-items:end;
}
.hxn-kicker,
.hxn-section-label {
    color:var(--hxn-teal);
    font-size:.68rem;
    font-weight:850;
    letter-spacing:.16em;
    text-transform:uppercase;
}
.hxn-intro h1 {
    max-width: 860px;
    margin:10px 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size:clamp(3rem,7vw,6.4rem);
    font-weight:500;
    line-height:.92;
    letter-spacing:-.055em;
}
.hxn-intro__copy > p {
    max-width:750px;
    margin:0 0 28px;
    color:var(--hxn-body);
    font-size:clamp(1rem,1.4vw,1.18rem);
    line-height:1.7;
}
.hxn-hero-search {
    max-width:760px;
    display:grid;
    grid-template-columns:22px 1fr auto;
    align-items:center;
    gap:12px;
    padding:8px 8px 8px 18px;
    background:#fff;
    border:1px solid var(--hxn-border);
    border-radius:999px;
    box-shadow:0 9px 25px rgba(19,43,50,.045);
}
.hxn-hero-search svg { width:19px; height:19px; fill:none; stroke:var(--hxn-muted); stroke-width:1.7; }
.hxn-hero-search input { min-width:0; height:43px; border:0; outline:0; color:var(--hxn-ink); background:transparent; }
.hxn-hero-search button {
    min-height:42px;
    padding:0 20px;
    color:#fff;
    background:var(--hxn-deep-teal);
    border:0;
    border-radius:999px;
    font-size:.75rem;
    font-weight:800;
    cursor:pointer;
}
.hxn-intro__signals { display:flex; flex-wrap:wrap; gap:18px; margin-top:22px; color:var(--hxn-muted); font-size:.72rem; font-weight:650; }
.hxn-intro__signals span { display:inline-flex; align-items:center; gap:7px; }
.hxn-intro__signals i { width:7px; height:7px; border-radius:50%; background:var(--hxn-teal); }
.hxn-intro__signals svg { width:15px; height:15px; fill:none; stroke:currentColor; stroke-width:1.7; }

.hxn-intro__note { padding:28px 0 4px 28px; border-left:3px solid var(--hxn-coral); }
.hxn-intro__note-label { color:var(--hxn-coral); font-size:.66rem; font-weight:850; letter-spacing:.13em; text-transform:uppercase; }
.hxn-intro__note blockquote { margin:12px 0 20px; font-family:Georgia,"Times New Roman",serif; font-size:1.45rem; line-height:1.28; color:var(--hxn-ink); }
.hxn-intro__note a { display:inline-flex; align-items:center; gap:6px; color:var(--hxn-deep-teal) !important; text-decoration:none; font-size:.76rem; font-weight:780; }
.hxn-intro__note svg { width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:1.8; }

/* COMMUNITY GRID */
.hxn-community { padding:44px 0 80px; }
.hxn-community__grid {
    display:grid;
    grid-template-columns:210px minmax(0,1fr) 270px;
    gap:38px;
    align-items:start;
}
.hxn-left-rail,
.hxn-right-rail { display:grid; gap:34px; }
.hxn-left-rail { position:sticky; top:100px; }
.hxn-right-rail { position:sticky; top:100px; }

.hxn-rail-section,
.hxn-trending,
.hxn-elsewhere { border-top:2px solid var(--hxn-ink); padding-top:12px; }
.hxn-rail-heading { min-height:28px; display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:8px; }
.hxn-rail-heading > span { font-size:.68rem; font-weight:850; letter-spacing:.12em; text-transform:uppercase; }
.hxn-rail-heading > a { color:var(--hxn-muted) !important; text-decoration:none; font-size:.65rem; font-weight:700; }

.hxn-category-list { display:grid; }
.hxn-category-list a {
    display:grid;
    grid-template-columns:9px 1fr auto;
    align-items:center;
    gap:9px;
    min-height:42px;
    color:var(--hxn-body) !important;
    border-bottom:1px solid var(--hxn-border-soft);
    text-decoration:none;
}
.hxn-category-list__mark { width:7px; height:7px; border-radius:50%; background:var(--hxn-teal); }
.hxn-category-list strong { font-size:.73rem; font-weight:690; }
.hxn-category-list small { color:var(--hxn-muted); font-size:.65rem; }
.hxn-category-list a:hover strong { color:var(--hxn-deep-teal); }

.hxn-region-list { display:grid; }
.hxn-region-list a { min-height:39px; display:grid; grid-template-columns:24px 1fr 15px; align-items:center; gap:7px; color:var(--hxn-body) !important; text-decoration:none; border-bottom:1px solid var(--hxn-border-soft); }
.hxn-region-list strong { font-size:.72rem; font-weight:680; }
.hxn-region-list svg { width:14px; height:14px; fill:none; stroke:var(--hxn-muted); stroke-width:1.8; }

/* FEED */
.hxn-feed { min-width:0; }
.hxn-feed__header { display:flex; align-items:end; justify-content:space-between; gap:18px; padding-bottom:16px; border-bottom:2px solid var(--hxn-ink); }
.hxn-feed__header h2 { margin:5px 0 0; font-family:Georgia,"Times New Roman",serif; font-size:2rem; font-weight:500; letter-spacing:-.035em; }
.hxn-feed__new { display:inline-flex; align-items:center; gap:6px; color:var(--hxn-deep-teal) !important; text-decoration:none; font-size:.72rem; font-weight:780; }
.hxn-feed__new svg { width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:1.8; }

.hxn-feed-tabs { display:flex; gap:22px; min-height:49px; align-items:center; border-bottom:1px solid var(--hxn-border); }
.hxn-feed-tabs a { position:relative; color:var(--hxn-muted) !important; text-decoration:none; font-size:.72rem; font-weight:730; }
.hxn-feed-tabs a.is-active { color:var(--hxn-ink) !important; }
.hxn-feed-tabs a.is-active::after { content:""; position:absolute; left:0; right:0; bottom:-17px; height:2px; background:var(--hxn-teal); }

.hxn-conversations { display:grid; }
.hxn-conversation { padding:26px 0; border-bottom:1px solid var(--hxn-border); }
.hxn-conversation__topline { display:flex; flex-wrap:wrap; align-items:center; gap:8px; margin-bottom:9px; color:var(--hxn-muted); font-size:.64rem; font-weight:690; }
.hxn-conversation__topline time { margin-left:auto; }
.hxn-topic-type { min-height:22px; display:inline-flex; align-items:center; padding:0 8px; color:#93442f; background:rgba(239,118,90,.12); border-radius:999px; font-size:.58rem; font-weight:830; letter-spacing:.05em; text-transform:uppercase; }
.hxn-conversation h3 { max-width:780px; margin:0; font-family:Georgia,"Times New Roman",serif; font-size:clamp(1.4rem,2.4vw,2rem); font-weight:500; line-height:1.13; letter-spacing:-.03em; }
.hxn-conversation h3 a { color:var(--hxn-ink) !important; text-decoration:none; }
.hxn-conversation h3 a:hover { color:var(--hxn-deep-teal) !important; }
.hxn-conversation__excerpt { max-width:780px; margin:10px 0 0; color:var(--hxn-body); font-size:.87rem; line-height:1.65; }
.hxn-conversation__footer { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-top:18px; }
.hxn-conversation__author { min-width:0; display:flex; align-items:center; gap:10px; }
.hxn-conversation__author img { width:34px; height:34px; border-radius:50%; object-fit:cover; }
.hxn-conversation__author span { display:grid; min-width:0; }
.hxn-conversation__author strong { font-size:.7rem; font-weight:760; }
.hxn-conversation__author small { color:var(--hxn-muted); font-size:.61rem; }
.hxn-conversation__stats { display:flex; gap:13px; color:var(--hxn-muted); font-size:.66rem; font-weight:700; }
.hxn-conversation__stats span { display:inline-flex; align-items:center; gap:5px; }
.hxn-conversation__stats svg { width:15px; height:15px; fill:none; stroke:currentColor; stroke-width:1.65; }

.hxn-empty-state { padding:70px 20px; text-align:center; }
.hxn-empty-state__icon { width:54px; height:54px; margin:0 auto 18px; display:grid; place-items:center; color:var(--hxn-teal); background:rgba(11,175,164,.09); border-radius:50%; }
.hxn-empty-state__icon svg { width:25px; height:25px; fill:none; stroke:currentColor; stroke-width:1.6; }
.hxn-empty-state h3 { margin:7px 0 10px; font-family:Georgia,"Times New Roman",serif; font-size:2rem; font-weight:500; }
.hxn-empty-state p { max-width:520px; margin:0 auto 20px; color:var(--hxn-body); line-height:1.7; }
.hxn-empty-state a { display:inline-flex; align-items:center; gap:7px; color:var(--hxn-deep-teal) !important; font-weight:800; text-decoration:none; }
.hxn-empty-state svg { width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:1.8; }

/* RIGHT RAIL */
.hxn-profile-card {
    padding:18px;
    background:#fff;
    border:1px solid var(--hxn-border);
    border-radius:16px;
    box-shadow:0 8px 24px rgba(19,43,50,.045);
}
.hxn-profile-card__top { display:flex; align-items:center; gap:11px; }
.hxn-profile-card__top img { width:52px; height:52px; border-radius:50%; object-fit:cover; }
.hxn-profile-card__top div { display:grid; }
.hxn-profile-card__top span { color:var(--hxn-muted); font-size:.62rem; text-transform:uppercase; letter-spacing:.09em; font-weight:780; }
.hxn-profile-card__top strong { margin-top:3px; font-size:.85rem; }
.hxn-profile-card .hxn-role-badge { margin-top:13px; }
.hxn-profile-card > a { margin-top:14px; padding-top:12px; display:flex; align-items:center; justify-content:space-between; color:var(--hxn-deep-teal) !important; border-top:1px solid var(--hxn-border-soft); text-decoration:none; font-size:.68rem; font-weight:780; }
.hxn-profile-card > a svg { width:15px; height:15px; fill:none; stroke:currentColor; stroke-width:1.8; }

.hxn-trending__list { display:grid; }
.hxn-trending__list a { min-height:42px; display:grid; grid-template-columns:22px 1fr auto; align-items:center; gap:8px; border-bottom:1px solid var(--hxn-border-soft); text-decoration:none; color:var(--hxn-body) !important; }
.hxn-trending__list a > span { color:var(--hxn-coral); }
.hxn-trending__list svg { width:15px; height:15px; fill:none; stroke:currentColor; stroke-width:1.7; }
.hxn-trending__list strong { font-size:.71rem; font-weight:690; }
.hxn-trending__list small { color:var(--hxn-muted); font-size:.62rem; }

.hxn-elsewhere { display:grid; }
.hxn-elsewhere > a { min-height:62px; display:grid; grid-template-columns:46px 1fr 15px; align-items:center; gap:10px; border-bottom:1px solid var(--hxn-border-soft); text-decoration:none; color:var(--hxn-body) !important; }
.hxn-elsewhere__tag { width:42px; height:28px; display:grid; place-items:center; border-radius:6px; color:#fff; font-size:.52rem; font-weight:900; letter-spacing:.05em; }
.hxn-elsewhere__tag.is-coral { background:var(--hxn-coral); }
.hxn-elsewhere__tag.is-teal { background:var(--hxn-deep-teal); }
.hxn-elsewhere__tag.is-yellow { background:var(--hxn-yellow); color:#5a4009; }
.hxn-elsewhere > a div { display:grid; }
.hxn-elsewhere > a strong { font-size:.71rem; }
.hxn-elsewhere > a small { margin-top:2px; color:var(--hxn-muted); font-size:.61rem; }
.hxn-elsewhere > a > svg { width:14px; height:14px; fill:none; stroke:var(--hxn-muted); stroke-width:1.7; }

.hxn-guidelines { padding:20px; background:var(--hxn-ink); color:#fff; border-radius:16px; }
.hxn-guidelines > span { width:34px; height:34px; display:grid; place-items:center; color:#fff; background:var(--hxn-coral); border-radius:50%; }
.hxn-guidelines > span svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.7; }
.hxn-guidelines h3 { margin:14px 0 8px; font-family:Georgia,"Times New Roman",serif; font-size:1.15rem; font-weight:500; }
.hxn-guidelines p { margin:0; color:rgba(255,255,255,.68); font-size:.73rem; line-height:1.6; }
.hxn-guidelines a { margin-top:15px; display:flex; align-items:center; justify-content:space-between; color:#fff !important; text-decoration:none; font-size:.67rem; font-weight:760; }
.hxn-guidelines a svg { width:15px; height:15px; fill:none; stroke:currentColor; stroke-width:1.8; }

/* CLOSING */
.hxn-closing { padding:76px 0; background:#fff; border-top:1px solid var(--hxn-border); }
.hxn-closing__inner { max-width:920px; }
.hxn-closing h2 { max-width:800px; margin:8px 0 14px; font-family:Georgia,"Times New Roman",serif; font-size:clamp(2.6rem,5vw,4.7rem); font-weight:500; line-height:.98; letter-spacing:-.05em; }
.hxn-closing p { max-width:650px; margin:0; color:var(--hxn-body); line-height:1.7; }
.hxn-closing__actions { display:flex; flex-wrap:wrap; gap:13px; margin-top:28px; }
.hxn-button { min-height:44px; display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:0 18px; border-radius:999px; text-decoration:none !important; font-size:.74rem; font-weight:800; }
.hxn-button svg { width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:1.8; }
.hxn-button--ink { color:#fff !important; background:var(--hxn-ink); }
.hxn-button--text { color:var(--hxn-deep-teal) !important; background:transparent; border:1px solid var(--hxn-border); }

/* FOOTER */
.hxn-footer { padding:54px 0 24px; background:var(--hxn-paper-deep); border-top:1px solid var(--hxn-border); }
.hxn-footer__top { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:60px; }
.hxn-brand--footer { margin-bottom:13px; }
.hxn-footer__brand p { max-width:470px; margin:0; color:var(--hxn-body); font-size:.78rem; line-height:1.65; }
.hxn-footer__columns { display:grid; grid-template-columns:repeat(2,150px); gap:42px; }
.hxn-footer__columns > div { display:grid; align-content:start; gap:8px; }
.hxn-footer__columns strong { margin-bottom:4px; font-size:.7rem; text-transform:uppercase; letter-spacing:.09em; }
.hxn-footer__columns a { color:var(--hxn-body) !important; text-decoration:none; font-size:.72rem; }
.hxn-footer__bottom { display:flex; justify-content:space-between; gap:30px; margin-top:44px; padding-top:18px; border-top:1px solid var(--hxn-border); color:var(--hxn-muted); font-size:.62rem; }

/* GENERIC CONTENT */
.hxn-content-shell { padding:clamp(50px,7vw,90px) 0; }
.hxn-content-shell--narrow { max-width:900px; }
.hxn-page-heading { max-width:900px; margin-bottom:38px; }
.hxn-page-heading h1 { margin:8px 0 0; font-family:Georgia,"Times New Roman",serif; font-size:clamp(2.6rem,6vw,5rem); font-weight:500; line-height:.98; letter-spacing:-.05em; }
.hxn-page-heading__meta { color:var(--hxn-muted); }
.hxn-entry-content { max-width:780px; color:var(--hxn-body); font-size:1rem; line-height:1.8; }
.hxn-entry-content h2,.hxn-entry-content h3 { color:var(--hxn-ink); font-family:Georgia,"Times New Roman",serif; font-weight:500; }
.hxn-entry-content a { color:var(--hxn-deep-teal) !important; }
.hxn-post-list,.hxn-search-results { display:grid; border-top:2px solid var(--hxn-ink); }
.hxn-post-row,.hxn-search-result { padding:24px 0; border-bottom:1px solid var(--hxn-border); }
.hxn-post-row > span,.hxn-search-result > span { color:var(--hxn-coral); font-size:.62rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.hxn-post-row h2,.hxn-search-result h2 { margin:6px 0 8px; font-family:Georgia,"Times New Roman",serif; font-size:1.65rem; font-weight:500; }
.hxn-post-row h2 a,.hxn-search-result h2 a { text-decoration:none; }
.hxn-post-row p,.hxn-search-result p { max-width:700px; margin:0; color:var(--hxn-body); line-height:1.65; }
.hxn-404 { min-height:66vh; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; }
.hxn-404 h1 { max-width:800px; margin:8px 0 14px; font-family:Georgia,"Times New Roman",serif; font-size:clamp(3rem,7vw,6rem); font-weight:500; line-height:.95; letter-spacing:-.055em; }
.hxn-404 p { color:var(--hxn-body); }

/* BBPRESS */
.hxn-bbpress-shell { color:var(--hxn-ink); }
#bbpress-forums { font-size:.86rem; }
#bbpress-forums ul,
#bbpress-forums li { list-style:none; }
#bbpress-forums .bbp-forums,
#bbpress-forums .bbp-topics,
#bbpress-forums .bbp-replies { margin:0; padding:0; background:transparent; border:0; }
#bbpress-forums li.bbp-header,
#bbpress-forums li.bbp-footer { padding:12px 14px; background:var(--hxn-paper-deep); border:1px solid var(--hxn-border); color:var(--hxn-muted); font-size:.65rem; font-weight:800; text-transform:uppercase; letter-spacing:.06em; }
#bbpress-forums li.bbp-body ul.forum,
#bbpress-forums li.bbp-body ul.topic { padding:18px 14px; background:#fff; border:1px solid var(--hxn-border); border-top:0; }
#bbpress-forums .bbp-forum-title,
#bbpress-forums .bbp-topic-permalink { color:var(--hxn-ink) !important; text-decoration:none; font-family:Georgia,"Times New Roman",serif; font-size:1.15rem; }
#bbpress-forums .bbp-topic-meta,
#bbpress-forums .bbp-forum-content { color:var(--hxn-muted); font-size:.7rem; }
#bbpress-forums .bbp-reply-header { margin-top:16px; padding:9px 13px; background:var(--hxn-paper-deep); border:1px solid var(--hxn-border); color:var(--hxn-muted); }
#bbpress-forums .bbp-reply-author,
#bbpress-forums .bbp-reply-content { background:#fff; border-color:var(--hxn-border); }
#bbpress-forums fieldset.bbp-form { padding:22px; background:#fff; border:1px solid var(--hxn-border); border-radius:16px; }
#bbpress-forums fieldset.bbp-form legend { padding:0 7px; font-family:Georgia,"Times New Roman",serif; font-size:1.15rem; }
#bbpress-forums input[type="text"],
#bbpress-forums input[type="password"],
#bbpress-forums select,
#bbpress-forums textarea { width:100%; max-width:100%; padding:11px 12px; color:var(--hxn-ink); background:#fff; border:1px solid var(--hxn-border); border-radius:10px; }
#bbpress-forums button,
#bbpress-forums input[type="submit"] { min-height:40px; padding:0 16px; color:#fff; background:var(--hxn-ink); border:0; border-radius:999px; font-weight:800; cursor:pointer; }

/* RESPONSIVE */
@media (max-width: 1120px) {
    .hxn-community__grid { grid-template-columns:190px minmax(0,1fr); }
    .hxn-right-rail { position:static; grid-column:1 / -1; grid-template-columns:repeat(3,minmax(0,1fr)); }
    .hxn-guidelines { min-height:100%; }
    .hxn-nav__list { gap:18px; }
}

@media (max-width: 860px) {
    .hxn-header__inner { min-height:64px; }
    .hxn-nav-toggle {
        margin-left:auto;
        min-height:38px;
        display:inline-flex;
        align-items:center;
        gap:9px;
        padding:0 12px;
        background:transparent;
        border:1px solid var(--hxn-border);
        border-radius:999px;
        color:var(--hxn-ink);
        font-size:.7rem;
        font-weight:780;
    }
    .hxn-nav-toggle i { position:relative; width:14px; height:1px; background:currentColor; }
    .hxn-nav-toggle i::before { content:""; position:absolute; left:0; top:-5px; width:14px; height:1px; background:currentColor; }
    .hxn-header__nav-wrap {
        position:absolute;
        top:100%;
        left:0;
        right:0;
        display:none;
        padding:18px 20px 20px;
        background:#fff;
        border-bottom:1px solid var(--hxn-border);
        box-shadow:var(--hxn-shadow);
    }
    .hxn-header__nav-wrap.is-open { display:grid; gap:18px; }
    .hxn-nav__list { align-items:stretch; flex-direction:column; gap:0; }
    .hxn-nav__list li { border-bottom:1px solid var(--hxn-border-soft); }
    .hxn-nav__list a { display:flex; min-height:42px; align-items:center; }
    .hxn-header__actions { flex-wrap:wrap; }

    .hxn-intro__grid { grid-template-columns:1fr; }
    .hxn-intro__note { max-width:650px; }
    .hxn-community__grid { grid-template-columns:1fr; }
    .hxn-left-rail { position:static; grid-template-columns:repeat(2,minmax(0,1fr)); }
    .hxn-feed { grid-row:1; }
    .hxn-left-rail { grid-row:2; }
    .hxn-right-rail { grid-row:3; grid-template-columns:repeat(2,minmax(0,1fr)); }
    .hxn-guidelines { grid-column:1 / -1; }

    .hxn-footer__top { grid-template-columns:1fr; }
}

@media (max-width: 620px) {
    .hxn-container { width:min(calc(100% - 24px), var(--hxn-container)); }
    .hxn-intro { padding-top:42px; }
    .hxn-intro h1 { font-size:clamp(2.7rem,15vw,4.2rem); }
    .hxn-hero-search { grid-template-columns:20px 1fr; border-radius:18px; }
    .hxn-hero-search button { grid-column:1 / -1; width:100%; }
    .hxn-intro__signals { display:grid; gap:9px; }
    .hxn-intro__note { padding-left:18px; }
    .hxn-left-rail,
    .hxn-right-rail { grid-template-columns:1fr; }
    .hxn-conversation__topline time { width:100%; margin-left:0; }
    .hxn-conversation__footer { align-items:flex-start; flex-direction:column; }
    .hxn-feed-tabs { gap:15px; overflow-x:auto; }
    .hxn-feed-tabs a { white-space:nowrap; }
    .hxn-new-topic span { display:none; }
    .hxn-footer__columns { grid-template-columns:1fr 1fr; gap:24px; }
    .hxn-footer__bottom { flex-direction:column; }
    .hxn-closing h2 { font-size:2.7rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior:auto !important; transition-duration:.01ms !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; }
}


/* =========================================================
   FRONTEND TOPIC COMPOSER
   ========================================================= */

.hxn-compose-page {
    padding: clamp(42px, 7vw, 86px) 0 90px;
}

.hxn-compose-page__heading {
    max-width: 840px;
    margin-bottom: 34px;
}

.hxn-compose-page__heading p {
    max-width: 58ch;
    margin: 12px 0 0;
    color: var(--hxn-body);
    font-size: .92rem;
    line-height: 1.7;
}

.hxn-topic-composer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 22px;
    align-items: start;
}

.hxn-topic-composer__intro {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(260px, .5fr);
    gap: 36px;
    align-items: end;

    padding: 28px 0 22px;
    border-top: 1px solid var(--hxn-border);
    border-bottom: 1px solid var(--hxn-border);
}

.hxn-topic-composer__intro h2 {
    margin: 7px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 3.4vw, 2.65rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.hxn-topic-composer__intro p {
    margin: 0;
    color: var(--hxn-body);
    font-size: .86rem;
    line-height: 1.7;
}

.hxn-topic-composer__form {
    min-width: 0;

    padding: clamp(22px, 4vw, 34px);

    background: #fff;
    border: 1px solid var(--hxn-border);
    border-radius: 18px;

    box-shadow: 0 18px 42px rgba(19, 43, 50, .055);
}

.hxn-topic-composer__tips {
    position: sticky;
    top: 92px;

    padding: 22px;

    background: var(--hxn-paper-deep);
    border: 1px solid var(--hxn-border);
    border-radius: 16px;
}

.hxn-topic-composer__tips > span {
    display: block;
    margin-bottom: 13px;

    color: var(--hxn-deep-teal);
    font-size: .67rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hxn-topic-composer__tips ul {
    display: grid;
    gap: 10px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.hxn-topic-composer__tips li {
    position: relative;
    padding-left: 16px;

    color: var(--hxn-body);
    font-size: .76rem;
    line-height: 1.55;
}

.hxn-topic-composer__tips li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;

    width: 5px;
    height: 5px;

    border-radius: 50%;
    background: var(--hxn-teal);
}

.hxn-topic-composer__tips a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    margin-top: 20px;
    padding-top: 15px;

    color: var(--hxn-ink) !important;
    border-top: 1px solid var(--hxn-border);

    font-size: .72rem;
    font-weight: 780;
    text-decoration: none !important;
}

.hxn-topic-composer__tips a:hover {
    color: var(--hxn-deep-teal) !important;
}

.hxn-topic-composer__tips svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}


/* bbPress topic form inside composer */

.hxn-topic-composer__form #bbpress-forums {
    margin: 0;
}

.hxn-topic-composer__form #bbpress-forums fieldset.bbp-form {
    margin: 0;
    padding: 0;

    background: transparent;
    border: 0;
    border-radius: 0;
}

.hxn-topic-composer__form #bbpress-forums fieldset.bbp-form legend {
    width: 100%;
    margin: 0 0 23px;
    padding: 0 0 17px;

    color: var(--hxn-ink);
    border-bottom: 1px solid var(--hxn-border);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 500;
}

.hxn-topic-composer__form #bbpress-forums p {
    margin: 0 0 19px;
}

.hxn-topic-composer__form #bbpress-forums label {
    display: inline-block;
    margin-bottom: 7px;

    color: var(--hxn-ink);

    font-size: .72rem;
    font-weight: 760;
}

.hxn-topic-composer__form #bbpress-forums input[type="text"],
.hxn-topic-composer__form #bbpress-forums input[type="password"],
.hxn-topic-composer__form #bbpress-forums select,
.hxn-topic-composer__form #bbpress-forums textarea {
    width: 100%;
    max-width: 100%;

    padding: 12px 13px;

    color: var(--hxn-ink);
    background: #fff;

    border: 1px solid var(--hxn-border);
    border-radius: 11px;

    outline: none;

    font: inherit;

    transition:
        border-color 150ms ease,
        box-shadow 150ms ease;
}

.hxn-topic-composer__form #bbpress-forums select {
    min-height: 46px;
}

.hxn-topic-composer__form #bbpress-forums textarea {
    min-height: 220px;
    resize: vertical;
}

.hxn-topic-composer__form #bbpress-forums input:focus,
.hxn-topic-composer__form #bbpress-forums select:focus,
.hxn-topic-composer__form #bbpress-forums textarea:focus {
    border-color: var(--hxn-teal);
    box-shadow: 0 0 0 3px rgba(11, 175, 164, .095);
}

.hxn-topic-composer__form #bbpress-forums button,
.hxn-topic-composer__form #bbpress-forums input[type="submit"] {
    min-height: 44px;
    padding: 0 20px;

    color: #fff;
    background: var(--hxn-ink);

    border: 0;
    border-radius: 999px;

    font-weight: 800;
    cursor: pointer;

    transition:
        transform 150ms ease,
        background 150ms ease;
}

.hxn-topic-composer__form #bbpress-forums button:hover,
.hxn-topic-composer__form #bbpress-forums input[type="submit"]:hover {
    transform: translateY(-1px);
    background: var(--hxn-deep-teal);
}


/* Composer states */

.hxn-compose-state {
    max-width: 760px;
    padding: clamp(28px, 5vw, 46px);

    background: #fff;
    border: 1px solid var(--hxn-border);
    border-radius: 18px;

    box-shadow: 0 18px 42px rgba(19, 43, 50, .05);
}

.hxn-compose-state strong,
.hxn-compose-state h2 {
    display: block;

    margin: 7px 0 10px;

    color: var(--hxn-ink);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 500;
    line-height: 1.15;
}

.hxn-compose-state p {
    max-width: 58ch;
    margin: 0;

    color: var(--hxn-body);
    line-height: 1.65;
}

.hxn-compose-state__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 22px;
}

.hxn-compose-state--warning {
    border-left: 4px solid var(--hxn-yellow);
}

.hxn-compose-state--empty {
    border-left: 4px solid var(--hxn-teal);
}

.hxn-button--paper {
    color: var(--hxn-ink) !important;
    background: var(--hxn-paper-deep) !important;
    border: 1px solid var(--hxn-border) !important;
}


@media (max-width: 900px) {
    .hxn-topic-composer {
        grid-template-columns: 1fr;
    }

    .hxn-topic-composer__intro {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hxn-topic-composer__tips {
        position: static;
    }
}

@media (max-width: 620px) {
    .hxn-compose-page {
        padding-top: 30px;
    }

    .hxn-topic-composer__form,
    .hxn-compose-state {
        padding: 20px;
        border-radius: 14px;
    }

    .hxn-compose-state__actions {
        display: grid;
    }

    .hxn-compose-state__actions .hxn-button {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   BBPRESS — SINGLE FORUM
   Healeex Net Community Journal
   ========================================================= */

.single-forum #bbpress-forums {
    margin: 0;
    color: var(--hxn-ink);

    font-size: 1rem;
    line-height: 1.6;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.single-forum .bbp-breadcrumb {
    margin: 0 0 24px;
}

.single-forum .bbp-breadcrumb p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;

    margin: 0;

    color: var(--hxn-muted);

    font-size: 0.78rem;
    font-weight: 650;
}

.single-forum .bbp-breadcrumb a {
    color: var(--hxn-deep-teal) !important;
    text-decoration: none !important;
}

.single-forum .bbp-breadcrumb a:hover {
    color: var(--hxn-teal) !important;
}


/* =========================================================
   TOOLBAR / SEARCH
   ========================================================= */

.single-forum #bbpress-forums .bbp-search-form {
    width: min(100%, 420px);
    margin: 0 0 26px auto;
}

.single-forum #bbpress-forums .bbp-search-form > div {
    display: flex;
    gap: 8px;
}

.single-forum #bbpress-forums .bbp-search-form input[type="text"] {
    width: 100%;
    min-height: 46px;

    padding: 0 15px;

    color: var(--hxn-ink);
    background: #ffffff;

    border: 1px solid var(--hxn-border);
    border-radius: 12px;

    outline: none;

    font: inherit;
    font-size: 0.84rem;

    transition:
        border-color 150ms ease,
        box-shadow 150ms ease;
}

.single-forum #bbpress-forums .bbp-search-form input[type="text"]:focus {
    border-color: var(--hxn-teal);

    box-shadow:
        0 0 0 3px rgba(11, 175, 164, 0.10);
}

.single-forum #bbpress-forums .bbp-search-form input[type="submit"] {
    min-height: 46px;

    padding: 0 20px;

    color: #ffffff;
    background: var(--hxn-ink);

    border: 0;
    border-radius: 999px;

    font-size: 0.78rem;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 150ms ease,
        transform 150ms ease;
}

.single-forum #bbpress-forums .bbp-search-form input[type="submit"]:hover {
    background: var(--hxn-deep-teal);

    transform: translateY(-1px);
}


/* =========================================================
   BBPRESS NOTICES
   ========================================================= */

.single-forum #bbpress-forums div.bbp-template-notice {
    margin: 12px 0;

    padding: 12px 15px;

    color: var(--hxn-body);
    background: #ffffff;

    border: 1px solid var(--hxn-border);
    border-left: 3px solid var(--hxn-teal);
    border-radius: 10px;

    box-shadow: none;
}

.single-forum #bbpress-forums div.bbp-template-notice.info {
    background: rgba(11, 175, 164, 0.035);
    border-color: rgba(11, 175, 164, 0.18);
    border-left-color: var(--hxn-teal);
}

.single-forum #bbpress-forums div.bbp-template-notice.error,
.single-forum #bbpress-forums div.bbp-template-notice.warning {
    background: rgba(232, 180, 76, 0.06);
    border-color: rgba(232, 180, 76, 0.28);
    border-left-color: var(--hxn-yellow);
}

.single-forum #bbpress-forums div.bbp-template-notice p {
    margin: 0;

    font-size: 0.78rem;
    line-height: 1.5;
}


/* =========================================================
   TOPIC LIST
   ========================================================= */

.single-forum #bbpress-forums ul.bbp-topics {
    margin: 30px 0 40px;

    background: #ffffff;

    border: 1px solid var(--hxn-border);
    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 14px 36px rgba(19, 43, 50, 0.045);
}

.single-forum #bbpress-forums li.bbp-header,
.single-forum #bbpress-forums li.bbp-footer {
    padding: 13px 18px;

    color: var(--hxn-muted);
    background: var(--hxn-paper-deep);

    border: 0;

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.single-forum #bbpress-forums li.bbp-body ul.topic {
    padding: 18px;

    background: #ffffff;

    border-top: 1px solid var(--hxn-border);

    transition:
        background 150ms ease;
}

.single-forum #bbpress-forums li.bbp-body ul.topic:hover {
    background: rgba(11, 175, 164, 0.025);
}

.single-forum #bbpress-forums .bbp-topic-title {
    font-size: 0.95rem;
}

.single-forum #bbpress-forums .bbp-topic-permalink {
    color: var(--hxn-ink) !important;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.25;

    text-decoration: none !important;
}

.single-forum #bbpress-forums .bbp-topic-permalink:hover {
    color: var(--hxn-deep-teal) !important;
}

.single-forum #bbpress-forums .bbp-topic-meta {
    margin-top: 7px;

    color: var(--hxn-muted);

    font-size: 0.72rem;
}

.single-forum #bbpress-forums .bbp-topic-voice-count,
.single-forum #bbpress-forums .bbp-topic-reply-count,
.single-forum #bbpress-forums .bbp-topic-freshness {
    color: var(--hxn-body);

    font-size: 0.76rem;
}


/* =========================================================
   NEW TOPIC FORM INSIDE FORUM
   ========================================================= */

.single-forum #bbpress-forums form#new-post {
    margin-top: 38px;
}


/* Card */

.single-forum #bbpress-forums fieldset.bbp-form {
    margin: 0;
    padding: clamp(22px, 4vw, 34px);

    background: #ffffff;

    border: 1px solid var(--hxn-border);
    border-radius: 18px;

    box-shadow:
        0 18px 46px rgba(19, 43, 50, 0.055);
}


/* Title */

.single-forum #bbpress-forums fieldset.bbp-form legend {
    width: auto;

    margin: 0 0 25px;
    padding: 0;

    color: var(--hxn-ink);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.6vw, 1.75rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.15;
}


/* Rows */

.single-forum #bbpress-forums fieldset.bbp-form > div > p,
.single-forum #bbpress-forums fieldset.bbp-form > p {
    margin: 0 0 20px;
}


/* Labels */

.single-forum #bbpress-forums fieldset.bbp-form label {
    display: inline-block;

    margin: 0 0 7px;

    color: var(--hxn-ink);

    font-size: 0.76rem;
    font-weight: 760;
}


/* Inputs */

.single-forum #bbpress-forums fieldset.bbp-form input[type="text"],
.single-forum #bbpress-forums fieldset.bbp-form input[type="password"],
.single-forum #bbpress-forums fieldset.bbp-form select,
.single-forum #bbpress-forums fieldset.bbp-form textarea {
    width: 100%;
    max-width: none;

    padding: 12px 14px;

    color: var(--hxn-ink);
    background: #ffffff;

    border: 1px solid var(--hxn-border);
    border-radius: 11px;

    outline: none;

    font: inherit;
    font-size: 0.88rem;

    transition:
        border-color 150ms ease,
        box-shadow 150ms ease,
        background 150ms ease;
}

.single-forum #bbpress-forums fieldset.bbp-form input[type="text"],
.single-forum #bbpress-forums fieldset.bbp-form select {
    min-height: 46px;
}

.single-forum #bbpress-forums fieldset.bbp-form textarea {
    min-height: 240px;

    resize: vertical;
}

.single-forum #bbpress-forums fieldset.bbp-form input:focus,
.single-forum #bbpress-forums fieldset.bbp-form select:focus,
.single-forum #bbpress-forums fieldset.bbp-form textarea:focus {
    border-color: var(--hxn-teal);

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(11, 175, 164, 0.10);
}


/* =========================================================
   WORDPRESS EDITOR INSIDE BBPRESS
   ========================================================= */

.single-forum #bbpress-forums .wp-editor-wrap {
    margin-top: 5px;

    border: 1px solid var(--hxn-border);
    border-radius: 12px;

    overflow: hidden;

    background: #ffffff;
}

.single-forum #bbpress-forums .wp-editor-container {
    border: 0 !important;
}

.single-forum #bbpress-forums .quicktags-toolbar {
    padding: 8px 10px;

    background: var(--hxn-paper-deep);

    border-bottom: 1px solid var(--hxn-border);
}

.single-forum #bbpress-forums .quicktags-toolbar input.button {
    min-height: 30px;

    margin: 2px;

    padding: 0 9px;

    color: var(--hxn-body);
    background: #ffffff;

    border: 1px solid var(--hxn-border);
    border-radius: 6px;

    box-shadow: none;

    font-size: 0.68rem;
    font-weight: 700;
}

.single-forum #bbpress-forums .quicktags-toolbar input.button:hover {
    color: var(--hxn-deep-teal);

    border-color: rgba(11, 175, 164, 0.30);
}

.single-forum #bbpress-forums .wp-editor-area {
    min-height: 240px !important;

    padding: 15px !important;

    color: var(--hxn-ink) !important;
    background: #ffffff !important;

    font-size: 0.9rem !important;
    line-height: 1.65 !important;
}


/* =========================================================
   SELECTS AREA
   ========================================================= */

.single-forum #bbpress-forums select {
    cursor: pointer;
}

.single-forum #bbpress-forums select[name="bbp_topic_type"],
.single-forum #bbpress-forums select[name="bbp_topic_status"] {
    width: min(100%, 360px);
}


/* =========================================================
   CHECKBOXES
   ========================================================= */

.single-forum #bbpress-forums input[type="checkbox"] {
    width: 16px;
    height: 16px;

    margin: 0 7px 0 0;

    accent-color: var(--hxn-teal);
}

.single-forum #bbpress-forums fieldset.bbp-form label[for*="subscription"] {
    color: var(--hxn-body);

    font-size: 0.76rem;
    font-weight: 600;
}


/* =========================================================
   SUBMIT
   ========================================================= */

.single-forum #bbpress-forums .bbp-submit-wrapper {
    float: none;

    display: flex;
    justify-content: flex-end;

    margin: 28px 0 0;
}

.single-forum #bbpress-forums .bbp-submit-wrapper button,
.single-forum #bbpress-forums .bbp-submit-wrapper input[type="submit"] {
    min-width: 130px;
    min-height: 46px;

    padding: 0 22px;

    color: #ffffff !important;
    background: var(--hxn-ink) !important;

    border: 0 !important;
    border-radius: 999px !important;

    box-shadow: none !important;

    font: inherit;
    font-size: 0.78rem;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 150ms ease,
        transform 150ms ease,
        box-shadow 150ms ease;
}

.single-forum #bbpress-forums .bbp-submit-wrapper button:hover,
.single-forum #bbpress-forums .bbp-submit-wrapper input[type="submit"]:hover {
    background: var(--hxn-deep-teal) !important;

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(13, 91, 99, 0.16) !important;
}


/* =========================================================
   PAGINATION
   ========================================================= */

.single-forum #bbpress-forums .bbp-pagination {
    margin: 22px 0;

    color: var(--hxn-muted);

    font-size: 0.74rem;
}

.single-forum #bbpress-forums .bbp-pagination-links a,
.single-forum #bbpress-forums .bbp-pagination-links span.current {
    display: inline-grid;
    place-items: center;

    min-width: 34px;
    min-height: 34px;

    margin-left: 4px;
    padding: 0 8px;

    border: 1px solid var(--hxn-border);
    border-radius: 8px;

    text-decoration: none;
}

.single-forum #bbpress-forums .bbp-pagination-links span.current {
    color: #ffffff;
    background: var(--hxn-ink);

    border-color: var(--hxn-ink);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .single-forum #bbpress-forums .bbp-search-form {
        width: 100%;
        margin-left: 0;
    }

    .single-forum #bbpress-forums fieldset.bbp-form {
        padding: 20px;

        border-radius: 14px;
    }

    .single-forum #bbpress-forums .bbp-submit-wrapper {
        display: block;
    }

    .single-forum #bbpress-forums .bbp-submit-wrapper button,
    .single-forum #bbpress-forums .bbp-submit-wrapper input[type="submit"] {
        width: 100%;
    }

    .single-forum #bbpress-forums .bbp-topic-voice-count,
    .single-forum #bbpress-forums .bbp-topic-reply-count {
        display: none;
    }
}
