article {
	margin-top: 80px;
	max-width: 1000px !important;
}

.blog-content img, .blog-image {
  display: block;
  max-width: 100%;
  height: auto;
  /* margin: 2rem auto; */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}
.blog-content img:hover,  .blog-image:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.worker-image {
  width: 260px;
  border-radius: 8px;
  flex-shrink: 0;
  margin: 0px;

}

.intro-flex {
  display: flex;
  gap: 2rem;
  align-items: flex-start; /* 👈 THIS aligns image and text to the top */
  flex-wrap: wrap;
}

.worker-image {
  width: 260px;
  border-radius: 8px;
  flex-shrink: 0;
  margin: 0px;

}

.intro-text {
  flex: 1;
  min-width: 250px;
}

.intro-text h3 {
  margin-top: 0;
}

.blog-content img:hover,  .blog-image:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
    padding: 1rem;
  }

  .blog-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }

  .blog-content {
    padding: 0;
  }
}

