@media (max-width: 1120px) {
  .section {
    padding: 0;
  }
}
@media (max-width: 1120px) {
  .section.subscribe {
    padding: 0 15px;
  }
}
@media (max-width: 1120px) {
  .section.site-footer {
    padding: 0 15px;
  }
}
@media (max-width: 1120px) {
  .section.copyright {
    padding: 0 15px;
  }
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
@media (max-width: 1120px) {
  .post-layout .post-content-left {
    order: 2;
    padding: 0 15px;
  }
}
@media (max-width: 1120px) {
  .post-layout .post-content-left ul {
    margin-left: 40px;
  }
}
@media (max-width: 1120px) {
  .post-layout .post-image-right {
    order: 1;
  }
}
@media (max-width: 1440px) {
  .post-layout {
    gap: 50px;
  }
}
@media (max-width: 1120px) {
  .post-layout {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.blog_page_single {
  color: #000;
}
.blog_page_single h1 {
  font-size: var(--fs-heading);
  font-weight: 300;
  margin-bottom: 30px;
}
@media (max-width: 1120px) {
  .blog_page_single h1 {
    font-size: var(--fs-subhead-lg);
  }
}
.blog_page_single p {
  margin-bottom: 20px;
}
@media (max-width: 1120px) {
  .blog_page_single p {
    font-size: 16px;
  }
}
.blog_page_single .post-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666666;
  font-weight: 100;
  font-size: 16px;
}
.blog_page_single .post-text {
  font-size: var(--fs-body);
  font-weight: 400;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid #141414;
}
.blog_page_single .post-text a {
  color: #A6A2A2;
}
.blog_page_single .post-text a:hover {
  color: #000;
  text-decoration: none;
}
.blog_page_single .post-image-right {
  position: relative;
}
.blog_page_single .post-image-right img {
  position: sticky;
  top: 0;
  width: 38.0208333333vw;
  height: 45vw;
  transform: translate(172px, 0px);
}
@media (max-width: 1440px) {
  .blog_page_single .post-image-right img {
    width: 50.6944444444vw;
    height: 60vw;
    transform: translate(15px, 0px);
  }
}
@media (max-width: 1120px) {
  .blog_page_single .post-image-right img {
    width: 100%;
    height: 500px;
    transform: translate(0px);
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .blog_page_single .post-image-right img {
    height: 320px;
  }
}
.blog_page_single button.share {
  border: none;
  padding: 5px 35px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #E2E2D6;
}
.blog_page_single .blog-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}
@media (max-width: 1120px) {
  .blog_page_single .blog-grid {
    grid-template-columns: 1fr !important;
    /* Separate posts clearly (design: 30) so a title groups with the photo
       ABOVE it, not the next post below */
    row-gap: 30px;
  }
  /* Tighter photo → title so the title reads as belonging to its own photo */
  .blog_page_single .blog-grid .blog__item {
    gap: 12px;
  }
}
.blog_page_single .blog-grid .blog__item:first-child {
  grid-column: 1 !important;
}
.blog_page_single .blog-grid .blog__item:first-child .item_title {
  font-size: var(--fs-subhead);
}
@media (max-width: 1120px) {
  .blog_page_single .blog-grid .blog__item:first-child .item_title {
    font-size: var(--fs-body);
  }
}
.blog_page_single ol {
  margin-left: 40px;
}

/* Hide the YARPP "related posts" block injected into single post content */
.yarpp.yarpp-related,
.yarpp-related,
.yarpp-related-website,
.yarpp-template-list {
  display: none !important;
}
