/* ==============================
   BLOG PAGE STYLING (Redesigned)
   ============================== */

.blog-section {
  padding: 100px 0;
  background: #ffffff;
}

.blog-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 10px;
}

.blog-section h2 span {
  color: #00a86b;
}

.blog-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 0 60px;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* Blog Image */
.blog-img {
  height: 230px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.07);
}

/* Blog Content */
.blog-content {
  padding: 25px 30px 35px 30px;
  flex-grow: 1;
}

.blog-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-content .short-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.blog-content .full-text {
  display: none;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Button */
.read-more-btn {
  display: inline-block;
  padding: 10px 22px;
  background-color: #00a86b;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.read-more-btn:hover {
  background-color: #008955;
  transform: scale(1.05);
}

/* Hover Divider Line */
.blog-card::after {
  content: "";
  display: block;
  height: 3px;
  width: 0;
  background: #00a86b;
  transition: width 0.3s ease;
  margin: 0 auto;
}

.blog-card:hover::after {
  width: 80%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .blog-section h2 {
    font-size: 2.2rem;
  }

  .blog-intro {
    font-size: 1rem;
    padding: 0 20px;
  }

  .blog-grid {
    padding: 0 30px;
  }
}

@media (max-width: 600px) {
  .blog-section {
    padding: 80px 0;
  }

  .blog-card {
    max-width: 90%;
    margin: 0 auto;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-content h3 {
    font-size: 1.2rem;
  }
}
