/* ============================================================
   Blog layout utilities only — the editorial design lives
   entirely in blog.css. This file used to host the white-card
   rebuild treatment; it's been stripped to avoid fighting the
   editorial styles.
   ============================================================ */

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.6rem 1rem;
  background: var(--ink, #14181d);
  color: #fff;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: top 120ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.reading-progress {
  position: fixed;
  top: var(--header-height, 72px);
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 90;
  background: rgba(20, 24, 29, 0.06);
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #9b2f23;
  transition: width 80ms linear;
}

/* The rebuild-blog-shellbar is only used by article pages when shell data is set.
   When present, keep it minimal and paper-coloured. */
.rebuild-blog-shellbar {
  position: sticky;
  top: var(--header-height, 72px);
  z-index: 80;
  background: rgba(244, 239, 226, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 24, 29, 0.1);
  font-family: 'Manrope', system-ui, sans-serif;
}

.rebuild-blog-shellbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.rebuild-blog-shellbar__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.rebuild-blog-shellbar__eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #9b2f23;
}

.rebuild-blog-shellbar__copy {
  color: #4d5567;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rebuild-blog-shellbar__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.rebuild-blog-shellbar__link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #14181d;
}

.rebuild-blog-shellbar__link:hover {
  color: #9b2f23;
}

@media (max-width: 768px) {
  .rebuild-blog-shellbar .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
