

.list-hero { padding: 96px 0 56px; background: linear-gradient(180deg, #FBFBF9, var(--paper-2)); border-bottom: 1px solid var(--line); }
.list-hero__inner { max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.list-hero h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(40px, 6vw, 68px); line-height: 1.02; letter-spacing: -0.030em; color: var(--ink); margin: 18px 0 22px; }
.list-hero h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--up-blue); }
.list-hero p { font-size: 18px; line-height: 1.55; color: var(--body); max-width: 560px; margin: 0 auto; }

.list-body { padding: 80px 0 96px; border-bottom: 1px solid var(--line); }
.list-body__inner { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); display: flex; flex-direction: column; gap: 16px; }

.list-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--up-blue);
  border-radius: var(--r-3);
  padding: 24px 28px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.list-card:hover { border-color: var(--ink-3); border-left-color: var(--up-blue); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.list-card__meta { display: flex; gap: 12px; align-items: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.list-card__meta .source { color: var(--up-blue); }
.list-card__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line); }
.list-card__title { font-family: var(--font-display); font-weight: 500; font-size: 22px; letter-spacing: -0.015em; color: var(--ink); line-height: 1.25; margin-bottom: 10px; }
.list-card__title a { color: inherit; }
.list-card__title a:hover { color: var(--up-blue); }
.list-card__excerpt { font-size: 15px; line-height: 1.55; color: var(--body); }

