/* ===============================
   BLOG SECTION
================================ */
.blog-section {
  background: linear-gradient(to bottom, #ecfeff, #ffffff);
  padding: 80px 20px;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
}

.blog-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 60px;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* CARD */
.blog-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(6,182,212,0.25);
}

/* IMAGE */
.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 13px;
  font-weight: 600;
  color: #0d9488;
}

.blog-heading {
  font-size: 20px;
  font-weight: 700;
  margin: 12px 0;
}

.blog-heading a {
  text-decoration: none;
  color: #020617;
}

.blog-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 16px;
}

/* READ MORE */
.read-more {
  font-weight: 600;
  color: #06b6d4;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* PAGINATION */
.blog-pagination {
  margin-top: 60px;
  text-align: center;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-block;
  margin: 0 6px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #e0f2fe;
  color: #020617;
  text-decoration: none;
  font-weight: 600;
}

.blog-pagination .current {
  background: #06b6d4;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-title {
    font-size: 32px;
  }

  .blog-image img {
    height: 200px;
  }
}
