.single-post main {
  overflow: initial;
}
.single-post .post-container {
  display: flex;
  padding-left: 0;
}
@media only screen and (max-width: 1024px) {
  .single-post .post-container {
    flex-direction: column;
  }
}
.single-post .post-container .post-wrapper {
  margin-right: 25px;
  flex: 0 0 calc(45% - 25px);
  max-width: calc(45% - 25px);
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: var(--hh);
}
@media only screen and (min-width: 1025px) and (max-height: 800px) {
  .single-post .post-container .post-wrapper {
    flex: 0 0 calc(47% - 25px);
    max-width: calc(47% - 25px);
  }
}
@media only screen and (max-width: 1024px) {
  .single-post .post-container .post-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
  }
}
.single-post .post-container .post-wrapper .post-image {
  height: calc(100vh - var(--hh));
  position: sticky;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .single-post .post-container .post-wrapper .post-image {
    height: 50vh;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .single-post .post-container .post-wrapper .post-image {
    height: 272px;
    width: 100%;
  }
}
.single-post .post-container .post-wrapper .post-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1024px) {
  .single-post .post-container .post-wrapper .post-image img {
    -o-object-position: top;
       object-position: top;
  }
}
.single-post .post-container .post-wrapper .post-category {
  background-color: #4a972d;
  font-size: min(max(14px, 2vh), 16px);
  color: #ffffff;
  font-weight: 600;
  font-family: "OpenSans";
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding-inline: 30px;
  min-height: 144px;
  width: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 1024px) {
  .single-post .post-container .post-wrapper .post-category {
    left: 0;
    writing-mode: horizontal-tb;
    transform: none;
    min-height: 38px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.single-post .post-container .post-info {
  margin-left: 25px;
  flex: 0 0 calc(55% - 25px);
  max-width: calc(55% - 25px);
  padding-right: 65px;
  margin-top: var(--hh);
  margin-bottom: min(max(20px, 2.6041666667vw), 100px);
}
@media only screen and (min-width: 1025px) and (max-height: 800px) {
  .single-post .post-container .post-info {
    flex: 0 0 calc(53% - 25px);
    max-width: calc(53% - 25px);
  }
}
@media only screen and (max-width: 1024px) {
  .single-post .post-container .post-info {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .single-post .post-container .post-info {
    padding-inline: 30px;
    padding-top: 41px;
  }
}
@media only screen and (max-width: 767px) {
  .single-post .post-container .post-info {
    padding-inline: 20px;
    padding-top: 25px;
  }
}
.single-post .post-container .post-info .post-date span {
  font-family: "Ubuntu";
  font-size: 14px;
  color: #4a972d;
  font-weight: 500;
}
.single-post .post-container .post-info .post-title h2 {
  font-weight: 700;
  color: #171d4f;
  margin-bottom: min(max(min(max(20px, 2.6041666667vw), 20px), 1.5625vw), 32px);
  font-size: clamp(22px, 3vw, 28px);
}
@media only screen and (min-width: 1025px) and (max-height: 800px) {
  .single-post .post-container .post-info .post-title h2 {
    line-height: 1.04em;
  }
}
.single-post .post-container .post-info .post-content p {
  margin-bottom: 2em;
}
.single-post .post-container .post-info .post-content h4 {
  font-size: min(max(20px, 2vw), 24px);
}