
/* -------------------------------------------------------------------
   Table of Contents — sidebar widget
   The <section> wrapper inherits your theme's widget styling, so these
   rules only handle the link list, the scroll offset, and smooth scroll.
   ------------------------------------------------------------------- */

/* Smooth scrolling when a TOC link is clicked. */
html {
  scroll-behavior: smooth;
}

/* Offset the headings so they don't tuck under the fixed site header
   when you jump to them ("h2 offset a little").
   Bump this value up/down to match your header's height. */
h2[id] {
  scroll-margin-top: 90px;
}
.toc-widget h3 {
	text-transform: uppercase !important;
	font-family: FuturaPT !important;
	font-weight: 700 !important;
	color: #000;
	padding-bottom: 10px;
	border-bottom: 5px solid #000;
	font-size: 1.2em;
	margin-bottom: 30px;
}
.toc-widget .toc-list {
	margin-left: 0 !important;
}
.sidebar .toc-widget h3 {
	margin-bottom: 20px !important;
}

/* The link list inside the TOC widget. */
.toc-widget .toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc-widget .toc-list__item {
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.toc-widget .toc-list__item:last-child {
  border-bottom: 0;
}

.toc-widget .toc-list__link {
  display: block;
  padding: .5rem 0;
  line-height: 1.3;
  text-decoration: none;
}

.toc-widget .toc-list__link:hover,
.toc-widget .toc-list__link:focus {
  text-decoration: underline;
}
