/**
 * 帖子/新闻独立列表页布局（与首页 section-wrap 宽度一致）
 */

.feed-list-page {
  padding: 2rem 0 3rem;
}

.feed-list-page .section-wrap.feed-list-stage {
  display: block;
  width: 90%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.14);
  height: auto;
  min-height: 0;
  max-height: none;
  overflow: visible;
}

.feed-list-body {
  width: 100%;
  overflow: visible;
}

.feed-list-title {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 0.65rem;
}

.feed-list-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.feed-list-actions .feed-action-link {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--post-accent-text);
  background: rgba(253, 189, 219, 0.35);
  border: 1px solid rgba(253, 189, 219, 0.55);
  transition: background 0.2s, box-shadow 0.2s;
}

.feed-list-actions .feed-action-link:hover {
  background: rgba(253, 189, 219, 0.5);
  box-shadow: 0 4px 14px rgba(253, 189, 219, 0.25);
}

.feed-list-page .feed-pagination {
  margin-top: 1.5rem;
}

.feed-list-page .feed-pagination .page-link {
  color: var(--post-accent-text);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(253, 189, 219, 0.4);
  border-radius: 8px;
  margin: 0 0.2rem;
  transition: background 0.2s;
}

.feed-list-page .feed-pagination .page-link:hover {
  background: rgba(253, 189, 219, 0.35);
}

.feed-list-page .feed-pagination .page-item.active .page-link {
  background: rgba(253, 189, 219, 0.55);
  border-color: rgba(240, 168, 196, 0.75);
  color: var(--post-accent-text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .feed-list-page .section-wrap.feed-list-stage {
    width: 95%;
  }
}

@media (max-width: 576px) {
  .feed-list-page .section-wrap.feed-list-stage {
    width: 98%;
  }
}
