@charset "UTF-8";
.related {
  padding: 20px 0;
}
.related__container {
  padding: 0;
}
.related__title {
  margin: 0 0 16px 0;
  text-align: center;
}
.related__title-text {
  font-size: 36px;
  font-weight: 600;
  color: #1b1716;
}
.related__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.related__item {
  display: block;
}
.related__item-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}
.related__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.related__image-el {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.related__image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f6f3f2 0%, #eee8e6 100%);
}
.related__info {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.related__item-title {
  font-size: 20px;
  font-weight: 600;
  color: #1b1716;
  line-height: 1.3;
  text-wrap-style: balance;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.related__excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #3a3432;
}
.related {
  /* Модификатор для секции FAQs — при желании можно варьировать стили */
}
@media (max-width: 1200px) {
  .related__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .related__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .related__item {
    padding: 0 1rem 0;
  }
}
/* Тест компиляции */
/* Тест автоматической компиляции Sun Sep 14 13:22:06 EEST 2025 */
/* Тест 13:22:45 */
/* .sidebar {
  margin-bottom: 50px
} */
.sidebar-social {
  margin-bottom: 32px;
}

.sidebar-social__item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-radius: 6px;
  margin-bottom: 12px;
  color: #fff;
  transition: 0.3s;
}

.sidebar-social__item:last-child {
  margin-bottom: 0;
}

.sidebar-social__item_facebook {
  background-color: #1da1f2;
}

.sidebar-social__item_pinterest {
  background-color: #bd081c;
}

.sidebar-social__item_instagram {
  background-color: #e4405f;
}

.sidebar-social__item_twitter {
  background-color: #1da1f2;
}

.sidebar-social__item:hover {
  background-color: #8d2b0b;
  color: #fff;
}

.sidebar-social__name {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.sidebar-social__name img {
  display: block;
  width: 20px;
  margin-right: 12px;
}

.sidebar-social__name span {
  font-weight: 500;
  font-size: 16px;
}

/* .sidebar-categories .menu li a::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #2d3748;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%)
} */
@media screen and (max-width: 1439px) {
  .sidebar-social__item {
    font-size: 16px;
  }
}
/* @media screen and (min-width:768px) {
  .sidebar-categories {
    margin-bottom: 30px
  }
} */
@media screen and (max-width: 767px) {
  .sidebar {
    order: 2;
  }
  .post-btn,
  .sidebar-social {
    width: 100%;
    max-width: 360px;
  }
  .post-btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .sidebar-social {
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
  }
  /* .sidebar-categories {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    transform: scaleX(0);
    opacity: 0;
    transition: opacity .3s
  } */
  .sidebar-categories h5,
  .sidebar-categories ul {
    width: 100%;
    max-width: 280px;
    background-color: #fff;
    margin: 0;
  }
  .sidebar-categories h5 {
    padding: 24px 20px;
    position: relative;
  }
  .sidebar-categories h5 button {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    border: none;
    background-color: transparent;
  }
  .sidebar-categories ul {
    padding-left: 44px;
    padding-bottom: 24px;
  }
  .sidebar-categories ul li a {
    padding-left: 0;
  }
  .sidebar-categories_visible {
    display: flex;
    transform: scaleX(1);
    opacity: 1;
  }
}
.post__list {
  margin-bottom: 50px;
}

.post h1 {
  font-size: 32px;
  margin-bottom: 25px;
}

.post .post__item:last-child {
  border-bottom: none;
}

.post__info h3 {
  display: block;
  margin-bottom: 16px;
  font-size: 32px;
}

.post__data {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.post__author {
  color: #233be2;
  font-weight: 500;
  margin-right: 50px;
}

.post p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
}

.post__date {
  color: #aeb0ca;
  margin-right: 6px;
  font-weight: 200;
  font-size: 14px;
}

.post__image {
  min-width: 260px;
  flex: 1;
}

.post__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 51, 153, 0.04), 0 2px 2px rgba(0, 51, 153, 0.08);
  max-height: 223px;
  cursor: pointer !important;
}

.post__ img:hover {
  box-shadow: 0 8px 20px rgba(0, 51, 153, 0.08), 0 4px 8px rgba(0, 51, 153, 0.08);
}

.post-btn {
  margin-top: 20px;
  background-color: #f6f6f9;
  color: #233be2;
}

.post__header {
  margin-bottom: 30px;
}

.post__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.post__content p {
  margin-bottom: 25px;
}

.post__content ul li {
  list-style: disc outside;
}

.post__share {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 60px;
}

.post__share a {
  margin-left: 12px;
}

.post__share span {
  display: inline-block;
  margin-right: 6px;
  font-weight: 500;
  color: #aeb0ca;
}

@media screen and (max-width: 1439px) {
  .post__image {
    min-width: 220px;
  }
  .post__info h3 {
    font-size: 24px;
    line-height: 31px;
  }
  .post__data {
    font-size: 16px;
  }
  .post-btn {
    font-size: 16px;
    padding: 12px 24px;
    min-width: 0;
  }
}
@media screen and (max-width: 991px) {
  .post__image {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .post__list {
    margin-bottom: 0;
  }
}/*# sourceMappingURL=colocation-main.css.map */