/* ================== BLOG PAGE ================== */

.blogs {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Blog card layout */
.blog-card {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.blog-card img {
  width: 280px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Blog content */
.blog-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #114d5f;
}

.blog-content h3 span {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-left: 6px;
}

.blog-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.blog-content a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.blog-content a:hover {
  text-decoration: underline;
}

/* ================== RESPONSIVE ================== */
@media(max-width: 768px) {
  .blog-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .blog-card img {
    width: 100%;
    max-width: 500px;
  }
}
