/**************************/
/* SINGLE HEADING SECTION */
/**************************/

.single-header-section{
  padding: 70px 30px;
  box-sizing: border-box;
}

.single-title{
  width: 57%;
  color: #FFF;
  font-size: 34px;
  margin-bottom: 30px;
}

.single-date{
  font-size: 15px;
  color: #9A9A9A;
  font-weight: 300;
}

/************************/
/* SINGLE IMAGE SECTION */
/************************/

.single-image-section{
  padding: 50px 30px;
  box-sizing: border-box;
}

.single-image{
  width: 100%;
}

/*******************/
/* CONTENT SECTION */
/*******************/

.single-content-section{
  color: #FFF;
  font-size: 15px;
  line-height: 160%;
  padding: 30px;
  box-sizing: border-box;
}

.single-content-section > p{
  max-width: 900px;
}

.single-content-section > ul{
  margin-bottom: 30px;
  padding: 0;
}

.single-content-section p:not(:last-of-type){
  margin-bottom: 30px;
}

.single-content-section h2,
.single-content-section h3{
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 30px;
  max-width: 900px;
  line-height: 120%;
}

.single-content-section > ul:not(.wp-block-gallery) li{
  list-style: none;
  display: flex;
  margin: 30px 0;
  align-items: center;
}

.single-content-section > ul:not(.wp-block-gallery) li:before{
  content: '';
  display: block;
  margin-right: 30px;
  width: 10px;
  height: 10px;
  background-color: #F9AD4A;
  flex-shrink: 0;
}

.single-content-section > ol{
  counter-reset: num;
  padding: 0;
}

.single-content-section > ol li{
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.single-content-section > ol li:before{
  counter-increment: num;
  content: counter(num);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  box-sizing: border-box;
  line-height: 1;
  font-weight: 300;
  border: solid 2px #F9AD4A;
  flex-shrink: 0;
}

.single-content-section blockquote{
  margin: 30px -50vw;
  padding: 0 50vw;
  background-color: #111;
  display: flex;
  align-items: center;
}

.single-content-section blockquote p{
  font-size: 22px;
  font-weight: 300;
  display: flex;
  padding: 20px 0;
  align-items: center;
}

.single-content-section blockquote p:before{
  content: '';
  width: 45px;
  height: 45px;
  display: block;
  flex-shrink: 0;
  margin-right: 30px;
  background-image: url(../img/icons/quote.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.single-content-section figure{
  margin: 30px 0;
  width: 100%;
}

.single-content-section iframe{
  margin: 0 auto;
  display: block;
  width: 100%;
  height: 50vw;
}

.single-content-section figcaption{
  color: #FFF;
  width: 100%;
  font-size: 13px;
  font-weight: 300;
  margin-top: 20px;
}

.wp-block-media-text{
  margin: 30px 0;
}

.wp-block-media-text__media{
  width: 570px;
}

.wp-block-media-text__content{
  padding: 0 0 0 30px !important;
}

.wp-block-media-text__content p{
  max-width: 300px;
}

.wp-block-media-text{
  align-items: flex-start !important;
}

/*============================================================================*/
/*===============================MEDIA QUIRES=================================*/
/*============================================================================*/

/* ADAPTIVE CONTENT */

@media (max-width: 1169px) {

}

@media (max-width: 1019px) {
  .single-header-section{
    padding: 30px;
  }

  .single-title{
    width: 100%;
  }

  .wp-block-media-text{
    grid-template-columns: 40% auto;
  }
}

@media (max-width: 719px) {
  .single-title{
    font-size: 28px;
  }

  .single-content-section h2,
  .single-content-section h3 {
    font-size: 24px;
  }

  .wp-block-media-text{
    grid-template-areas: "media-text-media" "media-text-content";
    grid-template-columns: 100%;
  }

  .wp-block-media-text__media{
    margin-bottom: 30px !important;
  }

  .wp-block-media-text__content{
    padding-left: 0 !important;
  }

  .single-content-section blockquote p:before{
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 479px) {
  .single-image-section{
    padding: 30px;
  }
}
