.section__blog-page {
  padding-top: 4.5rem;
}

/* CSS BREADCRUMB */
.breadcrumb-item a {
  color: #666;
  text-decoration: none;
  font-size: 1.4rem;
}

.breadcrumb-item.active {
  color: rgba(0, 0, 0, 1);
  font-weight: 500;
}

/* CSS LIST BLOG LATEST */
.post__item-meta {
  font-size: 1.4rem;
  color: rgba(142, 142, 142, 1);
}

.post__item-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: rgba(35, 31, 32, 1);
}

.post__item-card-text {
  font-size: 1.4rem;
  color: rgba(35, 31, 32, 1);
  text-align: justify;
}

.post__item-card-stats {
  font-size: 1.4rem;
  color: rgba(142, 142, 142, 1);
}

.section__blog-new-title .main-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.section__blog-new-title .main-title::after {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  width: 100%;
  background-color: rgba(229, 229, 229, 1);
}

.news-card {
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card__content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

.news-card__image {
  position: relative;
  overflow: hidden;
}

.news-card__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
  border-radius: 20px;
}

.news-card__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

.news-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0;
}

.badge {
  padding: 0.5rem 1rem;
  font-weight: 500;
  background: rgba(128, 128, 128, 0.55);
  color: white;
  border-radius: 6px;
}

.top-3 {
  top: 2rem;
}

.start-3 {
  left: 2rem;
}

.section__blog-img {
  width: 42.4rem;
  height: 42.4rem;
}

@media (max-width: 991px) {
  .section__blog-img {
    width: 100%;
    height: 30rem;
  }

  .section__blog {
    padding: 2rem 0;
  }
}

.section__blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section__blog-category a {
  color: #000;
  text-decoration: none;
}