:root {
  color-scheme: dark;
  --bg: #080a0d;
  --panel: #0d1015;
  --panel-2: #11161d;
  --panel-3: #171d26;
  --hover: #1d2530;
  --text: #eef2f6;
  --muted: #98a3af;
  --dim: #68727e;
  --line: rgba(238, 242, 246, 0.09);
  --line-strong: rgba(238, 242, 246, 0.15);
  --accent: #d8e0e8;
  --blue: #7ea7ff;
  --green: #80d6a4;
  --red: #ff7280;
  --yellow: #dfc978;
  --radius: 18px;
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
  font-family: Inter, ui-rounded, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  min-height: 100svh;
  margin: 0;
  background:
    radial-gradient(circle at 12% -8%, rgba(126, 167, 255, 0.11), transparent 34rem),
    radial-gradient(circle at 90% 8%, rgba(128, 214, 164, 0.07), transparent 30rem),
    linear-gradient(180deg, #0b0e12 0%, #080a0d 58%, #060708 100%);
  color: var(--text);
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 42px 42px;
}

.shell {
  min-height: 100svh;
}

.app {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 330px;
  background: rgba(8, 10, 13, 0.82);
}

.sidebar,
.context {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden auto;
  border-color: var(--line);
  scrollbar-width: none;
}

.sidebar::-webkit-scrollbar,
.context::-webkit-scrollbar,
.screen::-webkit-scrollbar {
  display: none;
}

.sidebar {
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  background: rgba(10, 13, 17, 0.88);
}

.context {
  padding: 18px 16px;
  border-left: 1px solid var(--line);
  background: rgba(10, 13, 17, 0.7);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 18px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #080a0d;
  font-size: 18px;
  font-weight: 950;
  background: linear-gradient(135deg, #f0f4f8, #7d8793);
}

.brand h1 {
  margin: 0;
  font-size: 19px;
  letter-spacing: 0;
}

.brand p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.nav-section {
  display: grid;
  gap: 4px;
}

.nav-button,
.mobile-tab {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-button {
  min-height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 12px;
  color: var(--muted);
  text-align: left;
  font-weight: 760;
}

.nav-button svg,
.mobile-tab svg {
  width: 20px;
  height: 20px;
}

.nav-button.active,
.nav-button:hover {
  color: var(--text);
  background: var(--hover);
}

.compose-card,
.card,
.setting,
.device,
.channel-card,
.info-card,
.sticker-builder,
.composer,
.mini-create,
.context-card,
.search-box,
.privacy-banner,
.chat-composer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.compose-card {
  margin-top: 18px;
  padding: 14px;
}

.compose-card strong,
.card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.compose-card p,
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.38;
}

.side-profile {
  margin-top: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.025);
}

.side-profile strong,
.side-profile span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.side-profile span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.side-actions {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.primary-btn,
.ghost-btn,
.subscribe,
.send-btn {
  border: 0;
  border-radius: 13px;
  min-height: 36px;
  padding: 0 13px;
  cursor: pointer;
  font-weight: 850;
}

.primary-btn:disabled,
.send-btn:disabled {
  cursor: progress;
  opacity: 0.6;
}

.primary-btn,
.subscribe,
.send-btn {
  color: #080a0d;
  background: var(--accent);
}

.ghost-btn {
  color: var(--text);
  background: var(--panel-3);
}

.clean-input,
.composer textarea,
.composer input,
.composer select,
.mini-create input,
.chat-composer input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 10, 13, 0.62);
  color: var(--text);
  outline: 0;
}

.clean-input,
.composer input,
.composer select,
.mini-create input,
.chat-composer input {
  min-height: 38px;
  padding: 0 12px;
}

.textarea,
.composer textarea {
  resize: vertical;
  padding: 12px;
  line-height: 1.45;
}

.composer,
.profile-form {
  padding: 12px;
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.form-row,
.toolbar-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 0.42fr) auto;
  gap: 8px;
  align-items: center;
}

.toolbar-row {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 10px;
}

.wide-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 8px;
  margin-bottom: 10px;
}

.empty-state {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 22px;
  color: var(--muted);
  text-align: center;
}

.stack-list {
  display: grid;
  gap: 10px;
}

.compact-card {
  padding: 13px;
}

.active-action {
  color: var(--accent) !important;
}

.screen {
  min-width: 0;
  height: 100svh;
  overflow: hidden auto;
  padding: 18px clamp(18px, 3vw, 40px) 42px;
  scrollbar-width: none;
}

.content-column {
  width: min(100%, 760px);
  margin: 0 auto;
}

.wide-column {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin: 4px 0 16px;
}

.title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  letter-spacing: 0;
}

.subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.muted {
  color: var(--muted);
}

.segmented,
.filter-row,
.chat-filter {
  display: flex;
  gap: 5px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(20, 25, 33, 0.68);
}

.segmented button,
.filter-row button,
.chat-filter button {
  border: 0;
  border-radius: 12px;
  min-height: 32px;
  padding: 0 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 820;
}

.segmented button.active,
.filter-row button.active,
.chat-filter button.active {
  color: var(--text);
  background: rgba(238, 242, 246, 0.1);
}

.privacy-banner {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 13px 14px;
}

.privacy-badge,
.mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--panel-3);
}

.privacy-banner h3 {
  margin: 0;
  font-size: 15px;
}

.privacy-banner p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.feed {
  border-top: 1px solid var(--line);
}

.post {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.post-head,
.row,
.profile-head,
.chat-head,
.action-row,
.suggestion-row {
  display: flex;
  align-items: center;
  gap: 11px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  color: #080a0d;
  font-weight: 950;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.75), transparent 20%),
    linear-gradient(135deg, #d8e0e8, #6c7885);
}

.avatar.small {
  width: 40px;
  height: 40px;
  font-size: 12px;
}

.avatar.large {
  width: 86px;
  height: 86px;
  font-size: 25px;
}

.post-author {
  min-width: 0;
  flex: 1;
}

.post h3,
.channel-card h3,
.info-card h3,
.chat-item h3,
.context h3 {
  margin: 0;
  font-size: 15px;
}

.post p,
.channel-card p,
.info-card p,
.chat-item p {
  margin: 4px 0 0;
  color: rgba(238, 242, 246, 0.84);
  font-size: 14px;
  line-height: 1.42;
}

.post-copy {
  margin: 13px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.48;
}

.media {
  min-height: 280px;
  margin-top: 13px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.48)),
    var(--thumb, linear-gradient(135deg, #232a35, #56606b));
  display: grid;
  align-items: end;
  padding: 13px;
}

.media.compact {
  min-height: 160px;
}

.media span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.44);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 820;
  backdrop-filter: blur(12px);
}

.action-row {
  justify-content: space-between;
  margin-top: 12px;
  color: var(--muted);
}

.action-row button,
.icon-btn {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.action-row button {
  min-height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  font-weight: 820;
}

.action-row button:hover,
.icon-btn:hover {
  background: rgba(238, 242, 246, 0.08);
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 4px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(238, 242, 246, 0.055);
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
}

.chip.active {
  color: var(--text);
  background: rgba(216, 224, 232, 0.13);
}

.search-box {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  margin-bottom: 16px;
}

.search-box input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 11px;
  font-size: 14px;
  font-weight: 900;
}

.section-head button {
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 12px;
}

.discovery-grid,
.profile-grid,
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.people-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.person {
  min-width: 0;
  text-align: center;
}

.person .avatar {
  margin: 0 auto 7px;
}

.person strong,
.person span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.person strong {
  font-size: 12px;
}

.person span {
  color: var(--muted);
  font-size: 10px;
}

.channel-card,
.info-card,
.setting,
.device {
  padding: 13px;
}

.channel-card .avatar {
  width: 42px;
  height: 42px;
  margin-bottom: 9px;
}

.subscribe {
  width: 100%;
  margin-top: 11px;
}

.sticker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.sticker-tile {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #080a0d;
  background: linear-gradient(135deg, #d8e0e8, #7d8793);
  font-size: 22px;
  font-weight: 950;
}

.chat-layout {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 18px;
  height: calc(100svh - 36px);
}

.chat-list-panel,
.dialog-panel {
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(13, 16, 21, 0.74);
}

.chat-list-panel {
  padding: 12px;
  overflow-y: auto;
}

.dialog-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.chat-filter {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: visible;
  margin-bottom: 10px;
}

.chat-filter button {
  min-width: 0;
  padding: 0 6px;
  font-size: 12px;
}

.chat-item {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 10px 8px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 10px;
  align-items: center;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.chat-item:hover,
.chat-item.active {
  background: rgba(238, 242, 246, 0.065);
}

.badge {
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #080a0d;
  background: var(--accent);
  font-size: 11px;
  font-weight: 950;
}

.time {
  color: var(--muted);
  font-size: 12px;
}

.chat-head {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}

.chat-head h2,
.profile-head h2 {
  margin: 0;
  font-size: 18px;
}

.back {
  display: none;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 25px;
  cursor: pointer;
}

.spacer {
  flex: 1;
}

.dialog {
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.bubble {
  max-width: min(74%, 520px);
  padding: 10px 12px;
  border-radius: 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.32;
}

.bubble.in {
  align-self: flex-start;
  background: var(--panel-3);
  border-bottom-left-radius: 6px;
}

.bubble.out {
  align-self: flex-end;
  background: #2c3542;
  border-bottom-right-radius: 6px;
}

.video-bubble {
  align-self: flex-start;
  width: 240px;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.56)),
    linear-gradient(135deg, #1d2732, #626d78);
  font-weight: 900;
}

.sticker {
  align-self: flex-end;
  width: 126px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 28px;
  color: #080a0d;
  background: linear-gradient(135deg, #d9e1e9, #87929f);
  font-size: 17px;
  font-weight: 950;
  text-align: center;
  transform: rotate(-4deg);
}

.chat-composer {
  margin: 12px;
  padding: 8px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 8px;
}

.chat-composer input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: 0;
}

.profile-head {
  margin: 6px 0 18px;
}

.profile-head p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.35;
}

.edit {
  margin-left: auto;
}

.setting,
.device {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  color: var(--text);
  font-size: 14px;
}

.device {
  align-items: flex-start;
  min-height: 74px;
}

.device span,
.setting span {
  color: var(--muted);
  font-size: 12px;
}

.context-section {
  margin-bottom: 16px;
}

.context-section h2 {
  margin: 0 0 10px;
  font-size: 16px;
}

.context .card {
  padding: 13px;
  margin-bottom: 10px;
}

.slider-row {
  margin-top: 12px;
}

.slider-row label {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.meter {
  height: 7px;
  margin-top: 7px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--panel-3);
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--blue));
}

.mini-list {
  display: grid;
  gap: 8px;
}

.mini-list .row {
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.mini-list .row:last-child {
  border-bottom: 0;
}

.tabbar {
  display: none;
}

@media (max-width: 1120px) {
  .app {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .context {
    display: none;
  }

  .brand-text,
  .nav-button span,
  .compose-card {
    display: none;
  }

  .brand {
    justify-content: center;
    padding-inline: 0;
  }

  .nav-button {
    justify-content: center;
    padding: 0;
  }
}

@media (max-width: 720px) {
  .app {
    min-height: 100svh;
    display: block;
  }

  .sidebar,
  .context {
    display: none;
  }

  .screen {
    height: 100svh;
    padding: 18px 16px 94px;
  }

  .content-column,
  .wide-column {
    width: 100%;
  }

  .page-head {
    display: block;
  }

  .segmented {
    margin-top: 12px;
    width: 100%;
  }

  .segmented button {
    flex: 1;
  }

  .privacy-banner {
    grid-template-columns: 38px 1fr;
  }

  .privacy-banner .ghost-btn {
    grid-column: 1 / -1;
  }

  .media {
    min-height: 220px;
  }

  .discovery-grid,
  .profile-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .people-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .chat-layout {
    display: block;
    width: 100%;
    height: auto;
  }

  .chat-list-panel,
  .dialog-panel {
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .dialog-panel {
    min-height: calc(100svh - 112px);
  }

  .back {
    display: grid;
  }

  .tabbar {
    position: fixed;
    z-index: 5;
    left: 14px;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    min-height: 58px;
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    border: 1px solid var(--line-strong);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(31, 36, 45, 0.84), rgba(17, 20, 26, 0.84));
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px) saturate(1.25);
  }

  .mobile-tab {
    min-width: 0;
    border-radius: 22px;
    display: grid;
    place-items: center;
    gap: 2px;
    padding: 6px 2px 5px;
    color: var(--muted);
  }

  .mobile-tab.active {
    color: var(--accent);
    background: rgba(238, 242, 246, 0.09);
  }

.mobile-tab span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 760;
  }
}

.comments {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.comment {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.comment strong {
  margin-right: 7px;
  font-size: 12px;
}

.comment span {
  color: var(--muted);
  font-size: 13px;
}

.comment-form,
.mini-create {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.mini-create {
  padding: 8px;
  margin-bottom: 10px;
}

.panel-head {
  margin-bottom: 10px;
}

.chat-list {
  display: grid;
  gap: 3px;
}

.chat-item span {
  min-width: 0;
}

.chat-item strong,
.chat-item small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-item em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.chat-item small {
  margin-top: 3px;
  color: var(--muted);
}

.time {
  display: grid;
  justify-items: end;
  gap: 5px;
}

.sticker-mini {
  min-width: 0;
}

.sticker-mini strong {
  display: block;
  margin-top: 6px;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  text-align: center;
}

.context-section {
  display: grid;
  gap: 12px;
}

.context-section h2 {
  margin: 6px 0 2px;
  font-size: 18px;
}

.context-form {
  display: grid;
  gap: 10px;
}

.slider-row,
.switch-row,
.context-card,
.setting {
  display: grid;
  gap: 7px;
}

.slider-row {
  grid-template-columns: 1fr;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.slider-row span,
.switch-row span,
.setting span {
  color: var(--muted);
  font-size: 13px;
}

.slider-row b,
.setting strong {
  font-size: 13px;
}

.slider-row input {
  width: 100%;
  accent-color: var(--accent);
}

.switch-row {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.028);
}

.switch-row input {
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
}

.context-card {
  padding: 14px;
  border-radius: var(--radius);
  align-items: start;
}

.context-card strong,
.context-card span {
  display: block;
}

.context-card span {
  color: var(--muted);
  font-size: 13px;
}

.context-wide {
  width: 100%;
}

.profile-form {
  grid-template-columns: 1fr 1fr;
}

.profile-form textarea,
.profile-form button {
  grid-column: 1 / -1;
}

@media (max-width: 720px) {
  .form-row,
  .toolbar-row,
  .wide-search,
  .profile-form {
    grid-template-columns: 1fr;
  }

  .comments {
    padding-bottom: 4px;
  }

  .context-section {
    display: none;
  }
}
