/* =========================================================
   BLOG LIST — WORLD CLASS UI
   ========================================================= */

.blog-section{
  padding-top: 32px;
}

/* Featured post */
.blog__item__large{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(16,24,40,.12);
  margin-bottom: 32px;
}

/* Blog cards */
.blog__item{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(16,24,40,.08);
  box-shadow: 0 10px 24px rgba(16,24,40,.10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.blog__item:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(16,24,40,.14);
}

/* Titles */
.blog__item__text h3,
.blog__item__text h5{
  font-weight: 900;
  letter-spacing: -0.3px;
}

/* Sidebar cards */
.blog__sidebar > div{
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(16,24,40,.08);
  padding: 18px;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(16,24,40,.08);
}

/* Sidebar sticky */
.blog__sidebar{
  position: sticky;
  top: calc(var(--tv-header-h) + 18px);
}
