.blog-list-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #041226, #071a3d 45%, #0a2a6b);
  color: #fff;
}

.blog-list-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
}

.blog-heading {
  margin-bottom: 35px;
}

.blog-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(0, 194, 255, .12);
  color: #4fc3ff;
  font-weight: 700;
}

.blog-heading h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.blog-heading p {
  color: #c8d8f4;
  line-height: 1.7;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.article-card,
.sidebar-widget {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(79,195,255,.22);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 45px rgba(0,0,0,.3);
}

.article-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.article-content {
  padding: 20px;
}

.article-category {
  color: #4fc3ff;
  font-size: 13px;
  font-weight: 800;
}

.article-content h3 {
  margin: 10px 0;
  font-size: 20px;
}

.article-content p {
  color: #c8d8f4;
  line-height: 1.6;
}

.btn-read {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, #006dff, #00c2ff);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.sidebar-widget {
  padding: 22px;
  margin-bottom: 24px;
}

.sidebar-widget h3 {
  margin-bottom: 18px;
  font-size: 22px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a,
.recent-post a {
  color: #dcecff;
  text-decoration: none;
  font-weight: 600;
}

.category-list a:hover,
.recent-post a:hover {
  color: #4fc3ff;
}

.recent-post {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(79,195,255,.18);
}

.recent-post span {
  display: block;
  margin-top: 6px;
  color: #8fb8df;
  font-size: 13px;
}

@media (max-width: 992px) {
  .blog-list-container {
    grid-template-columns: 1fr;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .blog-heading h2 {
    font-size: 26px;
  }
}
