/* ===== 首页专属样式（Magazine + Gradient Mesh） ===== */

/* --- 顶部公告 / 紧急焦点栏 --- */
.e0f864-notice {
  background: linear-gradient(90deg, #b1253a, #d43b55);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.e0f864-notice a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}
.e0f864-notice a:hover { opacity: 0.85; }

/* --- Hero（左超大图 + 右文字） --- */
.e0f864-hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 48px 0 8px;
}
.e0f864-hero-media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(177,37,58,0.10);
}
.e0f864-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.e0f864-hero-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.e0f864-hero-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.e0f864-hero-title a:hover { color: var(--accent); }
.e0f864-hero-excerpt {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.e0f864-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.e0f864-hero-meta img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.e0f864-hero-meta-text { line-height: 1.4; }
.e0f864-hero-author { font-weight: 600; font-size: 14.5px; }
.e0f864-hero-sub { color: var(--text-muted); font-size: 13px; }

/* --- Main Feed（70/30） --- */
.e0f864-feed {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 36px;
  padding: 32px 0 8px;
}
.e0f864-section-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.e0f864-section-title::before {
  content: "";
  width: 6px;
  height: 22px;
  background: var(--accent);
  border-radius: 3px;
}

.e0f864-feed-list { list-style: none; }
.e0f864-feed-item {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.e0f864-feed-item:first-child { padding-top: 0; }
.e0f864-feed-thumb {
  width: 140px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.e0f864-feed-thumb img { width: 100%; height: 100%; object-fit: cover; }
.e0f864-feed-body { flex: 1; min-width: 0; }
.e0f864-feed-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}
.e0f864-feed-title a:hover { color: var(--accent); }
.e0f864-feed-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* --- 侧边栏 --- */
.e0f864-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.e0f864-side-widget {
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}
.e0f864-side-widget h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

/* 作者微卡 */
.e0f864-side-author { display: flex; gap: 14px; align-items: center; }
.e0f864-side-author img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.e0f864-side-author-name { font-weight: 700; font-size: 15px; }
.e0f864-side-author-bio { color: var(--text-muted); font-size: 13px; line-height: 1.5; margin-top: 4px; }

/* Trending 序号榜单 */
.e0f864-trending { list-style: none; counter-reset: trend; }
.e0f864-trending li {
  counter-increment: trend;
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.e0f864-trending li:last-child { border-bottom: none; }
.e0f864-trending li::before {
  content: counter(trend, decimal-leading-zero);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.e0f864-trending a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.e0f864-trending a:hover { color: var(--accent); }

/* 标签云 */
.e0f864-tagcloud { display: flex; flex-wrap: wrap; gap: 8px; }
.e0f864-tagcloud a {
  display: inline-block;
  background: rgba(177,37,58,0.08);
  border: 1px solid rgba(177,37,58,0.25);
  color: var(--text);
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 999px;
}
.e0f864-tagcloud a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* 邮件订阅 */
.e0f864-newsletter p { color: var(--text-muted); font-size: 13.5px; margin-bottom: 14px; }
.e0f864-newsletter form { display: flex; flex-direction: column; gap: 10px; }
.e0f864-newsletter input {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--text);
  font-size: 14px;
  outline: none;
}
.e0f864-newsletter button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px;
  font-weight: 700;
  cursor: pointer;
}
.e0f864-newsletter button:hover { opacity: 0.9; }

/* --- 辅助页面快捷链接区 --- */
.e0f864-quick-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 36px 0;
  margin: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.e0f864-quick-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.e0f864-quick-links a:hover { color: var(--accent); }

/* --- 响应式 --- */
@media (max-width: 900px) {
  .e0f864-hero { grid-template-columns: 1fr; }
  .e0f864-feed { grid-template-columns: 1fr; }
  .e0f864-feed-thumb { width: 110px; height: 80px; }
}

@media (max-width: 620px) {
  .e0f864-hero-title { font-size: 26px; }
  .e0f864-feed-item { flex-direction: column; }
  .e0f864-feed-thumb { width: 100%; height: 180px; }
  .e0f864-quick-links { gap: 18px; }
}
