.latest-page { min-height: 100vh; }
.latest-header { display: flex; align-items: center; justify-content: space-between; width: min(1100px, calc(100% - 48px)); margin: 0 auto; padding: 24px 0; }
.latest-header .brand-logo { width: 236px; height: 76px; }
.latest-main { width: min(1100px, calc(100% - 48px)); margin: 0 auto; padding: 76px 0 100px; }
.latest-intro { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 48px; }
.latest-intro h1 { max-width: 720px; margin: 16px 0 0; font-size: clamp(52px, 9vw, 112px); line-height: .86; letter-spacing: -.1em; }
.latest-intro h1 span { color: var(--accent); }
.latest-intro p { max-width: 250px; margin: 0 0 5px; color: var(--muted); font-size: 13px; }
.latest-list { display: grid; gap: 16px; }
.latest-card { display: grid; grid-template-columns: minmax(220px, 34%) 1fr auto; gap: 26px; align-items: center; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.latest-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.latest-card-media { overflow: hidden; aspect-ratio: 1.65 / 1; border-radius: 12px; background: var(--surface-soft); }
.latest-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.latest-card:hover .latest-card-media img { transform: scale(1.04); }
.latest-card-info { min-width: 0; }
.latest-card-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--muted); font: 500 10px/1.2 'DM Mono', monospace; letter-spacing: .05em; text-transform: uppercase; }
.latest-card-meta strong { color: var(--accent); font-weight: 500; }
.latest-card h2 { margin: 12px 0 8px; font-size: clamp(23px, 3vw, 38px); line-height: .96; letter-spacing: -.07em; }
.latest-card p { max-width: 560px; margin: 0; color: var(--muted); font-size: 13px; }
.latest-card-arrow { display: grid; place-items: center; width: 42px; height: 42px; margin-right: 10px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); font-size: 20px; transition: transform .2s ease; }
.latest-card:hover .latest-card-arrow { transform: translate(2px, -2px); }
.latest-empty, .latest-error { padding: 60px 0; color: var(--muted); }
.latest-empty h2, .latest-error h2 { color: var(--text); font-size: 34px; letter-spacing: -.06em; }
.latest-feed-footer { display: grid; place-items: center; min-height: 64px; padding: 32px 0 0; }
.latest-feed-loading { display: flex; align-items: center; gap: 10px; color: var(--muted); font: 500 11px/1.2 'DM Mono', monospace; letter-spacing: .08em; text-transform: uppercase; }
.latest-feed-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); animation: pulse 1.1s ease-in-out infinite; }
.latest-feed-button { padding: 14px 28px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text); font: 500 11px/1 'DM Mono', monospace; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: border-color .2s ease, color .2s ease, transform .2s ease; }
.latest-feed-button:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.latest-feed-end { margin: 0; color: var(--muted); font: 500 11px/1.2 'DM Mono', monospace; letter-spacing: .08em; text-transform: uppercase; }
.latest-feed-error { display: grid; gap: 14px; justify-items: center; color: var(--muted); font-size: 13px; text-align: center; }
.latest-feed-error p { margin: 0; }
.latest-sentinel { height: 1px; }
.latest-loading { min-height: 400px; }
.latest-skeleton { height: 300px; margin-top: 24px; border-radius: var(--radius-md); background: var(--surface-soft); animation: pulse 1.5s ease-in-out infinite; }

@media (max-width: 700px) {
  .latest-header, .latest-main { width: min(100% - 32px, 1100px); }
  .latest-header .brand-logo { width: 204px; height: 66px; }
  .latest-main { padding-top: 48px; }
  .latest-intro { display: block; margin-bottom: 30px; }
  .latest-intro p { margin-top: 18px; }
  .latest-card { grid-template-columns: 1fr; gap: 15px; padding: 10px; }
  .latest-card-media { aspect-ratio: 1.45 / 1; }
  .latest-card-arrow { margin: 0 4px 4px auto; }
}
