.newsSitePostBlock {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-flow: row nowrap;
  align-items: stretch;
  align-content: stretch;
  overflow: hidden;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .newsSitePostBlock:nth-of-type(even) {
    flex-flow: row-reverse nowrap;
  }
}
@media only screen and (max-width: 768px) {
  .newsSitePostBlock {
    flex-flow: row wrap;
  }
}
.newsSitePostBlock_col {
  flex: 0 0 50%;
  display: flex;
  flex-flow: column;
  border: 1px solid var(--mainColor--black);
}
@media only screen and (max-width: 768px) {
  .newsSitePostBlock_col {
    flex-basis: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .newsSitePostBlock_col:first-of-type {
    border-right: unset;
  }
  .newsSitePostBlock:nth-of-type(even) .newsSitePostBlock_col:first-of-type {
    border-right: 1px solid var(--mainColor--black);
    border-left: unset;
  }
}
.newsSitePostBlock_col-header {
  line-height: 1.200;
  color: var(--mainColor--black);
  padding: 38px;
  font-family: 'neue-haas-grotesk-display';
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .newsSitePostBlock_col-header {
    padding: 15px 0 15px 16px;
  }
}
.newsSitePostBlock_col-header_subTitle {
  font-size: 26px;
}
@media only screen and (max-width: 768px) {
  .newsSitePostBlock_col-header_subTitle {
    font-size: 14px !important;
  }
}
.newsSitePostBlock_col-header_Title {
  font-size: 55px;
}
@media only screen and (max-width: 768px) {
  .newsSitePostBlock_col-header_Title {
    font-size: 30px !important;
  }
}
.newsSitePostBlock_col-content {
  flex: 1 0 auto;
  background-color: #fff;
  color: var(--mainColor--black);
  font-size: 16px;
  line-height: 1.375;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.newsSitePostBlock_col-content_text {
  padding: 58px 102px 43px 38px;
}
@media only screen and (max-width: 768px) {
  .newsSitePostBlock_col-content_text {
    padding: 15px 60px 15px 16px;
    font-size: 13px !important;
  }
}
.newsSitePostBlock_col-content_button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 38px 43px 38px;
}
@media only screen and (max-width: 768px) {
  .newsSitePostBlock_col-content_button {
    padding: 15px 16px;
    font-size: 13px;
  }
}
.newsSitePostBlock_col-content_button-anchor {
  font-size: 17px;
  line-height: 1.176em;
  color: var(--mainColor--black);
  border: 1px solid var(--mainColor--black);
  padding: 0.882em 2.353em 1em;
}
.newsSitePostBlock_col-content_button-anchor:hover,
.newsSitePostBlock_col-content_button-anchor:active,
.newsSitePostBlock_col-content_button-anchor:focus,
.newsSitePostBlock_col-content_button-anchor:visited {
  color: inherit;
}
@media only screen and (max-width: 768px) {
  .newsSitePostBlock_col-content_button-anchor {
    font-size: inherit;
    padding: .461em .922em;
  }
}
.newsSitePostBlock_col--img__wrapper {
  display: block;
  height: 0;
  width: 100%;
  flex: 1 1 10%;
  position: relative;
}
.newsSitePostBlock_col--img__wrapper--sizer {
  width: 100%;
  height: 0;
  padding-bottom: 82.566%;
}
.newsSitePostBlock_col--img__wrapper--img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
