.gp-single-post-layout {
  min-height: 100dvh;
  background: #f6f6f6;
  color: #171717;
  font-family: "Josefin Sans", sans-serif;
}

.gp-single-post-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: var(--gp-header-height, 155px);
  background-color: #f6f6f6;
}

.gp-single-post-header .bde-section {
  background-color: #f6f6f6 !important;
}

.gp-single-post-main > .section-container {
  min-height: 100dvh;
  padding-top: calc(var(--gp-header-height, 155px) + 32px);
  padding-bottom: calc(var(--gp-footer-height, 100px) + 32px);
}

.gp-single-post-columns {
  display: grid;
  grid-template-columns: minmax(180px, 24%) minmax(0, 1fr);
  gap: var(--bde-column-gap, 32px);
  width: 100%;
}

.gp-single-post-sidebar,
.gp-single-post-article {
  min-width: 0;
}

.gp-single-post-article-header {
  margin-bottom: 28px;
}

.gp-single-post-title {
  margin: 0 0 10px;
  color: #171717;
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.gp-single-post-date {
  display: block;
  color: #676767;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.gp-single-post-featured-image {
  float: left;
  width: 47%;
  max-width: none;
  margin: 0 25px 25px 0 !important;
}

.gp-single-post-featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

.gp-single-post-content {
  color: #676767;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.gp-single-post-content > :first-child {
  margin-top: 0;
}

.gp-single-post-content > :last-child {
  margin-bottom: 0;
}

.gp-single-post-content img,
.gp-single-post-content video,
.gp-single-post-content iframe {
  max-width: 100%;
}

.gp-single-post-content a {
  color: #676767;
  text-decoration: none;
  transition: color 0.4s ease;
}

.gp-single-post-content a:hover,
.gp-single-post-content a:focus-visible {
  color: #c1272d;
}

.gp-single-post-back {
  display: inline-block;
  color: #171717;
  font-family: "Josefin Sans", sans-serif;
  font-size: 23px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.gp-single-post-back:hover,
.gp-single-post-back:focus-visible {
  color: #c1272d;
}

.gp-single-post-bottom {
  display: flex;
  clear: both;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-top: 32px;
}

@media (max-width: 1119px) {
  .gp-single-post-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .gp-single-post-sidebar {
    display: none;
  }
}

@media (max-width: 1023px) {
  .gp-single-post-article {
    display: flex;
    flex-direction: column;
  }

  .gp-single-post-article-header {
    order: 0;
  }

  .gp-single-post-content {
    order: 2;
  }

  .gp-single-post-featured-image {
    float: none;
    order: 1;
    width: 100%;
    max-width: none;
    margin: 0 0 25px !important;
  }

  .gp-single-post-bottom {
    order: 3;
  }
}

@media (max-width: 767px) {
  .gp-single-post-main > .section-container {
    padding-top: calc(var(--gp-header-height, 155px) + 20px);
    padding-bottom: calc(var(--gp-footer-height, 150px) + 20px);
  }

  .gp-single-post-title {
    font-size: 28px;
  }

  .gp-single-post-content {
    font-size: 17px;
  }
}
