.hero {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(13, 13, 13, 0)), to(#0D0D0D)), var(--hero-bg) center/cover no-repeat;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0) 0%, #0D0D0D 100%), var(--hero-bg) center/cover no-repeat;
}
.hero__container {
  padding-top: clamp(30px, 4vw, 50px);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.hero__content h1 {
  font-size: clamp(24px, 5.6vw, 84px);
}
.hero__content h1:not(:last-child) {
  margin-bottom: clamp(15px, 3.5vw, 40px);
}
.hero__before {
  display: block;
  font-size: clamp(12px, 2.4vw, 14px);
  text-transform: uppercase;
  color: var(--orange);
}
.hero__before:not(:last-child) {
  margin-bottom: clamp(15px, 3.5vw, 30px);
}
.hero__subtitle {
  width: 100%;
  max-width: 900px;
  font-size: clamp(14px, 2.2vw, 22px);
}
.hero__subtitle:not(:last-child) {
  margin-bottom: clamp(15px, 3.5vw, 20px);
}
.hero__date {
  font-size: clamp(14px, 2vw, 20px);
}

.single-post h1 {
  font-size: clamp(24px, 3.6vw, 54px);
}