.blog-home {
  padding-bottom: 40px;

  @media (min-width: 768px) {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.blog-home__title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 700;

  @media (min-width: 768px) {
    font-size: 32px;
  }
}

.blog-home__main {
  @media (max-width: 767px) {
    margin-bottom: 40px;
  }

  @media (min-width: 768px) {
    padding-right: 14px;

    .article__title {
      font-size: 24px;
    }
  }

  @media (min-width: 992px) {
    padding-right: 45px;
  }

  @media (min-width: 1200px) {
    padding-right: 90px;
  }
}

.blog-home__sidebar {
  .cta-box__txt {
    font-size: 21px;
  }
}

.top-stories {
  padding-top: 40px;
  padding-bottom: 25px;
  background-image: url("../../../../img/layout/dot-pattern.png");
}

.top-stories__title {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 700;

  @media (min-width: 768px) {
    font-size: 32px;
  }
}

/* Blog Featured Post Hero */
.lp__hero {
  &.blog__featured-hero {
    padding: 30px;
    box-shadow: 0 0 10px 0 rgba(17, 17, 17, 0.3);

    h1 {
      font-family: Roboto;
      font-size: 28px;
      font-weight: bold;
      font-stretch: normal;
      font-style: normal;
      line-height: normal;
      letter-spacing: normal;
      color: #434343;
    }

    .lp__hero-block {
      align-items: center;

      .lp__hero-item {
        &:first-child {
          padding-right: 30px !important;
        }
      }
    }

    .featured__post-meta {
      font-family: Roboto;
      font-size: 18px;
      font-weight: normal;
      font-stretch: normal;
      font-style: normal;
      line-height: normal;
      letter-spacing: normal;
      color: #a1a1a1;
      margin-bottom: 30px;

      .featured__post-date {
        display: inline;
      }

      .featured__post-tags {
        display: inline;

        .featured__post-tag {
          display: inline;

          a {
            font-family: Roboto;
            font-size: 18px;
            display: inline;
            font-weight: bold;
            text-transform: capitalize;
            color: #a1a1a1;

            &:hover {
              text-decoration: underline;
            }
          }
        }
      }
    }

    .cta__single-button {
      a {
        position: relative;
        display: inline-block;
        text-align: center;
        font-family: Roboto;
        font-size: 16px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        color: #ffffff;
        background-color: #FF6200;
        padding: 11px 26.5px;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;

        &:hover {
          background-color: #ff7a00;
        }
      }
    }
  }
}

@media screen and (max-width: 991px) {
  .lp__hero {
    &.blog__featured-hero {
      padding: 30px 0;

      .lp__hero-block {
        .lp__hero-item {
          &:first-child {
            padding: 0 !important;

            h1 {
              font-size: 21px;
              text-align: left;
              left: 0;
              transform: none;
            }

            .cta__button {
              margin-bottom: 30px;

              .cta__single-button {
                text-align: left;
              }
            }
          }

          .featured__post-meta {
            text-align: left;
            font-size: 14px;

            .featured__post-tags {
              .featured__post-tag {
                a {
                  font-size: 14px;
                }
              }
            }
          }
        }
      }
    }
  }
}