.blog-main-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 15px;
}

.blog-main-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.blog-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.blog-content-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
  max-height: 255px;
}

.blog-section-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111;
}

.blog-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.blog-readmore {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #007AFF;
  text-decoration: none;
  transition: 0.3s;
}

.blog-readmore:hover {
  color: #0056c7;
}

/* Responsive */
@media (max-width: 600px) {
  .blog-main-title {
    font-size: 2rem;
  }
  .blog-section-title {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=blog-content.css.map */