.blog-banner {
  position: relative;
  padding: 150px 0 80px;
  text-align: center;
  background-color: #040b12;
}

.blog-banner h1 {
  color: #fff;
  font-size: 56px;
  font-family: IntegralCF-Bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.blog-container {
  padding: 80px 0;
  background-color: #040b12;
}

.blog-card {
  background: linear-gradient(
    135deg,
    rgba(30, 58, 86, 0.3),
    rgba(14, 30, 46, 0.3)
  );
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.blog-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.blog-date {
  font-size: 14px;
  color: #fcc601;
  font-weight: 500;
}

.blog-category {
  font-size: 14px;
  padding: 2px 10px;
  background-color: rgba(252, 198, 1, 0.2);
  color: #fcc601;
  border-radius: 20px;
  text-transform: uppercase;
}

.blog-title {
  font-family: IntegralCF-Bold;
  color: #fff;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.3;
  min-height: 52px;
}

.blog-excerpt {
  color: #ccc;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.blog-read-more {
  position: relative;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  padding-right: 25px;
  transition: color 0.3s ease;
}

.blog-read-more:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 12px;
  background-image: url("images/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  color: #fcc601;
}

.blog-read-more:hover:after {
  transform: translate(5px, -50%);
}

.blog-section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.blog-section-heading h2 {
  color: #fff;
  font-size: 40px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.blog-section-heading h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #fcc601;
}

.featured-blog {
  margin-bottom: 80px;
}

.featured-blog .blog-card {
  display: flex;
  flex-direction: row;
  height: auto;
}

.featured-blog .blog-image {
  width: 50%;
  height: auto;
  min-height: 400px;
}

.featured-blog .blog-content {
  width: 50%;
  padding: 40px;
}

.featured-blog .blog-title {
  font-size: 28px;
  min-height: auto;
}

.featured-blog .blog-excerpt {
  font-size: 16px;
}

@media (max-width: 991px) {
  .featured-blog .blog-card {
    flex-direction: column;
  }

  .featured-blog .blog-image,
  .featured-blog .blog-content {
    width: 100%;
  }

  .featured-blog .blog-image {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .blog-banner h1 {
    font-size: 40px;
  }

  .blog-container {
    padding: 50px 0;
  }

  .blog-section-heading h2 {
    font-size: 30px;
  }

  .featured-blog {
    margin-bottom: 50px;
  }
}
