/*
 * KA Press Studio — styles for the NEW additions only (reading time, back-to-top)
 * plus a visible keyboard-focus ring. Everything the theme already styles
 * (skip link, screen-reader-text, breadcrumbs, share, related, author card) is
 * intentionally NOT redefined here. Loaded after the main stylesheet.
 */

/* Visible keyboard focus — an accessibility win the main stylesheet can rely on. */
:focus-visible{outline:2px solid var(--hd-gold,#a67c00);outline-offset:2px}

/* Reading-time inline utility */
.hd-readtime{font:600 .78rem/1 system-ui,sans-serif;color:var(--hd-soft,#5b6472)}

/* Back to top */
.hd-totop{
  position:fixed;right:1rem;bottom:1rem;z-index:60;
  width:2.6rem;height:2.6rem;display:grid;place-items:center;
  background:var(--hd-navy,#0b1f3a);color:#fff;border-radius:50%;text-decoration:none;
  font-size:1.1rem;line-height:1;box-shadow:0 3px 12px rgba(0,0,0,.25);
}
.hd-totop:hover{background:var(--hd-navy2,#1c3454)}
.hd-totop[hidden]{display:none}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto!important}
}

@media print{
  .hd-totop{display:none!important}
}
