.post_item.horizontal {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
@media screen and (min-width: 1025px) {
  .post_item.horizontal {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .post_item.horizontal {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 10px;
    width: 100%;
  }
}
.post_item.horizontal:not(:last-of-type) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #0E0705;
}
@media screen and (min-width: 1025px) {
  .post_item.horizontal:not(:last-of-type) {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.post_item.horizontal .post_item__thumb {
  width: 100%;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .post_item.horizontal .post_item__thumb {
    width: 38.7%;
  }
}
@media screen and (min-width: 1025px) {
  .post_item.horizontal .post_item__thumb {
    width: 28.99%;
  }
}
@media screen and (max-width: 767px) {
  .post_item.horizontal .post_item__thumb {
    grid-column: 1/span 2;
  }
}
@media screen and (max-width: 767px) {
  .post_item.horizontal .post_item__thumb a {
    height: 100%;
  }
}
.post_item.horizontal .post_item__thumb img {
  object-fit: cover;
  height: 100%;
}
.post_item.horizontal > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .post_item.horizontal > div {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .post_item.horizontal > div {
    grid-column: 3/span 4;
  }
}
@media screen and (max-width: 1024px) {
  .post_item.horizontal .post_item__info {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .post_item.horizontal .post_item__info {
    width: 70.83%;
  }
}
.post_item.horizontal .post_item__info h3 {
  font-weight: 400;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .post_item.horizontal .post_item__info h3 {
    font-size: 21px;
    line-height: 28px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .post_item.horizontal .post_item__info h3 {
    font-size: 28px;
    line-height: 38px;
  }
}
.post_item.horizontal .post_item__info > div {
  display: block;
  font-size: 14px;
  line-height: 20px;
  gap: 10px;
}
.post_item.horizontal .post_item__info > div time {
  display: inline;
  margin-right: 7px;
  font-weight: 600;
}
.post_item.horizontal .post_item__info > div time:not(:only-child) {
  border-right: 1px solid #0E0705;
  padding-right: 10px;
}
.post_item.horizontal .post_item__info > div .post_item__authors {
  display: inline;
}
.post_item.horizontal .post_item__info > div .post_item__authors > * {
  white-space: nowrap;
}
.post_item.horizontal .post_item__info p {
  margin-top: 10px;
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .post_item.horizontal .post_item__info p {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .post_item.horizontal .post_item__info p {
    display: none;
  }
}
.post_item.horizontal .post_item__terms {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 14px;
  line-height: 20px;
}
@media screen and (max-width: 1024px) {
  .post_item.horizontal .post_item__terms {
    margin-top: auto;
  }
}
@media screen and (min-width: 1025px) {
  .post_item.horizontal .post_item__terms {
    flex-direction: column;
    align-items: flex-start;
    width: 130px;
    margin-left: auto;
  }
}
.post_item.horizontal .post_item__terms > * {
  word-break: break-word;
  cursor: pointer;
}
.post_item.horizontal .post_item__terms > *:active {
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .post_item.horizontal .post_item__terms > *:hover, .post_item.horizontal .post_item__terms > *:focus {
    text-decoration: underline;
  }
}

.show_box {
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}
.show_box.is_loading {
  opacity: 1;
  visibility: visible;
}
.show_box .loader {
  margin: 0 auto;
  width: 30px;
  position: relative;
}
.show_box .loader:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.show_box .circular {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  transform-origin: center center;
  animation: rotate 2s linear infinite;
}
.show_box .path {
  stroke-width: 3;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke-dasharray: 1, 200;
  animation: dash 1.5s ease-in-out infinite, color 3s ease-in-out infinite;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 3s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes color {
  100%, 0% {
    stroke: #0E0705;
  }
  40% {
    stroke: #0E0705;
  }
  66% {
    stroke: #0E0705;
  }
  80%, 90% {
    stroke: #0E0705;
  }
}
.load_more_holder {
  text-align: center;
}

.loader_holder {
  height: 48px;
  position: relative;
  z-index: 0;
  pointer-events: none;
}

.posts_by_cat__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #0E0705;
  padding-top: 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .posts_by_cat__header {
    margin-bottom: 40px;
    padding-top: 10px;
  }
}
.posts_by_cat__header .text_wrapper {
  max-width: 400px;
}
.posts_by_cat__header .title {
  margin-bottom: 10px;
}
.posts_by_cat__header .description {
  margin-bottom: 0;
}
.posts_by_cat .load_more_holder {
  margin-top: 80px;
}
.posts_by_cat .loader_holder {
  top: 80px;
}

/*# sourceMappingURL=all-news.css.map */
