body {
  font-family: "Inter", "Segoe UI", sans-serif;
}

.community-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem clamp(1.5rem, 5vw, 6rem);
  margin: clamp(1rem, 2vw, 2rem) auto 0;
  max-width: 1280px;
  background: linear-gradient(140deg, var(--accent-primary) 0%, var(--accent-secondary) 55%, var(--accent-tertiary) 100%);
  border-radius: 32px;
  color: var(--text-white);
  overflow: hidden;
}

.community-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.18), transparent 58%),
    radial-gradient(circle at 78% 32%, rgba(255, 255, 255, 0.12), transparent 62%);
  opacity: 0.9;
  z-index: -1;
}

.community-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
}

.community-hero__eyebrow {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.community-hero__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.community-hero__subtitle {
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0;
  opacity: 0.92;
}

.community-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.community-hero__stats div {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  display: grid;
  gap: 0.25rem;
  align-items: baseline;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
}

.community-hero__stats span {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.community-hero__stats small {
  font-size: 0.85rem;
  opacity: 0.75;
}

.community-hero__illustration {
  position: relative;
  width: clamp(120px, 22vw, 220px);
  aspect-ratio: 1;
  margin-left: auto;
  border-radius: 35% 65% 55% 45%;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 60px -35px rgba(0, 0, 0, 0.55);
}

.community-hero__illustration i {
  width: 48%;
  height: 48%;
}

.community-hero__glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 65%);
  filter: blur(18px);
}

.community {
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 3rem) clamp(1rem, 3vw, 2.5rem) 4rem;
  max-width: 1180px;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.community__composer {
  background: var(--surface-card);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 24px 40px -32px var(--shadow-primary);
  border: 1px solid var(--border-light);
}

.community-composer {
  display: grid;
  gap: 1.25rem;
}

.community-composer header h2 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--text-primary);
}

.community-composer header p {
  margin: 0.35rem 0 0;
  color: var(--text-secondary);
  max-width: 60ch;
}

.community-composer__field {
  display: grid;
  gap: 0.5rem;
}

.community-composer__field label {
  font-weight: 600;
  color: var(--text-primary);
}

.community-composer__field input,
.community-composer__field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  background: var(--bg-input);
  padding: 0.85rem 1rem;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  resize: vertical;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.community-composer__field input:focus,
.community-composer__field textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(63, 183, 180, 0.18);
}

.community-composer__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.community-composer__feedback {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.community-composer__feedback.is-error {
  color: var(--notify-error);
}

.community-composer__feedback.is-success {
  color: var(--notify-success);
}

.community-locked {
  text-align: center;
  display: grid;
  gap: 1rem;
}

.community-locked h2 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--text-primary);
}

.community-locked p {
  margin: 0 auto;
  max-width: 48ch;
  color: var(--text-secondary);
}

.community-locked__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.community__layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 1080px) {
  .community__layout {
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
    align-items: start;
  }
}

.community-feed {
  display: grid;
  gap: 1.75rem;
}

.community-feed__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.community-feed__sort {
  display: inline-flex;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 0.25rem;
  background: var(--surface-card);
}

.community-feed__sort-btn {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.community-feed__sort-btn.is-active {
  background: var(--accent-primary);
  color: #fff;
  box-shadow: 0 12px 24px -16px var(--shadow-secondary);
}

.community-feed__refresh {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--border-light);
  background: var(--surface-card);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.community-feed__refresh:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 12px 30px -20px var(--shadow-secondary);
}

.community-feed__search {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 0.35rem 0.6rem 0.35rem 0.85rem;
  background: var(--surface-card);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.community-feed__search input {
  border: none;
  background: transparent;
  font-size: 0.95rem;
  min-width: 180px;
  color: var(--text-primary);
}

.community-feed__search input:focus {
  outline: none;
}

.community-feed__search button {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 50%;
  transition: background 0.18s ease, color 0.18s ease;
}

.community-feed__search button:hover,
.community-feed__search button:focus-visible {
  color: var(--accent-primary);
  background: rgba(63, 183, 180, 0.12);
}

.community-feed__list {
  display: grid;
  gap: 1.4rem;
}

.community-placeholder {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px dashed var(--border-light);
  border-radius: 16px;
  background: var(--surface-ghost);
  color: var(--text-secondary);
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.community-placeholder__icon {
  width: 56px;
  aspect-ratio: 1;
  border-radius: 18px;
  background: rgba(63, 183, 180, 0.14);
  display: grid;
  place-items: center;
  color: var(--accent-primary);
}

.community-feed__empty,
.community-feed__loading {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.community-feed__loading {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
}

.community-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(63, 183, 180, 0.15);
  border-top-color: var(--accent-primary);
  animation: community-spin 0.8s linear infinite;
}

@keyframes community-spin {
  to {
    transform: rotate(360deg);
  }
}

.community-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--surface-card);
  border-radius: 18px;
  border: 1px solid var(--border-light);
  box-shadow: 0 24px 48px -34px var(--shadow-primary);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.community-card:hover,
.community-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--border-secondary);
  box-shadow: 0 26px 52px -30px var(--shadow-secondary);
}

.community-card__votes {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-width: 42px;
}

.community-card__body {
  display: grid;
  gap: 1rem;
}

.community-card__body header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.community-card__author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.community-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.community-card__author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--surface-card);
  box-shadow: 0 12px 24px -18px var(--shadow-secondary);
  flex-shrink: 0;
}

.community-card__author-name {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
}

.community-card__author-name:hover,
.community-card__author-name:focus-visible {
  text-decoration: underline;
}

.community-card__time {
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.community-card__top-replies {
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.community-card__top-replies-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.community-card__top-replies-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.community-top-reply {
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 0.75rem 0.95rem;
  background: var(--surface-ghost);
  display: grid;
  gap: 0.5rem;
}

.community-top-reply__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.community-top-reply__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 18px -14px var(--shadow-secondary);
}

.community-top-reply__info {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}

.community-top-reply__name {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}

.community-top-reply__name:hover,
.community-top-reply__name:focus-visible {
  text-decoration: underline;
}

.community-top-reply__score {
  font-weight: 600;
  color: var(--accent-primary);
  margin-left: auto;
}

.community-top-reply__excerpt {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.community-role-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(63, 183, 180, 0.16);
  color: var(--accent-primary);
  white-space: nowrap;
}

.community-role-tag[data-role="pilot"] {
  background: rgba(63, 183, 180, 0.16);
  color: var(--accent-primary);
}

.community-role-tag[data-role="passenger"] {
  background: rgba(255, 180, 94, 0.18);
  color: var(--accent-secondary);
}

.community-role-tag[data-role="admin"] {
  background: rgba(220, 82, 82, 0.18);
  color: var(--notify-error);
}

.community-role-tag[data-role="member"] {
  background: rgba(15, 27, 32, 0.12);
  color: var(--text-secondary);
}

.community-card__excerpt {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.55;
}

.community-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.community-card__open {
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: 12px;
  background: var(--accent-primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.community-card__open:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -24px var(--shadow-secondary);
}

.community-card__reply-count {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.community-vote {
  border: none;
  background: var(--surface-card);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.community-vote:hover {
  color: var(--accent-primary);
  background: rgba(63, 183, 180, 0.12);
}

.community-vote.is-active {
  color: var(--accent-primary);
  background: rgba(63, 183, 180, 0.2);
  box-shadow: 0 12px 18px -16px var(--shadow-secondary);
}

.community-feed__sort-btn:focus-visible,
.community-feed__refresh:focus-visible,
.community-card__open:focus-visible,
.community-vote:focus-visible,
.community-tags button:focus-visible,
.community-reply__respond:focus-visible,
.community-replies__cancel:focus-visible,
.community-dialog__close:focus-visible {
  outline: 3px solid rgba(63, 183, 180, 0.35);
  outline-offset: 2px;
}

.community-score {
  font-weight: 700;
  color: var(--text-primary);
}

.community-sidebar {
  display: grid;
  gap: 1.5rem;
}

.community-sidebar__card {
  background: var(--surface-card);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 18px 36px -34px var(--shadow-primary);
  display: grid;
  gap: 0.75rem;
}

.community-sidebar__card h2 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text-primary);
}

.community-sidebar__card ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--text-secondary);
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
}

.community-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.community-tags button {
  border: 1px solid var(--border-light);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--surface-ghost);
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.community-tags button:hover {
  transform: translateY(-1px);
  background: rgba(63, 183, 180, 0.12);
  border-color: var(--accent-primary);
  box-shadow: 0 12px 28px -22px var(--shadow-secondary);
}

.community-sidebar__card--cta {
  background: linear-gradient(135deg, var(--surface-card) 0%, var(--surface-overlay) 70%);
}

.community-dialog {
  overflow-y: hidden;
  border: none;
  border-radius: 24px;
  width: min(720px, calc(100vw - 2rem));
  padding: 0;
  box-shadow: 0 32px 60px -36px var(--shadow-primary);
  background: var(--surface-dialog);
}

.community-dialog::backdrop {
  background: rgba(12, 20, 22, 0.55);
  backdrop-filter: blur(3px);
}

.community-dialog.is-loading {
  opacity: 0.7;
}

.community-dialog__surface {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 85vh;
  overflow: hidden;
}

.community-dialog__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  gap: 1rem;
  flex-shrink: 0;
}

.community-dialog__header h2 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--text-primary);
}

.community-dialog__headline {
  display: grid;
  gap: 0.8rem;
}

.community-dialog__meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.community-dialog__author {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.community-dialog__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 28px -22px var(--shadow-secondary);
}

.community-dialog__author-name {
  display: inline-flex;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
}

.community-dialog__author-name:hover,
.community-dialog__author-name:focus-visible {
  text-decoration: underline;
}

.community-dialog__meta time {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.community-dialog__close {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.35rem;
  border-radius: 10px;
  transition: background 0.18s ease, color 0.18s ease;
}

.community-dialog__close:hover {
  color: var(--text-primary);
  background: rgba(63, 183, 180, 0.12);
}

.community-dialog__body {
  padding: 0 1.75rem 1.75rem;
  overflow-y: auto;
  display: grid;
  gap: 1.75rem;
  flex: 1 1 auto;
}

.community-thread {
  display: grid;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

.community-thread__content {
  display: grid;
  gap: 0.75rem;
}

.community-thread__content p {
  margin: 0;
}

.community-dialog__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.community-replies {
  display: grid;
  gap: 1rem;
}

.community-replies__list {
  display: grid;
  gap: 1rem;
}

.community-reply {
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  background: var(--surface-card);
  display: grid;
  gap: 0.9rem;
}

.community-reply__main {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.community-reply__avatar {
  flex-shrink: 0;
}

.community-reply__avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 20px -16px var(--shadow-secondary);
}

.community-reply__content {
  flex: 1;
  display: grid;
  gap: 0.65rem;
}

.community-reply__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.community-reply__ident {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.community-reply__author-name {
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
}

.community-reply__author-name:hover,
.community-reply__author-name:focus-visible {
  text-decoration: underline;
}

.community-reply__header time {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.community-reply__body {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  word-break: break-word;
}

.community-reply__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.community-reply__votes {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.community-reply__respond {
  border: none;
  background: transparent;
  color: var(--accent-primary);
  font-weight: 600;
  cursor: pointer;
  padding: 0.35rem 0.6rem;
  border-radius: 10px;
  transition: background 0.18s ease;
}

.community-reply__children {
  display: grid;
  gap: 0.75rem;
  margin-left: 3.25rem;
}

.community-reply__respond:hover {
  background: rgba(63, 183, 180, 0.12);
}

.community-reply__children {
  margin-left: 1.5rem;
  display: grid;
  gap: 0.75rem;
  border-left: 2px solid rgba(63, 183, 180, 0.18);
  padding-left: 1rem;
}

.community-replies__empty,
.community-replies__error {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.community-replies__error {
  color: var(--notify-error);
}

.community-replies__form {
  display: grid;
  gap: 0.75rem;
  background: var(--surface-ghost);
  border-radius: 16px;
  padding: 1rem 1.25rem 1.25rem;
  border: 1px solid var(--border-light);
}

.community-replies__form textarea {
  width: 100%;
  min-height: 120px;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  background: var(--surface-card);
  padding: 0.75rem 1rem;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  resize: vertical;
  color: var(--text-primary);
}

.community-replies__form textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(63, 183, 180, 0.18);
}

.community-replies__form-target {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.community-replies__cancel {
  border: none;
  background: transparent;
  color: var(--accent-primary);
  cursor: pointer;
  font-weight: 600;
}

.community-replies__form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.community-replies__form-feedback {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.community-replies__form-feedback.is-error {
  color: var(--notify-error);
}

.community-replies__form-feedback.is-success {
  color: var(--notify-success);
}

.community-replies__locked {
  border: 1px dashed var(--border-light);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  display: grid;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.community-vote.is-loading,
.community-card.is-loading,
.community-reply.is-loading {
  pointer-events: none;
  opacity: 0.6;
}

.community-composer.is-loading,
.community-replies__form.is-loading {
  pointer-events: none;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .community-hero {
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .community-hero__illustration {
    margin: 0 auto;
  }

  .community-composer__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .community-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .community-card__votes {
    flex-direction: row;
    justify-content: flex-start;
  }

  .community-card__author-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .community-card__time {
    align-self: flex-start;
  }

  .community-dialog__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .community-feed__search {
    width: 100%;
  }

  .community-feed__search input {
    min-width: 0;
    flex: 1 1 auto;
  }

  .community-reply__main {
    flex-direction: column;
  }

  .community-reply__children {
    margin-left: 1.5rem;
  }

  .community-dialog__actions {
    justify-content: flex-start;
  }
}
