:root {
  --brandon-grotesque: brandon-grotesque, sans-serif;
  --proxima-nova: proxima-nova, sans-serif;
  --blue: #005E9C;
  --orange: #F07824;
  --light-blue: #32AEE4;
  --very-dark-blue: #002535;
  --background-gray: #F1F3F4;
  --max-width: calc(1200px + 30px * 2);
  --content-width: 1200px;
  --content-padding: 30px;
  --phone: 768px;
  --tablet: 1280px;
  --columns-collapse: 781px;
}
@media screen and (max-width: 768px) {
  :root {
    --content-padding: 20px;
  }
}
@media screen and (max-width: 350px) {
  :root {
    --content-padding: 15px;
  }
}

.featured__image {
  margin: 50px auto 90px;
}
.featured__image img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

.post__thumbnail-container {
  text-align: center;
  max-width: 1294px;
  margin-inline: auto;
  width: 100%;
  margin-top: 48px;
}
.post__thumbnail-container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}

.post__wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .post__wrapper {
    display: block;
  }
}
.post__wrapper .post__index {
  border-radius: 10px;
  background: #F1F3F4;
  height: -moz-fit-content;
  height: fit-content;
  padding: 56px 52px;
  position: sticky;
  top: 20px;
  overflow-y: scroll;
  max-height: calc(100vh - 100px);
}
.post__wrapper .post__index::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
.post__wrapper .post__index::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 1024px) {
  .post__wrapper .post__index {
    display: none;
  }
}
.post__wrapper .post__index .post-sidebar__index__items {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}
.post__wrapper .post__index .post-sidebar__index__items .post-sidebar__index__item {
  margin-top: 20px;
}
.post__wrapper .post__index .post-sidebar__index__items .post-sidebar__index__item a {
  text-decoration: none;
  color: black;
}
.post__wrapper .post__index .post-sidebar__index__items--select {
  display: none;
}
.post__wrapper .post__index__mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .post__wrapper .post__index__mobile {
    display: block;
    padding: 28px 26px;
    margin-top: 20px;
    margin-bottom: 25px;
    position: static;
  }
}
@media screen and (max-width: 360px) {
  .post__wrapper .post__index__mobile {
    padding-inline: 20px;
  }
}
.post__wrapper .post__content__post {
  margin-top: 20px;
}
.post__wrapper .post__content__post .wp-video {
  width: 100% !important;
}
.post__wrapper.no-index {
  display: block;
}

.site-header {
  position: relative;
}
.site-header:before {
  height: 100% !important;
}
