.blog-page-hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
  margin-top: 0;
}

.blog-page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 20, 41, 0.84),
    rgba(8, 20, 41, 0.26)
  );
  z-index: 1;
}

.blog-page-hero-content {
  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);
  width: calc(100% - 140px);
  max-width: 1280px;
  z-index: 2;
  color: #ffffff;
}

.blog-page-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.blog-page-hero-content h1 {
  font-size: 56px;
  line-height: 1.08;
  max-width: 900px;
  margin-bottom: 20px;
}

.blog-page-hero-content p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
}

.blog-page-container {
  max-width: 1280px;
  margin: 0 auto;
}

.blog-page-header {
  text-align: left;
  max-width: 900px;
  margin: 0 0 40px 0;
}

.blog-featured-section {
  padding: 100px 70px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef3fa 100%);
}

.featured-blog-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(18, 47, 95, 0.1);
  border: 1px solid rgba(44, 90, 160, 0.08);
}

.featured-blog-image {
  overflow: hidden;
}

.featured-blog-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.featured-blog-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-blog-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2c5aa0;
  margin-bottom: 14px;
}

.featured-blog-content h3 {
  font-size: 36px;
  line-height: 1.2;
  color: #18355f;
  margin-bottom: 16px;
}

.featured-blog-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #5c6c80;
  margin-bottom: 22px;
}

.featured-blog-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  color: #607084;
  font-size: 14px;
}

.featured-blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.featured-blog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2c5aa0, #163c7a);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.blog-listing-section {
  padding: 100px 70px;
  background: #ffffff;
}

.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.blog-list-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(18, 47, 95, 0.08);
  border: 1px solid rgba(44, 90, 160, 0.07);
  transition: 0.35s ease;
}

.blog-list-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(18, 47, 95, 0.13);
}

.blog-list-image {
  overflow: hidden;
}

.blog-list-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-list-card:hover .blog-list-image img {
  transform: scale(1.05);
}

.blog-list-content {
  padding: 26px 24px 28px;
}

.blog-list-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2c5aa0;
  margin-bottom: 12px;
}

.blog-list-content h3 {
  font-size: 24px;
  line-height: 1.35;
  color: #18355f;
  margin-bottom: 14px;
}

.blog-list-content p {
  font-size: 15px;
  line-height: 1.85;
  color: #607084;
  margin-bottom: 18px;
}

.blog-list-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #7a8898;
  margin-bottom: 20px;
}

.blog-list-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2c5aa0, #163c7a);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .blog-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .featured-blog-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blog-featured-section,
  .blog-listing-section {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .blog-page-hero {
    min-height: 420px;
    height: 58vh;
  }

  .blog-page-hero-content {
    width: calc(100% - 36px);
    bottom: 28px;
  }

  .blog-page-hero-content h1 {
    font-size: 30px;
    line-height: 1.18;
  }

  .blog-page-hero-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .featured-blog-content {
    padding: 24px 18px 28px;
  }

  .featured-blog-content h3 {
    font-size: 28px;
  }

  .featured-blog-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .featured-blog-image img {
    min-height: 260px;
  }

  .blog-listing-grid {
    grid-template-columns: 1fr;
  }

  .blog-list-content {
    padding: 20px 18px 24px;
  }

  .blog-list-content h3 {
    font-size: 22px;
  }

  .blog-list-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .blog-list-image img {
    height: 210px;
  }
}

@media (max-width: 480px) {
  .blog-page-hero-content h1 {
    font-size: 26px;
  }

  .featured-blog-content h3 {
    font-size: 24px;
  }

  .blog-list-content h3 {
    font-size: 20px;
  }
}
