/* ===========================================================================
   SYN//ARCHIVE — Home page (posts feed + sidebar)
   =========================================================================== */

.home-feed { max-width: var(--wrap, 1200px); margin: 0 auto; padding: 8px 22px 90px; }

/* "new here?" banner */
.feed-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    margin: 0 0 30px;
    border: 1px solid var(--line-soft);
    border-left: 3px solid var(--sin);
    border-radius: 10px;
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.016) 0 10px, transparent 10px 20px),
        rgba(255, 255, 255, 0.02);
}
.feed-banner .fb-icon { color: var(--sin); font-size: 1.2rem; }
.feed-banner p { margin: 0; color: var(--ash); line-height: 1.6; }
.feed-banner b { color: var(--bone); }
.feed-banner a { color: var(--sin); text-decoration: none; border-bottom: 1px dotted var(--sin); }

/* layout */
.feed-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}
.feed-main .eyebrow {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.26em;
    color: var(--page-accent, var(--sin));
    text-transform: uppercase;
}
.feed-main > h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--bone);
    margin: 6px 0 18px;
}

/* post card */
.post {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    background: var(--panel);
    transition: border-color 0.18s, transform 0.18s;
}
.post:hover { border-color: var(--line); transform: translateY(-2px); }
.post-thumb {
    position: relative;
    border-radius: 10px;
    min-height: 104px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    overflow: hidden;
}
.post-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 5px);
    mix-blend-mode: overlay;
}
.tag-notice { background: linear-gradient(135deg, color-mix(in srgb, var(--signal) 55%, #0a0c16), #0a0c16); }
.tag-event  { background: linear-gradient(135deg, color-mix(in srgb, var(--sin) 55%, #0a0c16), #0a0c16); }
.tag-update { background: linear-gradient(135deg, color-mix(in srgb, var(--gilt) 55%, #0a0c16), #0a0c16); }
.post-tag {
    position: relative;
    z-index: 1;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: #fff;
    background: rgba(4, 5, 12, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 4px 10px;
}
.post-body { min-width: 0; }
.post-body h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--bone);
    margin: 2px 0 6px;
    letter-spacing: 0.01em;
}
.post-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ash);
    margin-bottom: 8px;
}
.pm-av {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line-soft);
    font-size: 0.58rem;
    color: var(--bone);
    letter-spacing: 0;
}
.post-body p { color: var(--ash); font-size: 0.92rem; line-height: 1.6; margin: 0 0 10px; }
.post-body p em { color: rgba(152, 161, 186, 0.7); font-style: italic; }
.post-more {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bone);
    text-decoration: none;
}
.post-more:hover { color: var(--page-accent, var(--sin)); }
.post-more i { margin-left: 5px; font-size: 0.85em; }

/* sidebar */
.feed-side { display: flex; flex-direction: column; gap: 16px; }
.side-card {
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    background: var(--panel);
    padding: 16px 18px;
}
.side-card h4 {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ash);
    margin: 0 0 12px;
}
.status-row { display: flex; align-items: center; gap: 9px; color: var(--bone); font-family: var(--font-mono); font-size: 0.84rem; }
.status-row .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ash); box-shadow: 0 0 8px var(--ash); }
.status-sub { color: var(--ash); font-size: 0.8rem; margin: 6px 0 0; }

/* clock card */
.clock-card { text-align: center; }
.clock-time {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 1.85rem;
    letter-spacing: 0.04em;
    color: var(--bone);
    text-shadow: 0 0 16px color-mix(in srgb, var(--sin) 45%, transparent);
    line-height: 1.1;
}
.clock-date {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ash);
    margin-top: 8px;
}
.staff-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.staff-list li { display: flex; align-items: center; gap: 10px; color: var(--bone); font-size: 0.88rem; }
.staff-list li em { margin-left: auto; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ash); font-style: normal; }
.staff-list .muted-row { color: var(--ash); font-size: 0.84rem; }
.metric-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 0 0 12px;
}
.metric-line strong {
    font-family: var(--font-mono);
    font-size: 2rem;
    line-height: 1;
    color: var(--bone);
    text-shadow: 0 0 14px color-mix(in srgb, var(--signal) 44%, transparent);
}
.metric-line span,
.metric-foot {
    color: var(--ash);
    font-size: 0.82rem;
}
.metric-foot {
    margin: 12px 0 0;
    font-family: var(--font-mono);
}
.site-metrics {
    display: grid;
    gap: 12px;
}
.site-metrics div {
    display: grid;
    gap: 3px;
    padding: 0 0 11px;
    border-bottom: 1px solid var(--line-soft);
}
.site-metrics div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.site-metrics span {
    color: var(--ash);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.site-metrics strong {
    color: var(--bone);
    font-family: var(--font-mono);
    font-size: 1rem;
    overflow-wrap: anywhere;
}
.side-discord {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    text-decoration: none;
    font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
    color: #fff;
    background: #5865F2;
    border-radius: 10px;
    padding: 13px;
    transition: filter 0.2s, box-shadow 0.2s;
}
.side-discord:hover { filter: brightness(1.08); box-shadow: 0 0 18px rgba(88, 101, 242, 0.45); }

@media (max-width: 860px) {
    .feed-layout { grid-template-columns: 1fr; }
    .post { grid-template-columns: 96px minmax(0, 1fr); }
}
@media (max-width: 480px) {
    .home-feed { padding: 8px 14px 70px; }
    .post { grid-template-columns: 1fr; }
    .post-thumb { min-height: 84px; }
}
