.page-header {
    background: linear-gradient(to right, #2f77ed, #0a2568);
}
.blog-item {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.blog-post {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%; /* Ensures the card fills its container */
    height: 100%; /* Matches the height of the column */
}

.blog-post img {
    height: 200px; /* Set a consistent image height */
    object-fit: cover; /* Ensures the image fits without distortion */
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.card-text {
    flex-grow: 1; /* Makes the text section expand as needed */
}

.read-more-btn {
    align-self: flex-start;
    margin-top: 10px;
}

#blogModalImage {
    height: 220px;
}