.meta-blog-page {
  padding: 110px 20px;
  background:
    radial-gradient(circle at top left, rgba(0, 162, 255, .22), transparent 35%),
    linear-gradient(180deg, #020b1f 0%, #061a3d 55%, #031025 100%);
  color: #fff;
}

.blog-page-container {
  max-width: 1200px;
  margin: auto;
}

.blog-page-heading {
  max-width: 850px;
  margin-bottom: 45px;
}

.blog-page-badge {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid rgba(91, 192, 255, .45);
  border-radius: 999px;
  background: rgba(0, 102, 255, .16);
  color: #7fd3ff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.blog-page-heading h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.12;
  margin: 0 0 18px;
}

.blog-page-heading p {
  color: #c7d8f5;
  font-size: 17px;
  line-height: 1.8;
}

.blog-page-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 32px;
  align-items: start;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(125, 205, 255, .18);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .28);
  transition: .3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 190, 255, .55);
}

.blog-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}

.blog-img {
  position: relative;
  display: block;
  min-height: 240px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
  transition: .4s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.06);
}

.blog-img span {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #008cff, #46c8ff);
  color: #fff;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.blog-content {
  padding: 24px;
}

.blog-content time {
  color: #7fd3ff;
  font-size: 13px;
  font-weight: 700;
}

.blog-content h2 {
  font-size: 22px;
  line-height: 1.35;
  margin: 12px 0;
}

.blog-content h2 a {
  color: #fff;
  text-decoration: none;
}

.blog-content p {
  color: #c9d8ef;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  display: inline-flex;
  padding: 11px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #006dff, #44c7ff);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(125, 205, 255, .2);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
}

.sidebar-widget h3 {
  font-size: 22px;
  margin: 0 0 18px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li:not(:last-child) {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  color: #eaf5ff;
  text-decoration: none;
  transition: .3s ease;
}

.category-list a:hover {
  background: rgba(0, 140, 255, .22);
  color: #7fd3ff;
}

.category-list span {
  color: #7fd3ff;
  font-weight: 800;
}

.recent-post {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.recent-post:last-child {
  border-bottom: 0;
}

.recent-post a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 6px;
}

.recent-post a:hover {
  color: #7fd3ff;
}

.recent-post span {
  color: #a9bddc;
  font-size: 13px;
}

@media (max-width: 980px) {
  .blog-page-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .meta-blog-page {
    padding: 80px 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-content h2 {
    font-size: 20px;
  }
}