/* Section */
.blogs-section {
  padding: 3rem 1rem;
}

/* Header */
.blogs-header {
  font-size: 4rem;
  margin-bottom: 2.5rem;
  padding: 1rem 0;
  color: #fff;
  filter: brightness(50%) contrast(140%);
}

/* Grid */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.blog-card {
  background: linear-gradient(180deg, #0f172a, #020617);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

/* Image */
.blog-image {
  height: 170px;
  background-color: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%) contrast(130%);
}

/* Content */
.blog-content {
  padding: 1.2rem;
  color: #fff;
}

.blog-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.blog-date {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

/* Meta */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Tablet */
@media (max-width: 1024px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }
}

.blog-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
