/*======================= Header Wrapper Styles ========================*/
.header__wrapper .h1 {
  font-size: 5rem;
  line-height: 1;
  font-family: var(--body-font);
  font-weight: 900;
}
.header__wrapper .items {
  min-height: 24rem;
  padding: 11rem 0 5rem 0;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5490196078);
}
.header__wrapper .items::before {
  content: none;
}
.header__wrapper.detail .h1 {
  font-size: 3.75rem;
  line-height: 1.3;
  font-weight: 700;
}

.blog__card {
  border: 1px solid #c4c4c4;
  border-radius: var(--border-radius);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
}
.blog__card .thumbnail img {
  border-radius: var(--border-radius);
}
.blog__card .caption .title {
  font-size: 1.35rem;
  line-height: 1.3;
  overflow: hidden;
}
.blog__card .caption .title a {
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.blog__card .caption .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 0.875rem;
}

.detail__box {
  max-width: 900px;
  position: relative;
}
.detail__box .h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
}
.detail__box h2, .detail__box .h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--heading-color);
}
.detail__box h3, .detail__box .h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--heading-color);
}
.detail__box h4, .detail__box .h4 {
  font-size: 1.5rem;
  font-weight: 600;
}
.detail__box h5, .detail__box .h5 {
  font-size: 1.35rem;
  font-weight: 600;
}
.detail__box .back__btn {
  width: 4rem;
  height: 4rem;
  background: url("../images/icons/angle-left.svg") no-repeat center center/1.35rem;
  background-color: #f9f9f9;
  position: absolute;
  top: 0%;
  left: -5rem;
}
.detail__box .back__btn:hover {
  background-color: #eeeeee;
}

@media (max-width: 992px) {
  .header__wrapper .h1 {
    font-size: 4rem;
  }
  .header__wrapper.detail .h1 {
    font-size: 2.75rem;
  }
  .detail__box .h1 {
    font-size: 2rem;
  }
  .detail__box h2, .detail__box .h2 {
    font-size: 1.75rem;
  }
  .detail__box h3, .detail__box .h3 {
    font-size: 1.5rem;
  }
  .detail__box h4, .detail__box .h4 {
    font-size: 1.35rem;
  }
  .detail__box h5, .detail__box .h5 {
    font-size: 1.25rem;
  }
  .detail__box .back__btn {
    width: 3rem;
    height: 3rem;
    position: static;
  }
}
@media (max-width: 575px) {
  .header__wrapper .h1 {
    font-size: 3rem;
  }
  .header__wrapper .items {
    min-height: 17rem;
    padding: 7rem 0 3rem 0;
  }
  .header__wrapper.detail .h1 {
    font-size: 1.75rem;
  }
  .detail__box .h1 {
    font-size: 2rem;
  }
  .detail__box h2, .detail__box .h2 {
    font-size: 1.5rem;
  }
  .detail__box h3, .detail__box .h3 {
    font-size: 1.35rem;
  }
  .detail__box h4, .detail__box .h4 {
    font-size: 1.25rem;
  }
  .detail__box h5, .detail__box .h5 {
    font-size: 1.125rem;
  }
}/*# sourceMappingURL=blog.css.map */