.feed {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.post {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 14px 12px;
  box-shadow: var(--shadow);
}

.post__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.post__author-name {
  font-weight: 700;
  font-size: 13px;
  color: rgba(230,237,243,0.95);
}
.post__time {
  font-size: 12px;
  color: var(--muted);
  margin-left: 8px;
}

.post__title {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: 0.2px;
}
.post__text {
  margin: 0;
  color: rgba(230,237,243,0.92);
  line-height: 1.55;
  font-size: 14px;
  white-space: normal;
  word-break: break-word;
}

.post__footer {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}
.post__meta {
  font-size: 12px;
  color: var(--muted);
}
