/* ============================================================
   UTILITIES — small single-purpose helpers
   ============================================================ */

/* Full-width divider inside .container */
.section-rule {
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid var(--color-line-mid);
}

/* Cross-browser thin scrollbar (Firefox, Safari, Chrome) */
.scrollbar-custom {
  scrollbar-width: thin;
  scrollbar-color: #ABA6A1 #FBFBF9;
}

.scrollbar-custom::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.scrollbar-custom::-webkit-scrollbar-track {
  background: #FBFBF9;
  border-radius: 3px;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
  background-color: #ABA6A1;
  border-radius: 3px;
  border: 1px solid #FBFBF9;
}

.scrollbar-custom::-webkit-scrollbar-thumb:hover {
  background-color: #6A635D;
}
