/* Plain-CSS additions that don't need Sass compilation. */
/* Most styling lives in custom.scss; this file is for tiny tweaks. */

/* Tighten the about-page biography column on desktop */
@media (min-width: 992px) {
  .quarto-about-trestles .about-entity {
    padding-right: 2rem;
  }
}

/* Softer focus rings for keyboard navigation */
:focus-visible {
  outline: 2px solid #4d0e1d;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Remove default Bootstrap shadow on focused nav links */
.navbar .nav-link:focus { box-shadow: none; }
