/* Custom Scrollbar Configuration matching the Editorial Palette */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #F9F6F0;
}
::-webkit-scrollbar-thumb {
  background: #0A1A12;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #1B4332;
}

/* Nav Link Underline State Highlighters */
.nav-link {
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #0A1A12;
  transition: width 0.3s ease;
}
.nav-link.active-page::after {
  width: 100%;
}

/* Page Section Container Layout Settings to optimize rendering integrity during routing transitions */
.page-section {
  will-change: opacity;
}