.blog-container {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #1e1e1e, #141414);
}

.blog-img {
  height: 260px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

/* CONTENT WRAPPER */
.blog-content {
  padding: 24px 20px 32px;
}

/* TITLE */
.blog-content h3 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}

/* DESCRIPTION */
.blog-desc {
  margin-top: 16px;
  color: #aaaaaa;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
}

