#post {
  margin-top: 105px;
  padding: 0 40px;
}

.post-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 385px 1fr;
      grid-template-columns: 385px 1fr;
  grid-gap: 3rem;
  max-width: 1680px;
  margin: 0 auto;
}

.post-sidebar {
  display: inline-block;
}

.post-sidebar .link-list {
  position: fixed;
  top: 45%;
  max-width: 385px;
  width: 100%;
}

.post-sidebar .link-list__item {
  margin-top: 10px;
}

.post-sidebar .link-list__item:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #336699;
}

.post-sidebar .link-list__item a {
  padding-left: 14px;
  font-family: Lato;
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: #696e7b;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.post-sidebar .link-list__item a:hover {
  color: #336699;
}

.post-container {
  display: inline-block;
}

.post-container__info {
  text-align: center;
}

.post-container__info .title {
  font-family: Lato;
  font-weight: bold;
  text-align: center;
  font-size: 38px;
  line-height: 126%;
  color: #494949;
}

.post-container .content__text {
  font-family: Lato;
  font-weight: normal;
  font-size: 24px;
  line-height: 142%;
  letter-spacing: 0.03em;
  color: #000;
}

.post-container .content img {
  width: 100%;
}

@media screen and (max-width: 1440px) and (min-width: 1024px) {
  .post-wrapper {
    -ms-grid-columns: 250px 1fr;
        grid-template-columns: 250px 1fr;
    grid-gap: 2rem;
  }
  .post-sidebar .link-list {
    max-width: 250px;
  }
  .post-sidebar .link-list__item a {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  #post {
    margin-top: 60px;
    padding: 0 20px;
  }
  .post-wrapper {
    -ms-grid-columns: 200px 1fr;
        grid-template-columns: 200px 1fr;
    grid-gap: 2rem;
  }
  .post-sidebar .link-list {
    max-width: 200px;
  }
  .post-sidebar .link-list__item a {
    font-size: 14px;
    line-height: 18px;
  }
  .post-container__info .title {
    font-size: 28px;
  }
  .post-container__info img {
    width: 100%;
  }
  .post-container .content__text {
    font-size: 18px;
  }
  .post-container .content img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .post-wrapper {
    display: block;
  }
  .post-sidebar {
    display: none;
  }
}

@media screen and (max-width: 767px) and (min-width: 576px) {
  .post-container__info img {
    width: 100%;
  }
  .post-container__info .title {
    font-size: 28px;
  }
  .post-container .content__text {
    font-size: 18px;
  }
}

@media screen and (max-width: 575px) {
  .post-container__info .title {
    font-size: 24px;
  }
  .post-container__info img {
    width: 100%;
  }
  .post-container .content__text {
    font-size: 14px;
  }
}
/*# sourceMappingURL=post.css.map */