.timeline-page {
  background:
    linear-gradient(180deg, rgba(255, 248, 241, .96), rgba(255, 250, 246, .96)),
    radial-gradient(circle at 12% 8%, rgba(217, 130, 107, .12), transparent 30%);
}

.timeline-share {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 86px;
}

.timeline-share-hero {
  max-width: 820px;
  margin-bottom: 32px;
}

.timeline-share-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
}

.timeline-share-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.timeline-share-list {
  display: grid;
  gap: 14px;
}

.timeline-share-list .landing-timeline-item {
  grid-template-columns: 128px minmax(0, 1fr);
  padding: 22px;
}

.timeline-share-list .timeline-image-button {
  width: min(640px, 100%);
}

.timeline-share-list .timeline-image {
  max-height: 420px;
  object-fit: contain;
}

.timeline-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(73,48,37,.06);
}

.timeline-pager-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.timeline-pager span,
.timeline-page-size {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.timeline-pager button,
.timeline-pager b {
  min-width: 42px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid #dbe6f0;
  border-left: 0;
  background: #fff;
  color: #6b788a;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.timeline-pager b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1f9d8a;
  color: #fff;
}

.timeline-pager button:first-of-type {
  border-left: 1px solid #dbe6f0;
}

.timeline-pager button:not(:disabled) {
  cursor: pointer;
}

.timeline-pager button:disabled {
  color: #aab4c0;
  background: #f7f9fb;
}

.timeline-page-size {
  gap: 8px;
  margin-left: auto;
}

.timeline-page-size select {
  height: 30px;
  border: 1px solid #dbe6f0;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

@media (max-width: 640px) {
  .timeline-share {
    width: min(100% - 28px, 980px);
    padding-top: 42px;
  }

  .timeline-share-list .landing-timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-pager {
    align-items: stretch;
    flex-direction: column;
  }

  .timeline-page-size {
    margin-left: 0;
  }
}
