body.blocked {
  overflow: hidden;
}

.post-page {
}
.post-page__sidebar-btn {
  background-color: var(--PRIMARY_MAJOR_COLOR);
  color: var(--PRIMARY_MINOR_COLOR);
  position: fixed;
  z-index: 999;
  top: 50%;
  transform: translate(0, -50%);
  padding: 20px 5px;
  transition: all 0.3s ease 0s;
}
@media (min-width: 768px) {
  .post-page__sidebar-btn {
    display: none;
  }
}
.post-page__sidebar-btn_right {
  left: auto;
  right: 0;
  border-radius: 5px 0 0 5px;
}
.post-page__sidebar-btn_right.active {
  transform: rotate(180deg) translate(0, 50%);
  border-radius: 0 5px 5px 0;
}
.post-page__sidebar-btn_left {
  left: 0;
  right: auto;
  border-radius: 0 5px 5px 0;
}
.post-page__sidebar-btn_left.active {
  transform: rotate(180deg) translate(0, 50%);
  border-radius: 5px 0 0 5px;
}
.post-page__container {
  max-width: 1320px;
  margin: 0px auto;
  padding: 0 20px;
}
._container {
}
.post-page__title {
  text-align: center;
  font-size: 50px;
  margin-bottom: 40px;
  color: var(--SECONDARY_MAJOR_COLOR);
}
.post-page__content {
}
@media (min-width: 768px) {
  .post-page__content {
    display: flex;
    margin: 0 -20px;
  }
}
.post-page__posts {
  flex: 1 1 75%;
  padding: 0 20px;
}
.post-page__post {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid var(--SECONDARY_MAJOR_COLOR);
}
.post-page__post .wp-block-image {
  width: 300px;
}
.post-page__post .wp-block-image img {
  width: 100%;
}
.post-page__post:last-child {
  margin-bottom: 0px;
}
.post-page__pic {
  width: 100%;
  max-height: 300px;
  height: 300px;
}
.post-page__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-page__post-name {
  font-size: 24px;
  color: var(--SECONDARY_MAJOR_COLOR);
}
.post-page__post-name a {
  color: var(--SECONDARY_MAJOR_COLOR);
  transition: all 0.3s ease 0s;
}
.post-page__post-name a:hover {
  opacity: 0.5;
}
.post-page__post-content {
  font-size: 18px;
}
.post-page__sidebar {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 998;
  top: 0;
  background-color: var(--SECONDARY_MAJOR_COLOR);
  overflow: auto;
  transition: all 0.3s ease 0s;
  padding: 20px;
}
.post-page__sidebar_right {
  right: -100%;
}
.post-page__sidebar_right.active {
  right: 0;
}
.post-page__sidebar_left {
  left: -100%;
}
.post-page__sidebar_left.active {
  left: 0;
}
@media (min-width: 768px) {
  .post-page__sidebar {
    position: static;
    z-index: 1;
    background-color: transparent;
    padding: 0 20px;
    flex: 1 1 25%;
  }
}
.post-page__sidebar-link {
}

.post-page__sidebar-link a {
  color: var(--EXTRA_COLOR);
  transition: all 0.3s ease 0s;
}
.post-page__sidebar-link a:hover {
  color: var(--SECONDARY_MAJOR_COLOR);
}
