.posts-feed {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  text-align: left;
}

.posts-header {
  padding: 0 2px;
}

.posts-header h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.posts-header p {
  margin: 6px 0 0;
  color: #bfdbfe;
  font-size: 13px;
  line-height: 1.4;
}

.post-card,
.posts-empty {
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.post-card {
  padding: 14px;
}

.post-banner {
  min-height: 104px;
  margin-bottom: 14px;
  border-radius: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.34), rgba(236, 72, 153, 0.18)),
    rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.post-banner-emoji {
  font-size: 44px;
  line-height: 1;
}

.post-banner-label {
  color: #eff6ff;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
}

.post-meta span + span::before {
  content: "•";
  margin-right: 8px;
  color: rgba(219, 234, 254, 0.46);
}

.post-title {
  margin: 9px 0 8px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.24;
}

.post-body {
  margin: 0;
  color: #dbeafe;
  font-size: 14px;
  line-height: 1.52;
}

.post-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}

.post-reactions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-reaction {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #e0f2fe;
  font-size: 13px;
  font-weight: 800;
}

.posts-empty {
  padding: 22px 16px;
  text-align: center;
}

.posts-empty-icon {
  color: #bfdbfe;
  font-size: 28px;
  line-height: 1;
}

.posts-empty h3 {
  margin: 10px 0 6px;
  font-size: 18px;
}

.posts-empty p {
  margin: 0 auto;
  max-width: 320px;
  color: #bfdbfe;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 420px) {
  .post-banner {
    min-height: 92px;
  }

  .post-title {
    font-size: 18px;
  }
}
