/* :root {
  --font-smaller: 12px;
  --font-small: 13px;
  --font-common: 14px;
  --font-middle: 15px;
  --font-normal: 16px;
  --font-large: 18px;
  --font-larger: 20px;
  --font-largest: 23px;
  --font-subtitle: 28px;
  --font-caption: 30px;
  --font-title: 45px;
  --black-color: #000;
  --black-color-100: #333;
  --grey-color-100: #4d4d4d;
  --grey-color-150: #9d9d9d;
  --grey-color-200: #616161;
  --grey-color-250: #bcbcbc;
  --grey-color-300: #c4c4c4;
  --grey-color-350: #cfcfcf;
  --grey-color-400: #dcdcdc;
  --grey-color-450: #e5e5e5;
  --grey-color-500: #b8b8b8;
  --grey-color-550: #ccc;
  --grey-color-600: #dbdbdb;
  --grey-color-opacity-20: rgba(158, 158, 158, 0.23);
  --white-color: #fff;
  --white-color-opacity-75: rgba(255, 255, 255, 0.75);
  --white-color-opacity-65: rgba(255, 255, 255, 0.65);
  --white-color-opacity-60: rgba(255, 255, 255, 0.60);
  --white-color-100: #f7f7f7;
  --white-color-200: #f3f3f3;
  --blue-color-100: #abbece;
  --gradient-black-100: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.74) 100%);
  --gradient-black-hero: linear-gradient(90.29deg, #383838 0.25%, rgba(45, 45, 45, 0.56) 99.07%);
  --gradient-black-300: linear-gradient(198.1deg, #6E6E71 -7.67%, #252429 46.83%);
  --gradient-blue-100: linear-gradient(90.61deg, rgba(171, 190, 206, 0.1) 0.53%, rgba(171, 190, 206, 0.68) 52.08%, rgba(171, 190, 206, 0.1) 99.51%);
  --gradient-blue-200: linear-gradient(113.26deg, rgba(171, 190, 206, 0.35) 1.43%, rgba(171, 190, 206, 0) 110.33%);;
} */

/* SINGLE POST */
.hero__author {
  margin: 0 0 40px;
}
.hero__author-label {
  font-weight: 700;
}
.hero__post-info {
  margin: 0 0 70px;
}
.hero__post-label {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.hero__post-date {
  margin: 0 50px 0 0;
}
.hero__post-label::before {
  content: '';
  display: inline-flex;
  width: 35px;
  height: 35px;
  margin: 0 20px 0 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.hero__post-date::before {
  background-image: url(/wp-content/uploads/2022/02/calendar.svg);
}
.hero__post-who::before {
  background-image: url(/wp-content/uploads/2022/02/people.svg);
}
.hero__title {
  font-size: var(--font-caption);
  text-transform: uppercase;
  color: var(--white-color);
}

/* POST CONTENT */
.post-content {
  margin: 0 0 190px;
}
.post-content__container > * {
  line-height: 2;
  margin: 0 0 40px;
}
.post-content__container > *:last-child {
  margin: 0;
}
.post-content p,
.post-content li,
.post-content blockquote {
  font-size: var(--font-normal);
}
.post-content ul li {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
}
.post-content ul li::before {
  content: '';
  flex: 0 0 auto;
  display: block;
  width: 20px;
  height: 20px;
  margin: 6px 20px 0 0;
  background-color: var(--blue-color-100);
  border-radius: 50%;
}
.post-content li:not(:last-child) {
  margin: 0 0 20px;
}
.post-content a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--black-color);
  transition: color 0.3 ease;
}
.videos__wrapper {
  max-width: 1024px;
  margin: 0 auto;
}

@media (hover:hover) {
  .post-content a:hover {
    color: var(--blue-color-100);
  }
}
@media (max-width: 1400px) {
  .post-content {
    margin: 0 0 100px;
  }
  .post-content__container > * {
    margin: 0 0 25px;
  }
  .post-content__container > *:last-child {
    margin: 0;
  }
  .post-content li:not(:last-child) {
    margin: 0 0 15px;
  }
}
@media (max-width: 1024px) {
  .hero__author {
    margin: 0 0 20px;
  }
  .post-content {
    margin: 0 0 60px;
  }
}
@media (max-width: 768px) {
  .post-content {
    margin: 0 0 60px;
  }
  .post-content__container > * {
    line-height: 1.3;
  }
  .post-content ul li::before {
    margin: 1px 10px 0 0;
  }
}
@media (max-width: 480px) {
  .hero__author {
    justify-content: center;
  }
  .hero__inner {
    background-image: none !important;
  }
  .hero__author-label {
    transform: translateX(5px);
  }
  .hero__post-date::before {
    display: none;
  }
  .hero__post-date {
    margin: 0 auto;
  }
}