/* Hardware.Quest bbPress — mobile-first Liquid Glass presentation */
:root {
    --hq-bbp-accent: #10b981;
    --hq-bbp-accent-strong: #065f46; /* emerald-800 — AAA 7:1 on white */
    --hq-bbp-text: #0f172a;
    --hq-bbp-muted: #334155; /* slate-700 — AAA on white (was #64748b, 4.75) */
    --hq-bbp-line: rgba(148, 163, 184, .28);
    --hq-bbp-surface: rgba(255, 255, 255, .78);
    --hq-bbp-surface-strong: rgba(255, 255, 255, .94);
    --hq-bbp-shadow: 0 24px 60px -36px rgba(15, 23, 42, .35);
}

.dark {
    --hq-bbp-text: #f8fafc;
    --hq-bbp-muted: #94a3b8;
    --hq-bbp-line: rgba(255, 255, 255, .1);
    --hq-bbp-surface: rgba(15, 23, 42, .7);
    --hq-bbp-surface-strong: rgba(15, 23, 42, .9);
    --hq-bbp-shadow: 0 28px 70px -34px rgba(0, 0, 0, .8);
}

.hq-community,
.hq-community * {
    box-sizing: border-box;
}

.hq-community {
    min-width: 0;
    overflow: clip;
    color: var(--hq-bbp-text);
    background: transparent; /* let the site ambient gradient show through (match site) */
}

.dark .hq-community { background: transparent; }

.hq-community-container {
    width: min(100% - 2rem, 76rem);
    margin-inline: auto;
}

.hq-community-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 7rem 0 3rem;
    border-bottom: 1px solid var(--hq-bbp-line);
    background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(236,253,245,.72));
}

.dark .hq-community-hero {
    background: linear-gradient(145deg, rgba(2,6,23,.96), rgba(6,78,59,.2));
}

.hq-community-hero__glow {
    position: absolute;
    z-index: -1;
    width: 28rem;
    height: 28rem;
    top: -12rem;
    left: 50%;
    translate: -50% 0;
    border-radius: 50%;
    background: rgba(16, 185, 129, .2);
    filter: blur(70px);
    pointer-events: none;
}

.hq-community-hero__inner {
    display: grid;
    gap: 1.25rem;
    align-items: center;
}

.hq-community-hero__media { width: 4.5rem; }
.hq-community-hero__avatar {
    display: block;
    width: 4.5rem;
    height: 4.5rem;
    object-fit: cover;
    border: 3px solid rgba(16,185,129,.65);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(16,185,129,.1);
}

.hq-community-hero__eyebrow {
    margin: 0 0 .5rem;
    color: var(--hq-bbp-accent-strong);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.dark .hq-community-hero__eyebrow { color: #6ee7b7; }

.hq-community-hero h1 {
    max-width: 20ch;
    margin: 0;
    overflow-wrap: anywhere;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(2rem, 9vw, 4rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.02;
}

.hq-community-hero__summary {
    max-width: 44rem;
    margin: .85rem 0 0;
    color: var(--hq-bbp-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.hq-community-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.hq-community-action,
#bbpress-forums .button,
#bbpress-forums button,
#bbpress-forums input[type="submit"] {
    display: inline-flex;
    min-height: 2.75rem;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    padding: .7rem 1rem;
    border: 1px solid transparent;
    border-radius: .85rem;
    background: linear-gradient(135deg, #34d399, #059669);
    color: #fff !important;
    font: inherit;
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 24px -14px rgba(5,150,105,.8);
}

.hq-community-action--secondary {
    border-color: var(--hq-bbp-line);
    background: var(--hq-bbp-surface);
    color: var(--hq-bbp-text) !important;
    box-shadow: none;
    backdrop-filter: blur(16px);
}

.hq-community-content { padding: 1.25rem 0 4rem; }
.hq-community-breadcrumbs { margin-bottom: 1rem; }
.hq-community-breadcrumbs .bbp-breadcrumb { float: none; margin: 0; }
.hq-community-breadcrumbs p {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin: 0;
    color: var(--hq-bbp-muted);
    font-size: .8rem;
}
.hq-community-breadcrumbs a { color: inherit; }

.hq-community-glass {
    min-width: 0;
    padding: .75rem;
    border: 1px solid var(--hq-bbp-line);
    border-radius: 1.4rem;
    background: var(--hq-bbp-surface);
    box-shadow: var(--hq-bbp-shadow);
    backdrop-filter: blur(24px) saturate(135%);
    -webkit-backdrop-filter: blur(24px) saturate(135%);
}

#bbpress-forums {
    min-width: 0;
    margin: 0;
    color: var(--hq-bbp-text);
    font-family: 'Inter', sans-serif;
    font-size: .94rem;
    line-height: 1.6;
}

#bbpress-forums::after,
#bbpress-forums .bbp-pagination::after,
#bbpress-forums .bbp-topic-form::after { content: ''; display: table; clear: both; }

#bbpress-forums a { color: var(--hq-bbp-accent-strong); overflow-wrap: anywhere; }
.dark #bbpress-forums a { color: #6ee7b7; }
#bbpress-forums a:hover { color: var(--hq-bbp-accent); }

#bbpress-forums ul,
#bbpress-forums ol { max-width: 100%; }
#bbpress-forums img,
#bbpress-forums iframe,
#bbpress-forums video { max-width: 100%; height: auto; }

#bbpress-forums ul.bbp-forums,
#bbpress-forums ul.bbp-topics,
#bbpress-forums ul.bbp-replies,
#bbpress-forums ul.bbp-search-results,
#bbpress-forums ul.bbp-lead-topic {
    width: 100%;
    min-width: 0;
    margin: 0 0 1.25rem;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--hq-bbp-line);
    border-radius: 1rem;
    background: var(--hq-bbp-surface-strong);
    list-style: none;
}

#bbpress-forums li.bbp-header,
#bbpress-forums li.bbp-footer {
    display: none;
    background: rgba(148,163,184,.08);
    color: var(--hq-bbp-muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

#bbpress-forums li.bbp-body { margin: 0; }
#bbpress-forums li.bbp-body ul.forum,
#bbpress-forums li.bbp-body ul.topic {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .65rem 1rem;
    min-width: 0;
    margin: 0;
    padding: 1rem;
    border: 0;
    border-bottom: 1px solid var(--hq-bbp-line);
}
#bbpress-forums li.bbp-body > ul:last-child { border-bottom: 0; }

#bbpress-forums li.bbp-forum-info,
#bbpress-forums li.bbp-topic-title { min-width: 0; width: auto; }
#bbpress-forums li.bbp-forum-topic-count,
#bbpress-forums li.bbp-forum-reply-count,
#bbpress-forums li.bbp-topic-voice-count,
#bbpress-forums li.bbp-topic-reply-count {
    width: auto;
    color: var(--hq-bbp-muted);
    font-size: .75rem;
    white-space: nowrap;
}
#bbpress-forums li.bbp-forum-freshness,
#bbpress-forums li.bbp-topic-freshness {
    grid-column: 1 / -1;
    width: auto;
    color: var(--hq-bbp-muted);
    font-size: .78rem;
    text-align: left;
}

#bbpress-forums .bbp-forum-title,
#bbpress-forums .bbp-topic-permalink {
    display: inline;
    color: var(--hq-bbp-text);
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 750;
    line-height: 1.3;
}
#bbpress-forums .bbp-forum-content,
#bbpress-forums .bbp-topic-meta { margin: .4rem 0 0; color: var(--hq-bbp-muted); font-size: .8rem; }

#bbpress-forums .bbp-pagination {
    float: none;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
}
#bbpress-forums .bbp-pagination-count,
#bbpress-forums .bbp-pagination-links { float: none; }
#bbpress-forums .bbp-pagination-links { display: flex; flex-wrap: wrap; gap: .35rem; }
#bbpress-forums .bbp-pagination-links a,
#bbpress-forums .bbp-pagination-links span.current {
    display: inline-flex;
    min-width: 2.5rem;
    min-height: 2.5rem;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: .4rem;
    border: 1px solid var(--hq-bbp-line);
    border-radius: .7rem;
    background: var(--hq-bbp-surface-strong);
}
#bbpress-forums .bbp-pagination-links span.current { border-color: var(--hq-bbp-accent); background: var(--hq-bbp-accent); color: #fff; }

#bbpress-forums div.bbp-reply-header,
#bbpress-forums div.bbp-topic-header {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
    justify-content: space-between;
    margin-top: .85rem;
    padding: .65rem .9rem;
    border: 1px solid var(--hq-bbp-line);
    border-bottom: 0;
    border-radius: 1rem 1rem 0 0;
    background: rgba(148,163,184,.08);
    color: var(--hq-bbp-muted);
    font-size: .75rem;
}

/* ---- Reply / topic CARDS (real bbPress markup: ul.bbp-replies-list > li) ---- */
/* bbPress renders each reply as a bare <li> containing a .bbp-reply-header meta
   strip + a .loop-item / .bbp-reply div holding author + content. Older CSS
   targeted div.bbp-reply (never matched) so cards were unframed and the author
   block overlapped. These selectors match the ACTUAL structure. */
#bbpress-forums ul.bbp-replies-list,
#bbpress-forums ul.bbp-topics-list { margin: 0; padding: 0; list-style: none; }
#bbpress-forums ul.bbp-replies-list > li,
#bbpress-forums ul.bbp-topics-list > li {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}
/* The inner post wrapper = the card body under the header strip. */
#bbpress-forums ul.bbp-replies-list > li > div[class*="loop-item"],
#bbpress-forums ul.bbp-replies-list > li > div.bbp-reply,
#bbpress-forums .bbp-body > div.bbp-reply,
#bbpress-forums .bbp-body > div.bbp-topic,
#bbpress-forums .bbp-threaded-replies > div.bbp-reply,
#bbpress-forums .bbp-threaded-replies > div.bbp-topic {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    margin: 0 !important;
    overflow: hidden;
    border: 1px solid var(--hq-bbp-line);
    border-radius: 0 0 1rem 1rem;
    background: var(--hq-bbp-surface-strong);
}

/* Author block = avatar + a stacked name/role column. The bbPress markup is:
   .bbp-reply-author > a.bbp-author-link( span.avatar, span.name ) + div.role
   The author LINK is flattened with `display:contents` so its avatar+name become
   DIRECT children of this grid (a nested grid on an inline <a> collapses its 1fr
   track to ~0, hiding the name — the bug this fixes). Avatar spans both rows. */
#bbpress-forums .bbp-reply-author,
#bbpress-forums .bbp-topic-author {
    float: none !important;
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas: "avatar name" "avatar role";
    align-items: center;
    column-gap: .75rem;
    row-gap: 0;
    width: 100% !important;
    min-height: 0;
    padding: .9rem .9rem .5rem;
    text-align: left;
}
/* Flatten the link so avatar + name land directly in the grid areas above. */
#bbpress-forums .bbp-reply-author a.bbp-author-link,
#bbpress-forums .bbp-topic-author a.bbp-author-link {
    display: contents;
    text-decoration: none;
}
#bbpress-forums .bbp-author-avatar { grid-area: avatar; display: block; align-self: center; }
#bbpress-forums .bbp-reply-author img.avatar,
#bbpress-forums .bbp-topic-author img.avatar {
    position: static;
    float: none;
    width: 2.75rem;
    height: 2.75rem;
    margin: 0;
    border: 2px solid rgba(16,185,129,.55);
    border-radius: 50%;
    object-fit: cover;
}
#bbpress-forums .bbp-author-name {
    grid-area: name;
    align-self: end;
    justify-self: start;
    text-align: left;
    display: block !important;
    visibility: visible !important;
    max-width: 100%;
    font-size: .92rem;
    font-weight: 750;
    line-height: 1.25;
    color: var(--hq-bbp-text) !important;
    overflow-wrap: normal;
    word-break: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#bbpress-forums .bbp-author-role {
    grid-area: role;
    align-self: start;
    justify-self: start;
    text-align: left;
    display: block;
    margin-top: 0;
    color: var(--hq-bbp-muted);
    font-size: .7rem;
    line-height: 1.2;
    font-style: normal !important;
    text-transform: uppercase;
    letter-spacing: .05em;
}
#bbpress-forums .bbp-reply-ip { grid-column: 2; color: var(--hq-bbp-muted); font-size: .72rem; }

#bbpress-forums .bbp-reply-content,
#bbpress-forums .bbp-topic-content {
    min-width: 0;
    margin: 0 !important;
    padding: .25rem .9rem 1.1rem;
    border: 0;
    overflow-wrap: anywhere;
}
#bbpress-forums .bbp-reply-content pre,
#bbpress-forums .bbp-topic-content pre {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre;
}
#bbpress-forums .bbp-reply-content table,
#bbpress-forums .bbp-topic-content table { display: block; max-width: 100%; overflow-x: auto; }

/* Reset bbPress threaded classes so nested replies never accumulate indentation. */
#bbpress-forums .bbp-threaded-replies,
#bbpress-forums .bbp-threaded-replies .bbp-threaded-replies,
#bbpress-forums .depth-2,
#bbpress-forums .depth-3,
#bbpress-forums .depth-4,
#bbpress-forums .depth-5,
#bbpress-forums .depth-6 { margin-left: 0 !important; padding-left: 0 !important; }

#bbpress-forums .bbp-admin-links {
    float: none;
    display: flex;
    flex-wrap: wrap;
    gap: .25rem .65rem;
    max-width: 100%;
    text-align: left;
}
#bbpress-forums .bbp-admin-links a { font-size: .72rem; white-space: normal; }
#bbpress-forums .bbp-topic-header .bbp-admin-links,
#bbpress-forums .bbp-reply-header .bbp-admin-links { margin-left: auto; }

#bbpress-forums fieldset.bbp-form {
    min-width: 0;
    margin: 1.25rem 0 0;
    padding: 1rem;
    border: 1px solid var(--hq-bbp-line);
    border-radius: 1rem;
    background: var(--hq-bbp-surface-strong);
}
#bbpress-forums fieldset.bbp-form legend { max-width: 100%; padding: 0 .4rem; color: var(--hq-bbp-text); font-weight: 800; }
#bbpress-forums fieldset.bbp-form label { display: inline-block; max-width: 100%; margin-bottom: .35rem; font-weight: 700; }
#bbpress-forums input[type="text"],
#bbpress-forums input[type="email"],
#bbpress-forums input[type="password"],
#bbpress-forums input[type="url"],
#bbpress-forums input[type="search"],
#bbpress-forums select,
#bbpress-forums textarea {
    width: 100%;
    max-width: 100%;
    min-height: 2.75rem;
    padding: .7rem .8rem;
    border: 1px solid var(--hq-bbp-line);
    border-radius: .75rem;
    background: rgba(248,250,252,.88);
    color: #0f172a;
    font: inherit;
}
.dark #bbpress-forums input[type="text"],
.dark #bbpress-forums input[type="email"],
.dark #bbpress-forums input[type="password"],
.dark #bbpress-forums input[type="url"],
.dark #bbpress-forums input[type="search"],
.dark #bbpress-forums select,
.dark #bbpress-forums textarea { background: rgba(2,6,23,.72); color: #f8fafc; }
#bbpress-forums textarea { min-height: 10rem; resize: vertical; }
#bbpress-forums input:focus,
#bbpress-forums select:focus,
#bbpress-forums textarea:focus { outline: 3px solid rgba(16,185,129,.2); border-color: var(--hq-bbp-accent); }

#bbpress-forums .bbp-search-form,
#bbpress-forums .bbp-search-form form,
#bbpress-forums #bbp-search-form { float: none; width: 100%; }
#bbpress-forums #bbp-search-form > div {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: .5rem;
}
#bbpress-forums #bbp-search-form input[type="submit"] { width: auto; }

#bbpress-forums div.bbp-template-notice,
#bbpress-forums div.indicator-hint,
#bbpress-forums .bbp-template-notice {
    margin: 1rem 0;
    padding: .8rem 1rem;
    border: 1px solid rgba(16,185,129,.32);
    border-radius: .85rem;
    background: rgba(16,185,129,.08);
    color: var(--hq-bbp-text);
}
#bbpress-forums div.bbp-template-notice.error,
#bbpress-forums div.bbp-template-notice.warning { border-color: rgba(245,158,11,.45); background: rgba(245,158,11,.1); }
#bbpress-forums div.bbp-template-notice p { margin: 0; }

#bbpress-forums .bbp-topic-tags,
#bbpress-forums .bbp-topic-form,
#bbpress-forums .bbp-reply-form,
#bbpress-forums .bbp-login-form,
#bbpress-forums .bbp-user-section { min-width: 0; clear: both; }
#bbpress-forums .bbp-topic-tags a { display: inline-block; margin: .2rem; padding: .25rem .6rem; border-radius: 999px; background: rgba(16,185,129,.1); }
#bbpress-forums .subscription-toggle,
#bbpress-forums .favorite-toggle { display: inline-flex; margin: .25rem; }

#bbpress-forums #bbp-user-wrapper { display: grid; min-width: 0; gap: 1rem; }
#bbpress-forums #bbp-single-user-details {
    width: 100%;
    margin: 0;
    padding: 1rem;
    border: 1px solid var(--hq-bbp-line);
    border-radius: 1rem;
    background: var(--hq-bbp-surface-strong);
    text-align: center;
}
#bbpress-forums #bbp-user-avatar img.avatar {
    display: block;
    width: 6rem;
    height: 6rem;
    margin: 0 auto .75rem;
    border: 3px solid rgba(16,185,129,.6);
    border-radius: 50%;
    object-fit: cover;
}
#bbpress-forums #bbp-user-navigation ul { display: grid; gap: .35rem; margin: 1rem 0 0; padding: 0; list-style: none; }
#bbpress-forums #bbp-user-navigation a { display: block; padding: .65rem .75rem; border-radius: .65rem; background: rgba(148,163,184,.09); color: var(--hq-bbp-text); }
#bbpress-forums #bbp-user-navigation li.current a { background: var(--hq-bbp-accent); color: #fff; }
#bbpress-forums #bbp-user-body { min-width: 0; width: 100%; }

/* Community index cards and Reddit-style topic feed. */
#bbpress-forums .hq-community-hub__toolbar,
#bbpress-forums .hq-community-hub__feed-heading {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 1rem;
}
#bbpress-forums .hq-community-hub__toolbar h2,
#bbpress-forums .hq-community-hub__feed-heading h2 {
    margin: 0;
    color: var(--hq-bbp-text);
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(1.35rem, 5vw, 2rem);
    font-weight: 800;
    letter-spacing: -.03em;
}
#bbpress-forums .hq-community-hub__eyebrow {
    margin: 0 0 .25rem;
    color: var(--hq-bbp-accent-strong);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.dark #bbpress-forums .hq-community-hub__eyebrow { color: #6ee7b7; }
#bbpress-forums .hq-community-hub__toolbar .bbp-search-form { width: min(100%, 25rem); }
#bbpress-forums .hq-community-hub__feed { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--hq-bbp-line); }
#bbpress-forums .hq-community-hub__feed-heading > a { min-height: 2.75rem; display: inline-flex; align-items: center; font-weight: 800; }

#bbpress-forums .hq-forum-grid,
#bbpress-forums .hq-topic-feed {
    display: grid;
    gap: 1rem;
    margin: 0 0 1.25rem;
}

#bbpress-forums .hq-forum-card,
#bbpress-forums .hq-topic-card {
    min-width: 0;
    margin: 0;
    padding: 1.15rem;
    border: 1px solid var(--hq-bbp-line);
    border-radius: 1.15rem;
    background: var(--hq-bbp-surface-strong);
    box-shadow: 0 14px 32px -28px rgba(15, 23, 42, .55);
    list-style: none;
}

#bbpress-forums .hq-forum-card {
    display: flex;
    flex-direction: column;
    min-height: 12rem;
}

#bbpress-forums .hq-forum-card__title,
#bbpress-forums .hq-topic-card__title {
    margin: 0;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.25;
}
#bbpress-forums .hq-forum-card__title { font-size: 1.25rem; }
#bbpress-forums .hq-topic-card__title { margin-top: 1rem; font-size: clamp(1.15rem, 4vw, 1.45rem); }
#bbpress-forums .hq-forum-card__title a,
#bbpress-forums .hq-topic-card__title a { color: var(--hq-bbp-text); text-decoration: none; }

#bbpress-forums .hq-forum-card__description,
#bbpress-forums .hq-topic-card__excerpt {
    margin: .65rem 0 0;
    color: var(--hq-bbp-muted);
    line-height: 1.65;
}
#bbpress-forums .hq-forum-card__children { margin-top: .75rem; font-size: .8rem; }

#bbpress-forums .hq-forum-card__footer,
#bbpress-forums .hq-topic-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem 1rem;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--hq-bbp-line);
    color: var(--hq-bbp-muted);
    font-size: .78rem;
}
#bbpress-forums .hq-forum-card__freshness { flex-basis: 100%; }

#bbpress-forums .hq-topic-card__author {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: .7rem;
    align-items: center;
}
#bbpress-forums .hq-topic-card__avatar,
#bbpress-forums .hq-topic-card__avatar img {
    display: block;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}
#bbpress-forums .hq-topic-card__avatar img { border: 2px solid rgba(16,185,129,.5); object-fit: cover; }
#bbpress-forums .hq-topic-card__identity { display: flex; min-width: 0; flex-direction: column; }
#bbpress-forums .hq-topic-card__name { overflow: hidden; color: var(--hq-bbp-text); font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
#bbpress-forums .hq-topic-card__time { color: var(--hq-bbp-muted); font-size: .75rem; }
#bbpress-forums .hq-topic-card__forum {
    grid-column: 1 / -1;
    justify-self: start;
    padding: .3rem .65rem;
    border-radius: 999px;
    background: rgba(16,185,129,.1);
    color: #064e3b; /* emerald-900 — clears AAA 7:1 on the light emerald pill */
    font-size: .72rem;
    font-weight: 800;
    text-decoration: none;
}
#bbpress-forums .hq-topic-card__actions { margin-top: 1rem; }
#bbpress-forums .hq-topic-card__metric,
#bbpress-forums .hq-topic-card__open { display: inline-flex; align-items: center; gap: .35rem; text-decoration: none; }
#bbpress-forums .hq-topic-card__open { margin-left: auto; font-weight: 800; }
#bbpress-forums .hq-topic-card__user-actions { flex-basis: 100%; }

@media (min-width: 48rem) {
    .hq-community-container { width: min(100% - 3rem, 76rem); }
    .hq-community-hero { padding: 8.5rem 0 4rem; }
    .hq-community-hero__inner { grid-template-columns: auto minmax(0,1fr) auto; gap: 1.5rem; }
    .hq-community-hero__actions { justify-content: flex-end; }
    .hq-community-glass { padding: 1.5rem; border-radius: 2rem; }

#bbpress-forums li.bbp-header,
    #bbpress-forums li.bbp-footer { display: none; }

    #bbpress-forums .bbp-reply-author,
    #bbpress-forums .bbp-topic-author {
        float: none !important;
        display: grid;
        grid-template-columns: 3.25rem minmax(0, 1fr);
        grid-template-rows: auto auto;
        grid-template-areas: "avatar name" "avatar role";
        align-items: center;
        column-gap: .85rem;
        row-gap: 0;
        width: 100% !important;
        justify-self: stretch;
        box-sizing: border-box;
        padding: 1rem 1.2rem .75rem;
        text-align: left;
    }
    #bbpress-forums .bbp-reply-author a.bbp-author-link,
    #bbpress-forums .bbp-topic-author a.bbp-author-link {
        display: contents;
    }
    #bbpress-forums .bbp-reply-author img.avatar,
    #bbpress-forums .bbp-topic-author img.avatar { width: 3.25rem; height: 3.25rem; margin: 0; }
    #bbpress-forums .bbp-reply-content,
    #bbpress-forums .bbp-topic-content {
        margin-left: 0 !important;
        padding: .5rem 1.2rem 1.25rem;
        border: 0;
    }

    #bbpress-forums .hq-forum-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    #bbpress-forums .hq-topic-card { padding: 1.4rem; }
    #bbpress-forums .hq-topic-card__author { grid-template-columns: 3rem minmax(0, 1fr) auto; }
    #bbpress-forums .hq-topic-card__forum { grid-column: auto; }

    #bbpress-forums #bbp-user-wrapper { grid-template-columns: 15rem minmax(0,1fr); align-items: start; }
    #bbpress-forums #bbp-single-user-details { width: 15rem; }
}

@media (prefers-reduced-motion: no-preference) {
    .hq-community-action,
    #bbpress-forums a,
    #bbpress-forums .button { transition: color .2s var(--hq-ease-apple, cubic-bezier(0.25, 1, 0.5, 1)), border-color .2s var(--hq-ease-apple, cubic-bezier(0.25, 1, 0.5, 1)), background-color .2s var(--hq-ease-apple, cubic-bezier(0.25, 1, 0.5, 1)), transform .2s var(--hq-ease-apple, cubic-bezier(0.25, 1, 0.5, 1)); }
    .hq-community-action:hover,
    #bbpress-forums .button:hover { transform: translateY(-1px); }
}
