.updates-page {
  min-height: 60vh;
  background: var(--c-bg-soft);
}

.updates-archive-hero {
  padding: 54px 0 44px;
  background: linear-gradient(180deg, #fff1f4 0%, #fff 100%);
  border-bottom: 1px solid var(--c-border-soft);
}

.updates-archive-hero .eyebrow {
  margin: 0 0 8px;
  color: var(--c-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.updates-archive-hero h1 {
  margin: 0;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.35;
}

.updates-archive-lead {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--c-text-soft);
  font-size: 14px;
}

.updates-archive-section {
  padding: 34px 0 72px;
}

.updates-archive-shell {
  max-width: 900px;
}

.updates-archive-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.updates-archive-search {
  width: min(100%, 430px);
  padding: 11px 14px;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  color: var(--c-text);
  background: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.updates-archive-search:focus {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(165, 31, 66, .12);
}

.updates-archive-count {
  flex-shrink: 0;
  color: var(--c-text-muted);
  font-size: 13px;
}

.updates-archive-list {
  display: grid;
  gap: 12px;
}

.update-archive-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.update-archive-item time {
  padding-top: 3px;
  color: var(--c-text-muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.update-archive-item h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.update-archive-item h2 a:hover {
  color: var(--c-blue);
  text-decoration: underline;
}

.update-archive-item p {
  margin: 7px 0 0;
  color: var(--c-text-soft);
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
}

.update-archive-open {
  margin-top: 1px;
  color: var(--c-blue);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.update-archive-open:hover {
  text-decoration: underline;
}

.updates-archive-empty {
  padding: 50px 20px;
  border: 1px dashed var(--c-border);
  border-radius: var(--radius-lg);
  color: var(--c-text-muted);
  background: #fff;
  font-size: 14px;
  text-align: center;
}

.updates-back-link {
  color: var(--c-blue);
  font-size: 13px;
  font-weight: 700;
}

.updates-back-link:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 700px) {
  .updates-archive-hero { padding: 38px 0 32px; }
  .updates-archive-section { padding: 24px 0 52px; }
  .updates-archive-controls { align-items: stretch; flex-direction: column; gap: 8px; }
  .updates-archive-search { width: 100%; }
  .update-archive-item { grid-template-columns: 1fr auto; gap: 8px 14px; padding: 18px; }
  .update-archive-item time { grid-column: 1 / -1; padding: 0; }
  .update-archive-item p { font-size: 13px; }
}
