/* =========================
   		SECTION - 1
========================= */
/* ====================================
   Service HERO
==================================== */

.blog-list-sec-1-section {
  position: relative;
  overflow: hidden;

  height: 400px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-list-sec-1-bg {
  position: absolute;
  inset: 0;

  overflow: hidden;
}

.blog-list-sec-1-parallax-img {
  position: absolute;

  top: -15%;
  left: 0;

  width: 100%;
  height: 130%;

  object-fit: cover;

  will-change: transform;
}

.blog-list-sec-1-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
}

.blog-list-sec-1-container {
  position: relative;
  z-index: 3;

  max-width: 1500px;
  width: 90%;

  padding: 0 40px;
}

.blog-list-sec-1-content {
  text-align: center;
}

/* TITLE */

.blog-list-sec-1-title {
  color: #ffffff;

  font-size: 56px;
  font-weight: 700;

  line-height: 1.1;

  margin-bottom: 20px;
  font-family: var(--secondary-font);
}

/* BREADCRUMB */

.blog-list-sec-1-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  color: #ffffff;

  font-size: 18px;
  font-weight: 500;
}

.blog-list-sec-1-breadcrumb a {
  color: #ffffff;

  text-decoration: none;

  transition: 0.3s;
}

.blog-list-sec-1-breadcrumb a:hover {
  color: #facc15;
}

.blog-list-sec-1-breadcrumb span:last-child {
  color: #facc15;
}

/* ====================================
   RESPONSIVE
==================================== */

@media (max-width: 1200px) {
  .blog-list-sec-1-section {
    height: 500px;
  }

  .blog-list-sec-1-title {
    font-size: 52px;
  }
}

@media (max-width: 992px) {
  .blog-list-sec-1-section {
    height: 450px;
  }

  .blog-list-sec-1-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .blog-list-sec-1-section {
    height: 400px;
  }

  .blog-list-sec-1-container {
    padding: 0 24px;
  }

  .blog-list-sec-1-title {
    font-size: 40px;
  }

  .blog-list-sec-1-breadcrumb {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .blog-list-sec-1-section {
    height: 340px;
  }

  .blog-list-sec-1-title {
    font-size: 34px;
  }

  .blog-list-sec-1-breadcrumb {
    gap: 8px;
    font-size: 14px;
  }
}





/* =========================
   		SECTION - 2
========================= */

.blog-list-sec-2-section {
  padding: 120px 0;
  background: #f8fafc;
}

.blog-list-sec-2-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
}

.blog-list-sec-2-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 80px;
}

.blog-list-sec-2-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;

  margin-bottom: 20px;
}

.blog-list-sec-2-tag::before {
  content: "";

  width: 8px;
  height: 8px;

  background: #facc15;
}

.blog-list-sec-2-title {
  font-size: 48px;
  line-height: 1.1;

  margin-bottom: 20px;

  color: #111827;
}

.blog-list-sec-2-description {
  color: #64748b;
  line-height: 1.4;
  font-size: 18px;
  margin: auto;
  max-width: 600px;
}

/* GRID */

.blog-list-sec-2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 30px;
}

/* CARD */

.blog-list-sec-2-card {
  transition: 0.35s ease;
}

.blog-list-sec-2-card:hover {
  transform: translateY(-8px);
}

.blog-list-sec-2-image {
  border-radius: 8px;
  overflow: hidden;

  margin-bottom: 24px;
}

.blog-list-sec-2-image img {
  width: 100%;
  height: 320px;

  object-fit: cover;

  display: block;

  transition: 0.6s ease;
}

.blog-list-sec-2-card:hover img {
  transform: scale(1.08);
}

.blog-list-sec-2-meta {
  display: flex;
  gap: 10px;

  margin-bottom: 16px;

  color: #64748b;
  font-size: 14px;
}

.blog-list-sec-2-meta span:first-child {
  color: #facc15;
  font-weight: 700;
}

.blog-list-sec-2-card-title {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #111827;
  transition: 0.3s;
}

.blog-list-sec-2-card:hover .blog-list-sec-2-card-title {
  color: #facc15;
}

.blog-list-sec-2-card-text {
  color: #64748b;

  line-height: 1.4;

  margin-bottom: 22px;
}

.blog-list-sec-2-link {
  color: #111827;

  text-decoration: none;

  font-weight: 700;

  position: relative;
}

.blog-list-sec-2-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -4px;

  width: 0;
  height: 2px;

  background: #facc15;

  transition: 0.3s;
}

.blog-list-sec-2-link:hover::after {
  width: 100%;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .blog-list-sec-2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-list-sec-2-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .blog-list-sec-2-container {
    padding: 0 24px;
  }

  .blog-list-sec-2-grid {
    grid-template-columns: 1fr;
  }

  .blog-list-sec-2-title {
    font-size: 38px;
  }

  .blog-list-sec-2-image img {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .blog-list-sec-2-title {
    font-size: 30px;
  }

  .blog-list-sec-2-card-title {
    font-size: 24px;
  }
}
