:root {
  --zk26-primary: #403076;
  --zk26-secondary: #221746;
  --zk26-tertiary: #8c52ff;
  --zk26-border: rgba(140, 82, 255, 0.34);
  --zk26-border-strong: #544285;
  --zk26-highlight: #f33059;
  --zk26-glass: rgba(84, 66, 133, 0.75);
  --zk26-glass-dark: rgba(34, 23, 70, 0.86);
  --zk26-surface: rgba(64, 48, 118, 0.72);
  --zk26-deep: #070313;
  --zk26-text: #f5f1ff;
  --zk26-muted: #bfb3e8;
  --zk26-soft: rgba(255, 255, 255, 0.08);
  --zk26-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  --zk26-radius: 22px;
  --zk26-radius-sm: 14px;
}

body.zk26-newsfeed-active,
body:has(.zk26-newsfeed) {
  background:
    radial-gradient(circle at 18% 10%, rgba(140, 82, 255, 0.22), transparent 36rem),
    radial-gradient(circle at 90% 20%, rgba(243, 48, 89, 0.16), transparent 30rem),
    linear-gradient(180deg, #05020f 0%, #09031a 45%, #05020f 100%) !important;
}

.zk26-newsfeed,
.zk26-newsfeed * {
  box-sizing: border-box;
}

.zk26-newsfeed {
  width: min(1880px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 52px;
  color: var(--zk26-text);
  font-family: inherit;
}

.zk26-newsfeed a {
  color: inherit;
  text-decoration: none;
}

.zk26-newsfeed img {
  max-width: 100%;
  height: auto;
}

.zk26-top-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 22px;
  padding: 22px 26px;
  border: 1px solid var(--zk26-border);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(64, 48, 118, 0.68), rgba(34, 23, 70, 0.78));
  box-shadow: var(--zk26-shadow);
  position: relative;
  overflow: hidden;
}

.zk26-top-intro::before {
  content: "";
  position: absolute;
  inset: -60% -20% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(243, 48, 89, 0.25), transparent 70%);
  pointer-events: none;
}

.zk26-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.zk26-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--zk26-highlight);
  box-shadow: 0 0 18px var(--zk26-highlight);
}

.zk26-top-intro h1 {
  margin: 6px 0 4px;
  font-size: clamp(26px, 2.3vw, 44px);
  line-height: 1.02;
  color: #fff;
  letter-spacing: -0.04em;
}

.zk26-top-intro p {
  margin: 0;
  color: var(--zk26-muted);
  font-weight: 600;
}

.zk26-top-actions,
.zk26-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.zk26-btn,
.zk26-newsfeed button.zk26-btn,
.zk26-mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.zk26-btn:hover,
.zk26-mini-btn:hover,
.zk26-activity-actions a:hover,
.zk26-activity-actions button:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.13);
}

.zk26-btn-primary,
.zk26-newsfeed button.zk26-btn-primary {
  background: linear-gradient(135deg, var(--zk26-tertiary), var(--zk26-highlight));
  box-shadow: 0 14px 34px rgba(140,82,255,0.28);
  border-color: rgba(255,255,255,0.18);
}

.zk26-mini-btn {
  min-height: 30px;
  padding: 0 10px;
  font-size: 11px;
}

.zk26-grid {
  display: grid;
  grid-template-columns: 280px minmax(240px, 300px) minmax(560px, 760px) minmax(260px, 320px);
  gap: 16px;
  align-items: start;
}

.zk26-grid.no-left-profile {
  grid-template-columns: minmax(240px, 300px) minmax(560px, 780px) minmax(260px, 320px);
}

.zk26-grid.no-zers-panel {
  grid-template-columns: 280px minmax(640px, 850px) minmax(260px, 320px);
}

.zk26-grid.no-right-widgets {
  grid-template-columns: 280px minmax(240px, 300px) minmax(620px, 880px);
}

.zk26-grid.no-left-profile.no-zers-panel.no-right-widgets {
  display: block;
  max-width: 840px;
  margin: 0 auto;
}

.zk26-widget,
.zk26-activity-card {
  border: 1px solid var(--zk26-border);
  border-radius: var(--zk26-radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    var(--zk26-glass);
  box-shadow: var(--zk26-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.zk26-left-rail,
.zk26-zers-rail,
.zk26-right-rail {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zk26-profile-card {
  overflow: hidden;
  min-height: 740px;
}

.zk26-card-cover {
  min-height: 118px;
  background-size: cover;
  background-position: center;
  background-color: var(--zk26-secondary);
  position: relative;
}

.zk26-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(64,48,118,0.78));
}

.zk26-avatar-stage {
  min-height: 310px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 18px 8px;
  margin-top: -82px;
  position: relative;
  z-index: 2;
}

.zk26-full-avatar {
  width: min(220px, 88%);
  max-height: 400px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.45));
}

.zk26-profile-inner {
  padding: 18px 22px 24px;
  text-align: center;
}

.zk26-profile-inner h2,
.zk26-widget h2,
.zk26-composer h2 {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.zk26-role-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 8px 0 2px;
}

.zk26-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.11);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.zk26-badge-founder {
  background: linear-gradient(135deg, var(--zk26-highlight), #ff7a59);
}

.zk26-verified {
  color: #7f75ff;
  filter: drop-shadow(0 0 8px rgba(140, 82, 255, 0.8));
}

.zk26-handle,
.zk26-widget p,
.zk26-empty {
  color: var(--zk26-muted);
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.zk26-wallet-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 18px 0;
}

.zk26-wallet-row span {
  padding: 10px 6px;
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.zk26-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.zk26-stat-row span {
  display: grid;
  gap: 3px;
}

.zk26-stat-row strong {
  color: #fff;
  font-size: 15px;
}

.zk26-stat-row small {
  color: var(--zk26-muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.zk26-quick-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  text-align: left;
}

.zk26-quick-links a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.055);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.zk26-quick-links a:hover {
  background: rgba(140,82,255,0.25);
  transform: translateX(2px);
}

.zk26-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 22px 22px 12px;
}

.zk26-widget-head > a {
  color: var(--zk26-muted);
  font-size: 12px;
  font-weight: 800;
}

.zk26-tabs {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
}

.zk26-tabs button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--zk26-muted);
  border-radius: 999px;
  padding: 7px 9px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.zk26-tabs button.is-active {
  background: linear-gradient(135deg, var(--zk26-tertiary), rgba(243,48,89,0.7));
  color: #fff;
}

.zk26-tab-panel {
  display: none;
  padding: 4px 14px 16px;
}

.zk26-tab-panel.is-active {
  display: block;
}

.zk26-member-list,
.zk26-group-list,
.zk26-live-list,
.zk26-thread-list,
.zk26-alert-list {
  display: grid;
  gap: 10px;
}

.zk26-member-chip,
.zk26-group-row,
.zk26-live-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.07);
}

.zk26-member-avatar,
.zk26-group-avatar {
  position: relative;
  display: block;
}

.zk26-member-avatar img,
.zk26-group-avatar img,
.zk26-activity-avatar img,
.zk26-composer-head img {
  border-radius: 50%;
  border: 2px solid rgba(140,82,255,0.65);
  box-shadow: 0 8px 24px rgba(0,0,0,0.26);
}

.zk26-status-dot {
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #79718f;
  border: 2px solid var(--zk26-primary);
}

.zk26-status-dot.is-online,
.zk26-live-dot {
  background: #40d96b;
  box-shadow: 0 0 16px rgba(64,217,107,0.68);
}

.zk26-member-info,
.zk26-group-row div,
.zk26-live-row div {
  min-width: 0;
}

.zk26-member-info a,
.zk26-group-row strong,
.zk26-live-row strong,
.zk26-thread-list strong,
.zk26-alert-list strong {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zk26-member-info small,
.zk26-group-row small,
.zk26-live-row small,
.zk26-thread-list small,
.zk26-alert-list small {
  display: block;
  margin-top: 3px;
  color: var(--zk26-muted);
  font-size: 11px;
  line-height: 1.25;
}

.zk26-member-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(140,82,255,0.24);
  color: #fff;
  font-weight: 900;
}

.zk26-composer {
  overflow: hidden;
  margin-bottom: 14px;
}

.zk26-composer-head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(140,82,255,0.15), rgba(243,48,89,0.08));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.zk26-composer-head p {
  margin: 4px 0 0;
}

.zk26-composer-tools {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 18px 0;
}

.zk26-composer-tools span {
  white-space: nowrap;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.075);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.zk26-bp-post-form {
  padding: 14px 18px 18px;
}

.zk26-bp-post-form form,
.zk26-bp-post-form #whats-new-form {
  margin: 0 !important;
}

.zk26-bp-post-form textarea,
.zk26-bp-post-form input[type="text"] {
  width: 100% !important;
  min-height: 120px;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  background: rgba(10, 5, 28, 0.56) !important;
  color: #fff !important;
  padding: 16px !important;
  box-shadow: inset 0 0 0 1px rgba(140,82,255,0.08);
}

.zk26-bp-post-form textarea::placeholder,
.zk26-bp-post-form input::placeholder {
  color: rgba(245,241,255,0.52);
}

.zk26-bp-post-form input[type="submit"],
.zk26-bp-post-form button[type="submit"] {
  border: 0 !important;
  border-radius: 999px !important;
  min-height: 42px !important;
  padding: 0 22px !important;
  color: #fff !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, var(--zk26-tertiary), var(--zk26-highlight)) !important;
  box-shadow: 0 14px 34px rgba(140,82,255,0.22) !important;
}

.zk26-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  margin-bottom: 14px;
}

.zk26-filter-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  min-width: 0;
}

.zk26-filter-tabs a {
  position: relative;
  padding: 10px 9px;
  color: var(--zk26-muted);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.zk26-filter-tabs a.is-active {
  color: #fff;
}

.zk26-filter-tabs a.is-active::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--zk26-highlight);
  box-shadow: 0 0 16px rgba(243,48,89,0.48);
}

.zk26-filter-select {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--zk26-muted);
  font-size: 11px;
  font-weight: 900;
}

.zk26-filter-select select {
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10,5,28,0.48);
  color: #fff;
  padding: 0 12px;
  font-weight: 900;
}

.zk26-activity-stream {
  display: grid;
  gap: 14px;
}

.zk26-activity-card {
  padding: 0;
  overflow: hidden;
}

.zk26-activity-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 18px 20px 14px;
  background: linear-gradient(135deg, rgba(140,82,255,0.12), rgba(255,255,255,0.035));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.zk26-activity-meta {
  min-width: 0;
}

.zk26-activity-action,
.zk26-activity-action a {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.zk26-activity-action .activity-time-since {
  display: none;
}

.zk26-activity-time {
  display: inline-block;
  margin-top: 3px;
  color: var(--zk26-muted);
  font-size: 11px;
  font-weight: 800;
}

.zk26-activity-menu button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.06);
  color: var(--zk26-muted);
  cursor: pointer;
}

.zk26-activity-content {
  padding: 20px;
  color: #f7f3ff;
  font-size: 14px;
  line-height: 1.65;
}

.zk26-activity-content p:first-child {
  margin-top: 0;
}

.zk26-activity-content p:last-child {
  margin-bottom: 0;
}

.zk26-activity-content img,
.zk26-activity-content video,
.zk26-activity-content iframe {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}

.zk26-reaction-strip {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 0 20px 14px;
}

.zk26-reaction-strip span {
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: var(--zk26-muted);
  font-size: 11px;
  font-weight: 900;
}

.zk26-activity-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 20px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.12);
}

.zk26-activity-actions a,
.zk26-activity-actions button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.zk26-reblog-trigger {
  background: linear-gradient(135deg, rgba(140,82,255,0.32), rgba(243,48,89,0.25)) !important;
}

.zk26-report-link {
  margin-left: auto;
  color: var(--zk26-muted) !important;
}

.zk26-reblog-embed {
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  overflow: hidden;
}

.zk26-reblog-author {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.zk26-reblog-author img {
  border-radius: 50%;
}

.zk26-reblog-author strong {
  color: #fff;
}

.zk26-reblog-author a {
  margin-left: auto;
  color: var(--zk26-muted);
  font-size: 11px;
  font-weight: 900;
}

.zk26-reblog-body {
  padding: 14px;
  color: var(--zk26-muted);
}

.zk26-groups-widget,
.zk26-ztv-widget,
.zk26-forum-widget,
.zk26-alert-widget,
.zk26-daily-widget,
.zk26-zers-widget {
  overflow: hidden;
}

.zk26-group-list,
.zk26-live-list,
.zk26-thread-list,
.zk26-alert-list {
  padding: 4px 14px 16px;
}

.zk26-live-row {
  grid-template-columns: 18px minmax(0, 1fr) auto;
}

.zk26-live-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.zk26-live-row span {
  display: inline-block;
  margin-top: 4px;
  color: #ff92aa;
  font-size: 11px;
  font-weight: 900;
}

.zk26-thread-list a,
.zk26-alert-list a {
  display: block;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.07);
}

.zk26-daily-widget {
  text-align: center;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.zk26-daily-widget::before {
  content: "";
  position: absolute;
  inset: auto -20% -50% -20%;
  height: 150px;
  background: radial-gradient(circle, rgba(140,82,255,0.26), transparent 65%);
  pointer-events: none;
}

.zk26-daily-glow {
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--zk26-tertiary), var(--zk26-highlight));
  box-shadow: 0 18px 40px rgba(140,82,255,0.33);
  font-size: 28px;
}

.zk26-empty-state {
  padding: 26px;
  text-align: center;
}

.zk26-pagination {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.zk26-pagination .page-numbers,
.zk26-pagination a,
.zk26-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  margin: 0 3px;
  border-radius: 12px;
  background: rgba(255,255,255,0.075);
  color: #fff;
  font-weight: 900;
}

.zk26-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.zk26-modal.is-open {
  display: flex;
}

.zk26-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 1, 12, 0.78);
  backdrop-filter: blur(8px);
}

.zk26-modal-panel {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--zk26-border);
  background: linear-gradient(180deg, rgba(64,48,118,0.98), rgba(34,23,70,0.98));
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  color: #fff;
}

.zk26-modal-panel h2 {
  margin: 0 0 8px;
  color: #fff;
}

.zk26-modal-panel p {
  color: var(--zk26-muted);
  margin: 0 0 14px;
}

.zk26-modal-panel textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(0,0,0,0.22);
  color: #fff;
  padding: 14px;
  resize: vertical;
}

.zk26-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.zk26-modal-actions {
  justify-content: flex-end;
  margin-top: 16px;
}

.zk26-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000000;
  max-width: 320px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--zk26-border);
  background: linear-gradient(135deg, rgba(64,48,118,0.96), rgba(34,23,70,0.96));
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,0.42);
  font-weight: 800;
}

@media (max-width: 1600px) {
  .zk26-grid {
    grid-template-columns: 260px minmax(220px, 270px) minmax(520px, 1fr) minmax(250px, 290px);
  }
}

@media (max-width: 1350px) {
  .zk26-grid {
    grid-template-columns: 260px minmax(520px, 1fr) minmax(250px, 300px);
  }
  .zk26-zers-rail {
    position: static;
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .zk26-zers-widget .zk26-tab-panel.is-active .zk26-member-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1050px) {
  .zk26-top-intro {
    align-items: flex-start;
    flex-direction: column;
  }
  .zk26-grid,
  .zk26-grid.no-left-profile,
  .zk26-grid.no-zers-panel,
  .zk26-grid.no-right-widgets {
    grid-template-columns: 1fr;
  }
  .zk26-left-rail,
  .zk26-zers-rail,
  .zk26-right-rail {
    position: static;
  }
  .zk26-profile-card {
    min-height: unset;
  }
  .zk26-avatar-stage {
    min-height: 260px;
  }
  .zk26-zers-widget .zk26-tab-panel.is-active .zk26-member-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .zk26-newsfeed {
    width: min(100vw - 18px, 100%);
    padding-top: 12px;
  }
  .zk26-top-intro,
  .zk26-widget,
  .zk26-activity-card {
    border-radius: 18px;
  }
  .zk26-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .zk26-filter-select {
    justify-content: space-between;
  }
  .zk26-filter-select select {
    flex: 1;
  }
  .zk26-activity-head {
    grid-template-columns: 50px minmax(0, 1fr) auto;
    padding: 16px;
  }
  .zk26-activity-content,
  .zk26-activity-actions {
    padding-left: 16px;
    padding-right: 16px;
  }
  .zk26-zers-widget .zk26-tab-panel.is-active .zk26-member-list {
    grid-template-columns: 1fr;
  }
  .zk26-wallet-row,
  .zk26-stat-row {
    grid-template-columns: 1fr;
  }
}
