.blog-details-section {
  background: #fff;
}

/* Image */
.blog-image img {
  width: 100%;
  border-radius: 18px;
}

/* Title */
.blog-title {
  font-size: clamp(16px, 3vw, 36px);
  font-weight: 700;
  color: #2563eb;
  margin-bottom:20px
}

/* Meta */
.blog-meta {
  font-size: clamp(14px, 1.6vw, 18px);
}

/* Content */
.blog-content p {
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: 1.8;
    font-weight: 600;

}

.blog-content h4 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: #000;
}

/* List */
.blog-content ul {
  padding-left: 18px;
}

.blog-content li {
 font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Animation visibility */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animate__animated {
  opacity: 1;
}

.blog-image img {
    width: 100%;
    border-radius: 20px;
}
/* Responsive */
@media (max-width: 768px) {
  .blog-title {
    line-height: 1.4;
  }
  .blog-image img {
    width: 100%;
    border-radius: 20px;
}
}
