/* ── Container (matches summary-card on Mine tab) ─── */

.fw-container {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

/* ── Following header ──────────────────────────────── */

.fw-header {
  margin-bottom: 0;
}

.fw-title-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 16px;
}

.fw-title-row .fw-view-toggle {
  margin-left: auto;
  align-self: center;
}

.fw-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 16px;
}

.fw-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.fw-count {
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-left: 8px;
}

.fw-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.fw-view-toggle {
  display: flex;
  background: var(--bg-subtle);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.fw-vt-pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  color: var(--text-faint);
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--transition);
}

.fw-vt-pill.active {
  background: var(--bg-surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

/* ── Centered wrapper ──────────────────────────────── */

.fw-centered-wrap {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* ── Feed two-column layout ────────────────────────── */

.fw-feed-layout {
  display: grid;
  grid-template-columns: minmax(0, 640px) 260px;
  gap: 28px;
  align-items: start;
  justify-content: center;
}

.fw-feed-stream-col {
  min-width: 0;
}

/* ── Feed sidebar ──────────────────────────────────── */

.fw-feed-sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 32px;
}

/* Stats row */
.fsd-stats {
  display: flex;
  gap: 0;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 4px;
}

.fsd-stat {
  flex: 1;
  padding: 10px 8px;
  text-align: center;
  border-right: 1px solid var(--border-faint);
}

.fsd-stat:last-child { border-right: none; }

.fsd-stat-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.fsd-stat-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 3px;
  line-height: 1.2;
}

.fsd-divider {
  height: 1px;
  background: var(--border-faint);
  margin: 2px 0;
}

/* Pinned label */
.fsd-pinned-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 2px;
  padding-left: 2px;
}

/* Pin card */
.fsd-pin-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 12px 9px;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.fsd-pin-card:hover { box-shadow: var(--shadow-md); }

/* Tier left-border colors */
.fsd-pin-card--sharing   { border-left: 3px solid var(--color-primary); }
.fsd-pin-card--followers { border-left: 3px solid var(--color-amber); }
.fsd-pin-card--lowkey    { border-left: 3px solid var(--accent-support); }
.fsd-pin-card--ghost     { border-left: 3px solid var(--border); opacity: 0.75; }

/* Card top row */
.fsd-pin-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}

.fsd-pin-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--paper);
}

.fsd-pin-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.fsd-pin-info {
  flex: 1;
  min-width: 0;
}

.fsd-pin-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.fsd-pin-name {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}

.fsd-pin-sub {
  font-size: 0.6rem;
  color: var(--text-faint);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Icon links beside name */
.fsd-pin-links {
  display: flex;
  gap: 1px;
  flex-shrink: 0;
}

.fsd-pin-link {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  cursor: pointer;
  font-size: 0.7rem;
  border-radius: 4px;
  transition: background 0.12s, color 0.12s;
}

.fsd-pin-link:hover { background: var(--bg-subtle); }
.fsd-pin-link.cal:hover { color: var(--accent-support); }
.fsd-pin-link.diary:hover { color: var(--color-amber); }
.fsd-pin-link.profile { opacity: 0.3; cursor: not-allowed; }
.fsd-pin-link.profile:hover { background: none; color: var(--text-faint); }

/* Activity legend */
.fsd-pin-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 9px;
  padding: 0 1px;
}

.fsd-pin-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.fsd-pin-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fsd-pin-legend-item.inactive { color: var(--text-faint); }
.fsd-pin-legend-item.inactive .fsd-pin-legend-dot { background: var(--text-faint) !important; opacity: 0.4; }

/* Ghost quiet text */
.fsd-pin-ghost-text {
  font-size: 0.65rem;
  color: var(--text-faint);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 9px;
  padding: 2px 0;
}

/* Ghost name dimmed */
.fsd-pin-card--ghost .fsd-pin-name { opacity: 0.55; }

/* Overflow link */
.fsd-pin-overflow {
  font-size: 0.63rem;
  font-weight: 600;
  color: var(--text-faint);
  text-align: center;
  cursor: pointer;
  padding: 6px 0;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.fsd-pin-overflow:hover { color: var(--color-primary); background: var(--bg-subtle); }

/* Empty pinned state */
.fsd-pin-empty {
  font-size: 0.65rem;
  color: var(--text-faint);
  font-style: italic;
  text-align: center;
  padding: 12px 8px;
}

/* ── Layout ────────────────────────────────────────── */

.fw-people-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
  align-items: start;
}

.fw-people-main {
  display: flex;
  flex-direction: column;
}

.fw-people-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 24px;
}

/* ── Section labels ────────────────────────────────── */

.fw-section-lbl {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.fw-section-lbl:first-child {
  padding-top: 0;
  border-top: none;
}


.fw-section-count {
  background: var(--bg-subtle);
  color: var(--text-muted);
  font-size: 0.58rem;
  padding: 1px 6px;
  border-radius: var(--radius-full);
}

.fw-unpin-all-btn {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-faint);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-base);
  padding: 0;
  transition: color var(--transition);
}

.fw-unpin-all-btn:hover { color: var(--color-primary); }
.fw-unpin-all-btn--confirm { color: var(--color-primary); }

/* ── Pinned grid ───────────────────────────────────── */

.fw-pinned-grid {
  column-count: 2;
  column-gap: 24px;
  margin-bottom: 24px;
}

/* ── Pinned slot ────────────────────────────────────── */

.fw-pinned-card {
  margin-bottom: 12px;
  position: relative;
}

.fw-pinned-slot {
  margin-bottom: 24px;
  position: relative;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
}

.fw-pinned-slot-inner {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.fw-pinned-slot .cal-card-badge {
  position: relative;
}

/* ── Legacy pinned badge (kept for fallback) ────────── */

.fw-pinned-badge {
  background: var(--color-amber);
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fw-pinned-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}

.fw-pinned-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fw-pinned-name {
  font-family: 'Caveat', cursive;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
}

/* ── Month nav ─────────────────────────────────────── */

.fw-pmn {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.fw-pmn-btn {
  background: rgba(0, 0, 0, 0.15);
  border: none;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  font-size: 0.8rem;
  color: inherit;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  font-family: var(--font-base);
}

.fw-pmn-btn:hover { opacity: 1; }

.fw-pmn-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  color: inherit;
  opacity: 0.75;
  min-width: 26px;
  text-align: center;
}

.fw-pmn-actions-btn {
  background: rgba(0, 0, 0, 0.15);
  border: none;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  color: inherit;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  margin-left: 2px;
  letter-spacing: 0.05em;
  font-family: var(--font-base);
}

.fw-pmn-actions-btn:hover { opacity: 1; }

.fw-pmn-popover {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 99;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 4px;
  display: flex;
  flex-direction: column;
  min-width: 120px;
}

.fw-pmn-popover button {
  padding: 8px 12px;
  font-size: 0.72rem;
  font-family: var(--font-base);
  text-align: left;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  width: 100%;
}

.fw-pmn-popover button:hover { background: var(--bg-subtle); }
.fw-pmn-popover .unfollow { color: var(--color-primary); }

.fw-compact-expanded .fw-pmn,
.fw-compact-expanded .fw-pmn-actions-btn {
  display: none;
}

/* Inside expanded compact row: full-width, no card chrome */
.fw-compact-expanded .fw-pinned-slot {
  max-width: 100%;
  margin-bottom: 0;
}

.fw-compact-expanded .fw-pinned-slot-inner {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.fw-pinned-body { padding: 0; }
.fw-pinned-no-tracker { padding: 16px 12px; font-size: 0.72rem; color: var(--text-faint); font-style: italic; margin: 0; }
.fw-pinned-tier { position: absolute; top: 10px; right: 10px; z-index: 1; }

/* ── Diary peek (legacy) ────────────────────────────── */

.fw-diary-peek { padding: 6px 12px 9px; border-top: 1px solid var(--border-faint); display: flex; align-items: center; gap: 6px; }
.fw-diary-peek-lbl { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); flex-shrink: 0; }
.fw-diary-peek-text { font-size: 0.63rem; color: var(--text-muted); font-style: italic; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── Compact rows ──────────────────────────────────── */

.fw-compact-row-wrap { margin-bottom: 6px; }

.fw-compact-row {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
  position: relative;
}

.fw-compact-row:hover { background: var(--bg-subtle); box-shadow: var(--shadow-sm); }

.fw-compact-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  background: var(--color-primary);
  overflow: hidden;
}

.fw-compact-avatar img { width: 100%; height: 100%; object-fit: cover; }
.fw-compact-avatar.no-tracker { background: var(--bg-subtle); border: 1.5px dashed var(--border); color: var(--text-faint); }
.fw-compact-info { flex: 1; min-width: 0; }
.fw-compact-name { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.fw-compact-meta { font-size: 0.64rem; color: var(--text-muted); margin-top: 2px; }
.fw-compact-meta.faint { color: var(--text-faint); font-style: italic; }
.fw-compact-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.fw-compact-chevron { font-size: 0.62rem; color: var(--text-faint); transition: transform var(--transition); }
.fw-compact-chevron.open { transform: rotate(90deg); }
.fw-compact-expanded { padding: 0 0 8px; display: none; }
.fw-compact-expanded.open { display: block; }

/* ── Tier badges ───────────────────────────────────── */

.fw-tier-badge { font-size: 0.52rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 7px; border-radius: var(--radius-full); }
.fw-tier-sharing { background: color-mix(in srgb, var(--accent-support) 18%, transparent); color: var(--accent-support); border: 1px solid color-mix(in srgb, var(--accent-support) 30%, transparent); }
.fw-tier-followers { background: rgba(248,192,138,0.2); color: #a06820; border: 1px solid rgba(248,192,138,0.4); }
[data-theme="side-b"] .fw-tier-followers { color: var(--color-amber); }
.fw-tier-lowkey { background: rgba(90,96,136,0.14); color: var(--text-muted); border: 1px solid var(--border); }
.fw-tier-ghost { background: rgba(42,46,69,0.08); color: var(--text-faint); border: 1px solid var(--border); }
.fw-tier-private { background: rgba(216,88,78,0.1); color: var(--color-primary); border: 1px solid rgba(216,88,78,0.22); }

/* ── Nudge card ────────────────────────────────────── */

.fw-nudge-card { background: var(--bg-surface); border: 1px dashed var(--border); border-radius: var(--radius-md); padding: 20px 16px; text-align: center; }
.fw-nudge-icon { font-size: 1.3rem; margin-bottom: 6px; }
.fw-nudge-title { font-size: 0.78rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.fw-nudge-sub { font-size: 0.68rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.4; }
.fw-nudge-btn { background: var(--color-primary); color: white; border: none; border-radius: var(--radius-full); padding: 7px 18px; font-size: 0.72rem; font-weight: 600; cursor: pointer; }

/* ── Mini calendar (legacy) ───────────────────────────── */

.fw-mini-cal { padding: 8px 10px; }
.fw-mini-cal--empty { padding: 16px 12px; font-size: 0.72rem; color: var(--text-faint); font-style: italic; }
.fw-cal-dow-row { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 3px; }
.fw-cal-dow { font-size: 0.58rem; text-align: center; color: var(--text-faint); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.fw-cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.fw-cal-day { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 4px 3px; border-radius: var(--radius-sm); font-size: 0.58rem; font-weight: 600; color: var(--text-muted); min-height: 40px; }
.fw-mini-cal--compact .fw-cal-day { min-height: 32px; padding: 3px 2px; }
.fw-cal-day--today { outline: 1.5px solid var(--color-primary); color: var(--color-primary); font-weight: 700; }
.fw-cal-day--future { color: var(--text-faint); opacity: 0.45; }
.fw-cal-dot-row { display: flex; gap: 2px; margin-top: 3px; flex-wrap: wrap; justify-content: center; }
.fw-cal-dot { width: 7px; height: 7px; border-radius: 50%; display: block; flex-shrink: 0; }
.fw-mini-cal--compact .fw-cal-dot { width: 5px; height: 5px; }

/* ── Legacy pinned footer / legend ────────────────────── */

.fw-pinned-footer { border-top: 1px solid var(--border); background: var(--bg-subtle); padding: 8px 12px; }
.fw-cal-legend { display: flex; flex-direction: row; flex-wrap: wrap; gap: 5px 14px; }
.fw-cal-legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 500; color: var(--text); }
.fw-cal-legend-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.fw-cal-signal-strip { padding: 6px 12px 10px; font-size: 0.68rem; font-style: italic; color: var(--text-faint); border-top: 1px solid var(--border-faint); }
.fw-signal-block { padding: 20px 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; }
.fw-signal-block--with-diary { border-bottom: 1px solid var(--border-faint); padding-bottom: 16px; }
.fw-signal-headline { font-size: 0.8rem; font-style: italic; color: var(--text-muted); line-height: 1.4; }
.fw-pinned-private { padding: 20px 16px; text-align: center; font-size: 0.72rem; font-style: italic; color: var(--text-faint); }

/* ── Lowkey calendar tier ─────────────────────────────── */

.fw-lowkey-header {
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.fw-lowkey-header-name {
  font-family: 'Caveat', cursive;
  font-size: 0.92rem;
  font-weight: 600;
  flex: 1;
}

.fw-lowkey-whisper {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  opacity: 0.7;
}

/* ── Cal-card inside pinned slot ──────────────────────── */

.fw-pinned-slot-inner .cal-card {
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.fw-pinned-slot-inner .cal-card:hover {
  transform: none;
  box-shadow: none;
}

/* ── Diary strip ───────────────────────────────────────── */

.fw-diary-strip {
  border-top: 1px solid var(--border-faint);
  padding: 10px 14px 12px;
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fw-diary-strip-header { display: flex; flex-direction: row; align-items: center; gap: 6px; }
.fw-diary-strip-label { font-family: 'Caveat', cursive; font-size: 0.85rem; font-weight: 600; color: var(--color-primary); }
.fw-diary-strip-date { font-size: 0.6rem; color: var(--text-faint); margin-left: auto; }
.fw-diary-strip-body { display: flex; flex-direction: row; gap: 10px; align-items: flex-start; }

.fw-diary-strip-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fw-diary-strip-photo { width: 44px; height: 44px; border-radius: 6px; object-fit: cover; flex-shrink: 0; border: 1.5px solid var(--border); }
.fw-diary-strip-footer { display: flex; justify-content: flex-end; }
.fw-diary-view-btn { font-size: 0.62rem; font-weight: 600; color: var(--text-faint); border: none; background: none; cursor: pointer; padding: 0; font-family: var(--font-base); }
.fw-diary-view-btn:hover { color: var(--color-primary); }
.fw-diary-strip-signal { font-size: 0.72rem; color: var(--text-muted); font-style: italic; line-height: 1.5; }
.fw-diary-strip-ghost { font-size: 0.78rem; color: var(--text-faint); font-style: italic; display: flex; align-items: center; gap: 5px; }

/* ── Pin button ────────────────────────────────────────── */

.fw-pin-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 4px;
  transition: opacity 0.15s;
}

.fw-pin-btn--pinned {
  opacity: 0.85;
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 10;
  font-size: 1.3rem;
}

.fw-pin-btn--pinned:hover { opacity: 1; }

.fw-pin-btn--unpinned {
  opacity: 0.25;
  flex-shrink: 0;
}

.fw-pin-btn--unpinned:hover { opacity: 0.7; }

/* ── Ghost card ───────────────────────────────────────── */

.fw-ghost-card {
  opacity: 0.58;
  border-color: transparent;
  box-shadow: 0 0 18px rgba(245,200,66,0.15), 0 4px 16px rgba(0,0,0,0.15);
}

.fw-ghost-quiet-zone {
  padding: 28px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 90px;
}

.fw-ghost-icon {
  font-size: 1.1rem;
  opacity: 0.45;
  line-height: 1;
}

.fw-ghost-quiet-text {
  font-size: 0.7rem;
  font-style: italic;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.6;
}

.fw-ghost-name {
  opacity: 0.55;
}

.fw-ghost-compact {
  opacity: 0.72;
  box-shadow: 0 0 12px rgba(245,200,66,0.12), 0 2px 8px rgba(0,0,0,0.1);
  border-color: transparent;
}

/* ── Mobile overrides ──────────────────────────────── */

@media (max-width: 768px) {
  .fw-people-layout { grid-template-columns: 1fr; }
  .fw-people-side { position: static; }
  .fw-pinned-grid { column-count: 1; }
  .fw-pinned-slot,
  .fw-pinned-slot-inner { max-width: 100%; }
  .fw-feed-layout { grid-template-columns: 1fr; }
  .fw-feed-sidebar { display: none; }
}
