.blog-detail {
  .sidebar-layout__left {
    padding-top: 5px;
  }

  &__header {
    margin-bottom: 20px;

    h1 {
      font-size: 4.3rem;
      line-height: 5rem;
      margin-bottom: 10px;
      margin-top: 18px;

      @include md {
        font-size: 3.3rem;
        line-height: 4rem;
      }
    }
  }

  &__top-sidebar {
    margin-bottom: 30px;
  }

  &__bottom-sidebar {
    margin-top: 30px;
  }

  &__date-cats {
    font-size: 14px;
    color: $gray-70;
    letter-spacing: .15px;
    margin-bottom: 30px;

    a {
      color: $gray-70;
      text-decoration: none;
    }
  }

  &__date {
    margin-right: 30px;
  }

  &__authors {
    border-top: 1px solid $gray-20;
    border-bottom: 1px solid $gray-20;
    padding: 15px 0 0;
    display: flex;
    flex-wrap: wrap;
  }

  &__author {
    display: flex;
    max-width: 250px;
    margin-right: 15px;
    margin-bottom: 15px;
    text-decoration: none;

    &a {
      text-decoration: none;
    }

    &-image {
      filter: grayscale(100%);
      overflow: hidden;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      background:$gray-20;
      margin-right: 10px;
      flex-shrink: 0;
      transition: filter .45s linear;
    }

    &-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    &-name {
      font-size: 16px;
      color: $gray-90;
      font-weight: 700;
      letter-spacing: .11px;
    }

    &-position {
      font-size: 12px;
      color: $gray-70;
    }

    &:hover {
      .blog-detail__author-image {
        filter: grayscale(0);
      }
    }
  }

  &__main-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
    margin-bottom: 15px;
  }

  &__content {
    color: $primary-color;
    padding-bottom: 50px;
    border-bottom: 7px solid $medium-color;
    margin-bottom: 20px;

    a {
      color: $medium-color;
      text-decoration: none;
    }

    img {
      vertical-align: bottom;
    }
  }

  &__interview {
    padding-top: 20px;
  }

  &__question {
    margin-top: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
  }

  &__answer {
    margin-bottom: 40px;

    p:first-of-type {
      margin-top: 0;
    }
  }

  &__interviewed {
    font-size: 13px;
    font-weight: 700;
    color: $gray-70;
  }

  &__testimonials-section {
    display: flex;
    justify-content: space-between;
    margin: 40px 0 60px;

    @include xs {
      flex-direction: column;
      align-items: center;
      padding: 0 15px;
    }
  }

  &__testimonials-image {
    border-radius: 100%;
    overflow: hidden;
    width: 88px;
    height: 88px;
    background-color: $gray-20;
  }

  &__testimonials-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 15px;

    @include xs {
      align-items: center;
      padding: 0;
    }

    h2 {
      color: $primary-color;
      font-size: 26px;
      font-weight: 700;
      letter-spacing: 0;
      line-height: 29px;
      margin: 20px 0 0;

      @include xs {
        text-align: center;
      }
    }

    span {
      font-size: 12px;
      letter-spacing: 0.09px;
      line-height: 15px;
      font-weight: 400;

      @include xs {
        text-align: center;
      }
    }

    p {
      color: $medium-color;
      font-size: 18px;
      font-style: italic;
      letter-spacing: 0;
      font-weight: 400;

      @include xs {
        text-align: center;
      }
    }
  }

  &__contact-button {
    margin: 25px 0 0;
    padding: 0 20px;
    min-width: 150px;

    @include xs {
      margin: 0;
    }
  }

  &__cta-section {
    display: flex;
    justify-content: space-between;
    margin: 40px 0 60px;

    @include xs {
      flex-direction: column;
      align-items: center;
      padding: 0 15px;
    }
  }

  &__cta-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 30px 0 0;

    @include xs {
      align-items: center;
      padding: 0;
    }

    h2 {
      color: $medium-color;
      font-size: 26px;
      font-weight: 700;
      letter-spacing: 0;
      line-height: 29px;
      margin: 0;

      @include xs {
        text-align: center;
      }
    }

    p {
      font-size: 16px;
      letter-spacing: 0.23px;
      font-weight: 400;

      @include xs {
        text-align: center;
      }
    }
  }

  &__cta-button {
    padding: 0 20px;
    min-width: 150px;
  }
}
