/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

:root {
  --primary-color: #d60067;
  --secondary-color: #60b0ba;
  --white: #fff;
  --light-gray: #f0f0f0;
  --gray: #9e9e9e;
  --dark: #0f172a;
  --dark-gray: #94a3b8;
  --rgb-color: 15, 23, 42;
  --background-rgba: rgba(var(--rgb-color), 0.85);
  --background-color: var(--dark);
  --background-alt-color: #2d3b4e;
  --background-alt-color-2: #1a2334;
  --text-color: var(--gray);
  --text-alt-color: var(--gray);
  --heading-font-color: var(--light-gray);
  --link-color: var(--light-gray);
  --link-color-hover: var(--light-gray);
  --button-color: var(--white);
  --gradient-color: linear-gradient(90deg, #d60067 0%, #8311c0 100%);
  --gradient-hover: linear-gradient(180deg, #d60067 0%, #8311c0 160%);
  --border-color: #232939;
  --border-alt-color: #232939;
  --th-color: var(--background-alt-color);
  --tr-color: var(--background-alt-color-2);
  --callout-note: #1f3962;
  --callout-tip: #26483b;
  --callout-important: #3f2e6d;
  --callout-warning: #ac6f13;
  --callout-caution: #952222;
  --syntax-highlighting-background: #1e293b;
}


/* ==========================================================================
   Reset
   ========================================================================== */

*,
*::after,
*::before {
  box-sizing: border-box;
}

body,
h1, h2, h3, h4, h5, h6,
p,
blockquote,
pre,
dl, dd, ol, ul,
fieldset,
legend,
figure,
hr {
  margin: 0;
  padding: 0;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border-style: none;
}


/* ==========================================================================
   Base
   ========================================================================== */

body {
  font-family: 'JetBrains Mono', "Courier New", "Lucida Console", Monaco, monospace;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.2px;
  overflow-x: hidden;
  color: var(--text-color);
  background-color: var(--background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.disable-animation *,
body.disable-animation *::after,
body.disable-animation *::before {
  transition: none !important;
}

@media (max-width: 576px) {
  body {
    font-size: 16px;
  }
}


/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 16px;
  font-family: 'Poppins', Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: var(--heading-font-color);
}

h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }


/* Blockquotes */

blockquote {
  position: relative;
  margin: 68px 0 40px;
  font-family: 'Poppins', Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  color: var(--heading-font-color);
}

blockquote::before {
  font-size: 300%;
  line-height: .3;
  display: block;
  content: "\201C";
  color: var(--primary-color);
}

blockquote.q-left {
  padding: 0 24px;
  margin: 40px 0;
  font-size: 24px;
  text-align: left;
  border-left: 4px solid var(--primary-color);
}

blockquote.q-left::before {
  content: none;
}

blockquote p {
  margin-bottom: 0;
}

blockquote cite {
  display: inline-block;
  margin-top: 12px;
  font-family: 'JetBrains Mono', "Courier New", "Lucida Console", Monaco, monospace;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  color: var(--heading-font-color);
}

@media (max-width: 768px) {
  blockquote {
    padding: 0 16px;
  }
}

@media (max-width: 576px) {
  blockquote {
    font-size: 24px;
  }

  blockquote.q-left {
    font-size: 21px;
  }
}


/* Pre / Code */

pre {
  overflow: auto;
  padding: 15px;
  margin-bottom: 0;
  font-size: 14px;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-all;
  color: var(--heading-font-color);
}

pre.highlight:hover button {
  opacity: 1;
}

pre.highlight > button {
  opacity: 0;
}

pre.highlight > button:hover {
  opacity: 1;
  color: var(--white);
  background: var(--primary-color);
}

pre.highlight > button:active,
pre.highlight > button:focus {
  opacity: 1;
}

pre button {
  position: absolute;
  right: 15px;
  top: 15px;
  padding: 8px 12px;
  border-radius: 30px;
  font-family: 'Poppins', Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  outline: none;
  border: none;
  color: var(--background-color);
  background: var(--heading-font-color);
  opacity: 0;
  transition: all .2s ease;
  cursor: pointer;
}


/* Images */

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

img + em,
.gallery + em {
  display: block;
  margin-top: 12px;
  font-family: 'Poppins', Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  color: var(--text-alt-color);
}


/* Links */

a {
  text-decoration: none;
  color: var(--link-color);
  transition: all .2s;
}


/* Horizontal Rule */

hr {
  width: 100%;
  height: 1px;
  margin: 64px 0;
  border: 0;
  background: var(--border-color);
}

@media (max-width: 576px) {
  hr {
    margin: 48px 0;
  }
}


/* Tables */

.table-container {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

table {
  font-size: 12px;
  width: 100%;
  border-width: 1px;
  border-color: var(--border-alt-color);
  color: var(--heading-font-color);
}

table th {
  padding: 10px;
  font-size: 16px;
  text-align: left;
  border: 1px solid var(--th-color);
  color: var(--heading-font-color);
  font-weight: 700;
}

table tr {
  background: var(--tr-color);
}

table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0);
}

table td {
  padding: 10px;
  font-size: 14px;
  border: 1px solid var(--th-color);
}


/* Shared spacing */

ul, ol, dl,
blockquote, p,
address, hr,
table, fieldset,
figure, pre {
  margin-bottom: 32px;
}

ul, ol, dd {
  list-style-position: inside;
  margin-bottom: 4px;
}


/* ==========================================================================
   Utilities
   ========================================================================== */

.list-reset {
  list-style-type: none;
  margin: 0;
  padding: 0;
}


/* ==========================================================================
   Grid
   ========================================================================== */

.container {
  max-width: 1364px;
}

@media (max-width: 1024px) {
  .container {
    max-width: 840px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 640px;
  }
}

.container-big {
  max-width: 100%;
}

.container,
.container-big {
  margin: 0 auto;
  padding-left: calc(16px * 2);
  padding-right: calc(16px * 2);
}

@media (max-width: 576px) {
  .container,
  .container-big {
    max-width: 480px;
    padding-left: calc(16px + 4px);
    padding-right: calc(16px + 4px);
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  flex: 0 1 auto;
  flex-direction: row;
  box-sizing: border-box;
  margin-left: -16px;
  margin-right: -16px;
}

.col {
  padding-left: 16px;
  padding-right: 16px;
}

[class^="col-"] {
  flex: auto;
}

.col-12 { width: 100%; }
.col-6  { width: 50%; }
.col-4  { width: 33.333%; }
.col-2  { width: 16.666%; }

@media (max-width: 1024px) {
  .col-d-12 { width: 100%; }
  .col-d-6  { width: 50%; }
}

@media (max-width: 576px) {
  .col-m-12 { width: 100%; }
}


/* ==========================================================================
   Animation
   ========================================================================== */

.animate {
  animation: animateElement cubic-bezier(0.3, 0.45, 0.45, 0.95) .75s;
  animation-duration: .5s;
  animation-iteration-count: 1;
  transition: transform .15s;
}

@keyframes animateElement {
  0%   { transform: translate(0px, 50px); }
  100% { transform: translate(0px, 0px); }
}


/* ==========================================================================
   Syntax Highlighting
   ========================================================================== */

.highlight {
  position: relative;
  margin-bottom: 32px;
  border-radius: 8px;
  background: var(--syntax-highlighting-background);
}

.highlighter-rouge .highlight {
  background: var(--syntax-highlighting-background);
}

.highlight .c   { color: #998; font-style: italic; }
.highlight .err { color: #a61717; background-color: #e3d2d2; }
.highlight .k   { font-weight: bold; }
.highlight .o   { font-weight: bold; }
.highlight .cm  { color: #998; font-style: italic; }
.highlight .cp  { color: #999; font-weight: bold; }
.highlight .c1  { color: #998; font-style: italic; }
.highlight .cs  { color: #999; font-weight: bold; font-style: italic; }
.highlight .gd  { color: #000; background-color: #fdd; }
.highlight .gd .x { color: #000; background-color: #faa; }
.highlight .ge  { font-style: italic; }
.highlight .gr  { color: #a00; }
.highlight .gh  { color: #999; }
.highlight .gi  { color: #000; background-color: #dfd; }
.highlight .gi .x { color: #000; background-color: #afa; }
.highlight .go  { color: #888; }
.highlight .gp  { color: #555; }
.highlight .gs  { font-weight: bold; }
.highlight .gu  { color: #aaa; }
.highlight .gt  { color: #a00; }
.highlight .kc  { font-weight: bold; }
.highlight .kd  { font-weight: bold; }
.highlight .kp  { font-weight: bold; }
.highlight .kr  { font-weight: bold; }
.highlight .kt  { color: #5d76bf; font-weight: bold; }
.highlight .m   { color: #099; }
.highlight .s   { color: #ec2355; }
.highlight .na  { color: teal; }
.highlight .nb  { color: #0086b3; }
.highlight .nc  { color: #5d76bf; font-weight: bold; }
.highlight .no  { color: teal; }
.highlight .ni  { color: purple; }
.highlight .ne  { color: #900; font-weight: bold; }
.highlight .nf  { color: #900; font-weight: bold; }
.highlight .nn  { color: #555; }
.highlight .nt  { color: #4d65dc; }
.highlight .nv  { color: teal; }
.highlight .ow  { font-weight: bold; }
.highlight .w   { color: #bbb; }
.highlight .mf  { color: #099; }
.highlight .mh  { color: #099; }
.highlight .mi  { color: #099; }
.highlight .mo  { color: #099; }
.highlight .sb  { color: #ec2355; }
.highlight .sc  { color: #ec2355; }
.highlight .sd  { color: #ec2355; }
.highlight .s2  { color: #ec2355; }
.highlight .se  { color: #ec2355; }
.highlight .sh  { color: #ec2355; }
.highlight .si  { color: #ec2355; }
.highlight .sx  { color: #ec2355; }
.highlight .sr  { color: #009926; }
.highlight .s1  { color: #ec2355; }
.highlight .ss  { color: #990073; }
.highlight .bp  { color: #999; }
.highlight .vc  { color: teal; }
.highlight .vg  { color: teal; }
.highlight .vi  { color: teal; }
.highlight .il  { color: #099; }


/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
  background: var(--background-rgba);
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  .header {
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    backdrop-filter: saturate(180%) blur(10px);
    background: var(--background-rgba);
  }
}

.header .header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px;
}

@media (max-width: 576px) {
  .header {
    margin-bottom: 48px;
  }
}


/* Logo */

.logo__link {
  font-family: 'Poppins', Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1px;
}


/* Header Social */

.header__social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.header__social .header__social__link {
  display: flex;
  align-items: center;
  color: var(--heading-font-color);
}

.header__social .header__social__link i {
  font-size: 30px;
}

.header__social .header__social__label {
  font-size: 14px;
  margin-left: 6px;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

.header__social .header__social__link:hover {
  color: var(--primary-color);
}


/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  margin-bottom: 80px;
}

@media (max-width: 576px) {
  .hero {
    margin-bottom: 60px;
  }
}

.hero__inner {
  padding: 32px;
  border-radius: 16px;
  background: var(--background-alt-color-2);
}

@media (max-width: 576px) {
  .hero__inner {
    padding: 24px;
  }
}

.hero__title {
  margin-bottom: 12px;
  font-size: 54px;
  line-height: 1;
  color: var(--heading-font-color);
}

@media (max-width: 1400px) {
  .hero__title {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .hero__title {
    margin-bottom: 8px;
    font-size: 32px;
  }
}

.hero__subtitle {
  margin-bottom: 24px;
  font-family: 'Poppins', Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-color);
}

@media (max-width: 576px) {
  .hero__subtitle {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.hero__description {
  margin-bottom: 16px;
}

.hero__description p {
  margin-bottom: 16px;
}

.hero__description a:not([class]) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  color: var(--heading-font-color);
}

.hero__description a:not([class]):hover {
  color: var(--primary-color);
}

@media (max-width: 576px) {
  .hero__description {
    font-size: 16px;
  }

  .hero__description p {
    margin-bottom: 12px;
  }
}

.hero__button {
  margin-top: 16px;
}

@media (max-width: 576px) {
  .hero__button {
    margin-top: 8px;
  }
}


/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  margin-bottom: 80px;
}

@media (max-width: 576px) {
  .section {
    margin-bottom: 60px;
  }
}

.section__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.section__head::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border-color);
  pointer-events: none;
}

@media (max-width: 768px) {
  .section__head::after {
    content: none;
  }
}

.section__title {
  padding-right: 20px;
  margin-bottom: 0;
  font-size: 35px;
  background: var(--background-color);
}

.section__description {
  font-size: 16px;
  margin-bottom: 28px;
}

.section__description a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section__description a:hover {
  color: var(--primary-color);
}

.entry-list p {
  margin-bottom: 10px;
}
.entry-list p:last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-box {
  margin: 32px 0 48px;
}

.gallery-box p {
  display: block;
  margin-top: 12px;
  margin-bottom: 0;
  font-family: 'Poppins', Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  color: var(--text-alt-color);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  align-content: center;
  grid-gap: 12px;
}

.gallery-columns-1 { grid-template-columns: repeat(1, auto); }
.gallery-columns-2 { grid-template-columns: repeat(2, auto); }
.gallery-columns-3 { grid-template-columns: repeat(3, auto); }
.gallery-columns-4 { grid-template-columns: repeat(4, auto); }

.gallery .gallery__image {
  margin: 0;
}

.gallery img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: zoom-in;
  border-radius: 16px;
}

.gallery__image .gallery__image__caption {
  display: none;
}


/* Image Overlay */

.images-overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .8);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  .images-overlay {
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
  }
}

.images-overlay.active {
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  cursor: zoom-out;
  transition: opacity .25s;
}

.images-overlay img {
  max-width: 90%;
  max-height: 80%;
}

.images-overlay .image-overlay__description {
  padding: 0 24px;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 16px;
  color: var(--white);
  text-align: center;
}


/* ==========================================================================
   Logos Marquee
   ========================================================================== */

.logos-title {
  margin-bottom: 0;
  font-size: 27px;
  text-align: center;
}

@media (max-width: 576px) {
  .logos-title {
    font-size: 20px;
  }
}

.logos {
  max-width: 578px;
  margin: 0 auto;
  margin-top: 24px;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  background: var(--background-color);
}

.logos .logos__wrapper {
  display: flex;
  width: max-content;
}

.logos .logos__inner {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  animation: marquee 20s linear infinite;
}

.logos .logos__image {
  position: relative;
  max-width: 100%;
  height: 119px;
  border-radius: 8px;
  overflow: hidden;
  user-select: none;
  margin-right: 16px;
}

.logos .logos__image img {
  height: 100%;
  object-fit: cover;
}

.logos .logos__image:hover img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

@media (max-width: 768px) {
  .logos {
    max-width: 100%;
  }

  .logos .logos__image {
    height: 85px;
  }
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


/* ==========================================================================
   Timeline
   ========================================================================== */

.timeline-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.timeline-ico {
  grid-column: span 1;
  vertical-align: top;
  border-left: 2px solid #cfcfcf;
  position: relative;
}

.timeline-ico img {
  border-radius: 5px;
  width: 100%;
  max-width: 80px;
  margin-left: 15px;
}

@media (max-width: 576px) {
  .timeline-ico img {
    border-radius: 5px !important;
  }
}

.timeline-desc {
  grid-column: span 10;
  vertical-align: top;
  font-size: 17px;
  padding-left: 20px;
  padding-bottom: 20px;
}

.timeline-entry-dot {
  position: absolute;
  top: 0px;
  left: -8px;
  width: 10px;
  height: 10px;
  border-radius: 7px;
  background-color: #cfcfcf;
  border: 2px solid #fff;
}

.timeline-timespan {
  grid-column: span 1;
  font-size: 14px;
  text-align: right;
  padding-right: 12px;
  color: #bbb;
}


/* ==========================================================================
   Projects
   ========================================================================== */

.section-projects .project-item {
  margin-bottom: 10px;
}

.section-projects .project-item:last-child {
  margin-bottom: 32px;
}

.section-projects .project-item__title {
  margin-bottom: 8px;
  font-size: 20px;
}

.section-projects .project-item__title a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-projects .project-item__title a:hover {
  color: var(--link-color);
}

.section-projects .project-item__description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}


/* ==========================================================================
   Buttons
   ========================================================================== */

.button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 16px 24px;
  font-family: 'Poppins', Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: normal;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  outline: none;
  color: var(--button-color);
  transition: all .2s;
  will-change: transform;
  overflow: hidden;
  cursor: pointer;
}

.button--primary {
  background: var(--gradient-color);
}

.button--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  will-change: transform;
  transition: all .2s;
  background: var(--gradient-hover);
}

.button--primary:hover {
  color: var(--button-color);
}

.button--primary:hover:before {
  opacity: 1;
}


/* ==========================================================================
   Scroll to Top
   ========================================================================== */

.top {
  position: fixed;
  bottom: 12px;
  right: -100px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 16px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  cursor: pointer;
  transition: all .25s ease;
}

.top:hover {
  opacity: .9;
}

.top.is-active {
  right: 12px;
}

@media (max-width: 768px) {
  .top {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}


/* ==========================================================================
   Page
   ========================================================================== */

.page {
  color: var(--text-color);
}

.page h2:target::before,
.page h3:target::before,
.page h4:target::before,
.page h5:target::before,
.page h6:target::before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -80px;
}

.page a:not([class]) {
  font-weight: 500;
  border-bottom: 1px solid var(--border-alt-color);
}

.page a:not([class]):hover {
  color: var(--link-color);
  border-bottom-color: var(--link-color-hover);
}

.page img {
  cursor: zoom-in;
}

.page img {
  border-radius: 16px;
  overflow: hidden;
}


/* Callouts */

.page .note,
.page .tip,
.page .important,
.page .warning,
.page .caution {
  position: relative;
  padding: 32px 32px 32px 64px;
  font-family: 'Poppins', Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 18px;
  border-radius: 8px;
  color: var(--heading-font-color);
}

.page .note::after,
.page .tip::after,
.page .important::after,
.page .warning::after,
.page .caution::after {
  content: "\1F4A1";
  position: absolute;
  top: 32px;
  left: 32px;
  display: block;
}

.page .note      { background: var(--callout-note); }
.page .tip       { background: var(--callout-tip); }
.page .important { background: var(--callout-important); }
.page .warning   { background: var(--callout-warning); }
.page .caution   { background: var(--callout-caution); }

@media (max-width: 768px) {
  .page img {
    border-radius: 12px;
    overflow: hidden;
  }
}


/* Table of Contents */

.page__toc {
  padding: 32px;
  margin-bottom: 32px;
  border-radius: 8px;
  background: var(--background-alt-color-2);
}

.page__toc .page__toc__title {
  margin-bottom: 24px;
  padding-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
  border-bottom: 1px solid var(--border-alt-color);
}

.page__toc .page__toc__list {
  margin-bottom: 0;
  padding-left: 4px;
  font-family: 'JetBrains Mono', "Courier New", "Lucida Console", Monaco, monospace;
  color: var(--text-alt-color);
}

.page__toc .page__toc__list li {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

.page__toc .page__toc__list li:last-child {
  margin-bottom: 0;
}

.page__toc .page__toc__list li > ul,
.page__toc .page__toc__list li ol {
  margin-top: 8px;
  padding-left: 16px;
}
