body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #fff;
  color: #101828;
}

.blog-main-section {
  padding: 80px 40px;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

/* ===== Featured Blog ===== */
.featured-blog {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 60px;
  margin-top: 60px;
}

.featured-img img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
}

.featured-content {
  padding: 30px;
  max-width: 600px;
}

.featured-content h2 {
  color: #1e2b3c;
  font-size: 2rem;
  margin-bottom: 10px;
  margin-top: -10px;
}

.featured-date {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.featured-desc {
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ===== Read More Button ===== */
.read-btn {
  background: linear-gradient(90deg, #b37a37, #c38c4a, #e0b878);

  border: none;
  padding: 14px 40px;
  border-radius: 40px;
  color: rgb(30, 43, 60);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}


.read-btn:hover {
transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(75, 31, 101, 0.4);
}

/* ===== Blog Grid ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  color: #1e2b3c;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.blog-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  line-height: 1.2;
}

.blog-date {
  color: #888;
  font-size: 0.1rem;
  margin-bottom: 5px;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .featured-blog {
    flex-direction: column;
  }
  
  .featured-content {
    max-width: 100%;
    padding: 20px;
  }

  .featured-content h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .blog-main-section {
    padding: 60px 20px;
  }

  .featured-content h2 {
    font-size: 1.4rem;
  }

  .blog-content h3 {
    font-size: 1.1rem;
  }
}
