@import "../templates/blocks/posts/block.css";
#main-content header {
  min-height: 100vh;
  position: relative;
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
#main-content header .background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#main-content header .background-container:after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  bottom: 0;
  top: auto;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
#main-content header .background-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.8;
}
#main-content header .content {
  width: 100%;
  z-index: 3;
  color: #fff;
  padding-bottom: 6rem;
}
#main-content header .content h1 {
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  margin: 0 0;
  line-height: 1;
  font-size: clamp(3rem, 8vw, 12rem);
}
#main-content header .content .date {
  font-weight: bold;
}

.terms {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: flex-start;
}
.terms .term, .terms .sticky {
  opacity: 0.7;
  border: 1px solid #fff;
  color: #fff;
  padding: 5px 15px;
  border-radius: 0.4rem;
  font-weight: 400;
  transition: color 0.3s ease-out, background 0.3s ease-out, border-color 0.3s ease-out;
  display: block;
  line-height: 2rem;
}
.terms .term:hover, .terms .sticky:hover {
  opacity: 1;
  color: #fff;
  background: #ee4850;
  border-color: #ee4850;
}
.terms .term.sticky, .terms .sticky.sticky {
  opacity: 1;
  background: #ee4850;
  border-color: #ee4850;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: none;
  line-height: 2rem;
}

.section-related-posts {
  padding-bottom: 8rem;
}
.section-related-posts .text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.section-related-posts .text h2 {
  margin: 0;
}
.section-related-posts .post-slider {
  margin-inline: -1rem;
}
.section-related-posts .post {
  padding-inline: 1rem;
}
.section-related-posts .post a {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 2rem;
  color: inherit;
}
.section-related-posts .post .content {
  flex-grow: 1;
}
.section-related-posts .post .content h2, .section-related-posts .post .content h3 {
  margin: 0;
}
.section-related-posts .post .image img {
  display: block;
  transition: transform 0.3s ease-in-out;
}
.section-related-posts .post:hover .image img {
  transform: scale(1.05);
}
.section-related-posts .post .categories {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.section-related-posts .post .categories span {
  padding: 0.5rem 2rem;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  opacity: 0.7;
  font-weight: 400;
}
.section-related-posts .post .image {
  aspect-ratio: 460/417;
  overflow: hidden;
}
.section-related-posts .post .image img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  display: block;
}
.section-related-posts .post .categories span {
  border-color: #ee4850;
  color: #ee4850;
  opacity: 1;
}
.section-related-posts .post .content {
  padding: 2rem 3rem;
  background: #fff;
}
.section-related-posts .post .content h2, .section-related-posts .post .content h3 {
  max-width: 340px;
  font-size: 3.5rem;
}
.section-related-posts .arrows {
  display: flex;
  gap: 1rem;
  align-items: center;
}

#main-content {
  overflow: visible;
}

main {
  padding-block: 8rem;
  position: relative;
  z-index: 10;
  line-height: 1.625;
}
main .wp-block-image {
  margin-block: 4rem;
}
main .wp-block-image img {
  border-radius: 2rem;
}
main h2, main .h2 {
  font-size: clamp(2.6rem, 3vw, 6rem);
}
main h3 {
  font-size: 2.4rem;
  margin-top: 2em;
}
main h2, main h3, main h4 {
  line-height: 1;
}
main .has-medium-font-size {
  font-size: 2.4rem;
  line-height: 1.4;
}
main .wp-block-quote {
  margin: 2rem auto;
  max-width: 500px;
  text-align: center;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
}
main .wp-block-quote p {
  margin-bottom: 0.5rem;
}
main .wp-block-quote cite {
  color: #ee4850;
  text-transform: uppercase;
  font-weight: bold;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 3px;
}

.post-share {
  padding-top: 80px;
  text-align: left;
  position: sticky;
  top: 80px;
}
.post-share ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.post-share ul li {
  display: block;
  margin: 10px 0;
}
.post-share ul li svg {
  width: 34px;
  height: 34px;
}
.post-share ul li a {
  color: #9e9e9e;
  transition: color 0.2s ease-out;
}
.post-share ul li svg path {
  transition: fill 0.2s ease-out;
}
.post-share ul li a:hover {
  color: #ee4850 !important;
}
.post-share ul li a:hover svg path {
  fill: #ee4850 !important;
}

@media (max-width: 47.9375rem) {
  #main-content {
    padding-bottom: 40px;
  }
  #main-content header {
    min-height: 0;
    padding: 120px 0 60px 0;
  }
  #main-content > .container {
    background: #fff;
  }
  #main-content main {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
  }
  #main-content main > .inner {
    padding: 30px 0;
  }
  .post-share {
    padding-top: 0;
    padding-bottom: 30px;
  }
  .post-share ul li {
    display: inline-block;
    margin: 10px;
  }
  .section-related-posts .text {
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    align-items: flex-start;
  }
  .section-related-posts .post .image {
    aspect-ratio: 16/10;
  }
  .section-related-posts .post .content {
    padding: 2rem;
  }
  .section-related-posts .post .content h2, .section-related-posts .post .content h3 {
    font-size: 2.8rem;
  }
}

/*# sourceMappingURL=single-post.css.map */
