@charset "UTF-8";
/**
 * Post item in archive pages
 * Note: theme.min.css overrides these settings!
 */
/* Set default styles for the post image */
.post .wp-post-image {
  width: auto;
  max-height: 400px; /* Fallback max height */
  object-fit: cover; /* Ensure the image covers the container */
}

/* Media query for screens up to 991px wide */
@media (max-width: 991px) {
  .post .wp-post-image {
    max-height: 400px; /* Adjust max height for smaller screens */
  }
}

/* Media query for screens up to 575px wide */
@media (max-width: 575px) {
  .post .wp-post-image {
    max-height: 300px; /* Adjust max height for smaller screens */
  }
}


/* Style for the post meta information */
.post-meta {
  font-size: 16px; /* Change the font size */
  color: #666; /* Change the color */
  font-weight: bold; /* Make it bold */
  /*font-style: italic; /* Add italic */
}

/* Style for the category */
.post-meta .post-category {
  font-size: 14px; /* Change the font size */
  color: #666; /* Change the color */
  font-weight: normal; /* Remove bold */
  font-style: italic; /* Add italic */
}

/* Add styles for post navigation */
.post-navigation {
  display: flex;
  justify-content: flex-end; /* Align to the right */
  margin-top: 20px; /* Add some space between content and navigation */
  margin-bottom: 20px;
}

/* Style for the next post link */
.nav-next {
  margin-left: auto; /* Move the next post link to the right */
}
