/* articles/index.html 专属样式 — 与全站 design tokens 对齐 */

/* ========== Hero 横幅 ========== */
.articles-hero {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 52%, #5a0a0e 100%);
  position: relative;
  overflow: hidden;
}
.articles-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 20%, rgba(255,255,255,0.10) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 80%, rgba(44,31,26,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.articles-hero__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.2rem 1.25rem 1.6rem;
  text-align: center;
}
.articles-hero__crumb {
  border-left: none;
  padding-left: 0;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
}
.articles-hero__crumb a {
  color: rgba(255,255,255,0.75);
}
.articles-hero__crumb a:hover {
  color: #fff;
}
.articles-hero__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  font-weight: 900;
  color: var(--gold-text);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(44,31,26,0.15);
}
.articles-hero__sub {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}
.articles-hero__sub a {
  color: rgba(255, 248, 220, 0.98);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  font-weight: 600;
}
.articles-hero__sub a:hover {
  color: #fff;
}

/* 关于集团页：Hero 内本页锚点（与 #honors / #journey 长内容呼应） */
.about-hero-toc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 600;
}
.about-hero-toc a {
  color: rgba(255, 248, 235, 0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 248, 235, 0.35);
  padding-bottom: 0.08rem;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.about-hero-toc a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.75);
}
.about-hero-toc__sep {
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
}

/* ========== 内容区 ========== */
.articles-body {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.articles-section__h {
  position: relative;
  margin: 2.2rem 0 0.3rem;
  padding-left: 0.85rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--title-ink);
  letter-spacing: 0.02em;
}
.articles-section__h::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 4px;
  height: 1.1em;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--gold) 100%);
}
.articles-section__h:first-of-type {
  margin-top: 0;
}
.articles-section__lead {
  margin: 0.25rem 0 1rem 0.85rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ========== 卡片网格 ========== */
.articles-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 560px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 860px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.articles-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.articles-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.articles-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.1rem 1.15rem 1rem;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color 0.15s ease;
}
.articles-card a:hover {
  border-color: var(--brand);
}
.articles-card__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.15rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand);
  background: rgba(201,38,30,0.08);
  border-radius: 4px;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.articles-card__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--title-ink);
  line-height: 1.4;
}
.articles-card__desc {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.articles-card__meta {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  color: var(--muted-light);
  letter-spacing: 0.03em;
  line-height: 1.45;
}
.articles-card__meta time {
  white-space: nowrap;
}

/* ========== 第二分区间距 ========== */
#corp-news {
  margin-top: 2.5rem;
}

/* 就餐指南列表页：场景 → 文章 → 门店 对照表 */
.articles-scene-map {
  margin-bottom: 0.5rem;
}
.articles-scene-map h2.articles-section__h {
  margin-top: 0.65rem;
}
.articles-scene-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin: 0.5rem 0 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.articles-scene-table thead th {
  background: rgba(201, 38, 30, 0.06);
  font-weight: 700;
  text-align: left;
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid var(--line);
  color: var(--title-ink);
}
.articles-scene-table tbody td {
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.55;
  color: var(--muted);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.articles-scene-table tbody tr:last-child td {
  border-bottom: none;
}
.articles-scene-table a {
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}
.articles-scene-table a:hover {
  text-decoration: underline;
}
.articles-scene-map__foot {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 0.85rem;
}
.articles-scene-map__foot a {
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}
.articles-scene-map__foot a:hover {
  text-decoration: underline;
}

/* ========== FAQ 频道页（与就餐指南共用顶栏，正文保持问答流） ========== */
.faq-body {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}
.faq-body .faq-list h2 {
  position: relative;
  margin: 1.85rem 0 0.45rem;
  padding-left: 0.85rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--title-ink);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.faq-body .faq-list h2:first-child {
  margin-top: 0;
}
.faq-body .faq-list h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 4px;
  height: 1.1em;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--gold) 100%);
}
.faq-body .faq-list p {
  margin: 0 0 0.15rem;
  padding-left: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}
.faq-body .faq-list p:last-child {
  margin-bottom: 0;
}

/* 就餐指南列表页：枢纽 FAQ */
.articles-hub-faq {
  margin-bottom: 1.75rem;
}
.articles-hub-faq h3 {
  font-size: 1rem;
  margin: 0.85rem 0 0.35rem;
  font-weight: 700;
  color: var(--title-ink);
  line-height: 1.35;
}
.articles-hub-faq h3:first-of-type {
  margin-top: 0.5rem;
}
.articles-hub-faq p {
  margin: 0 0 0.15rem;
}
