.main {
  margin: 60px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.heading__container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.heading__text-blocks {
  align-self: center;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1064px;
  width: 100%;
}
@media (max-width: 1023px) {
  .heading__text-blocks {
    flex-direction: column;
    align-items: center;
  }
}
.heading__l-text {
  max-width: 522px;
}
@media (max-width: 1023px) {
  .heading__l-text {
    max-width: 90%;
  }
}
.heading__r-text {
  max-width: 305px;
}
@media (max-width: 1023px) {
  .heading__r-text {
    max-width: 90%;
  }
}

.thread__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.thread__body {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.post {
  align-self: center;
  max-width: 847px;
  width: 100%;
  display: flex;
  gap: 13px;
}
.post__image {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  background: #5AB4CF;
}
@media (max-width: 1023px) {
  .post__image {
    width: 76px;
    height: 76px;
  }
}
@media (max-width: 424px) {
  .post__image {
    width: 40px;
    height: 40px;
  }
}
.post__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.post__title {
  color: #1D434E;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.post__subtitle {
  color: #458CA2;
  font-size: 10.667px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.post__footer {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 767px) {
  .post__footer {
    flex-direction: column-reverse;
    align-items: start;
  }
}
.post__votes {
  display: flex;
  align-items: center;
  gap: 10px;
}
.post__vote {
  width: 24px;
  height: 24px;
}
.post__votes-count {
  color: #1D434E;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 32px */
}
.post__button {
  padding: 5px 15px;
}
@media (max-width: 1023px) {
  .post__comments {
    margin-left: -45px;
  }
}
@media (max-width: 767px) {
  .post__comments {
    margin-left: -40px;
  }
}