/* Featured Image Styling */

.post-featured-image-wrapper {
  margin: 0 0 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 100%;
}

.post-featured-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 100%;
  max-height: 600px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .post-featured-image-wrapper {
    margin: 0 0 1.5rem 0; /* Keep normal margins on mobile */
    border-radius: 8px;
  }

  .post-featured-image {
    width: 100%;
    height: auto;
    max-height: 500px;
  }
}

@media (max-width: 480px) {
  .post-featured-image-wrapper {
    margin: 0 0 1.5rem 0;
  }

  .post-featured-image {
    max-height: 400px;
  }
}

/* Related posts images */
.post-image-small {
  width: 80px;
  height: 60px;
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
  margin-right: 1rem;
}

.post-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
