/* Change the background color of the submit button */
button[type="submit"] {
    background-color: #000080 !important; /* Your desired color */
    color: #ffffff !important; /* Your desired font color */
}

/* Change the color when the user hovers over the button */
button[type="submit"]:hover {
    background-color: #bc01bc !important; /* Your desired hover color */
}

.blog-wrap img {
    height: 270px; /* Fixed height for uniformity */
    width: 100%;
    object-fit: cover; /* Crops the image to cover the area without distortion */
}

.attachment-post-thumbnail {
    height: 270px; /* Fixed height for uniformity */
    width: 100%;
    object-fit: cover; /* Crops the image to cover the area without distortion */
}
.entry-header {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines to show */
  line-clamp: 2; /* Standard property, but not as widely supported yet */
  -webkit-box-orient: vertical;
}