/* region Page Title*/
.page-title-container {
    position: relative;
    padding: 0;
    overflow: hidden;
    max-height: 420px;
    max-width: 2048px;
}
.page-title-image {
    width: 100%;
    height: auto;
    object-fit: fill;
    object-position: left;
}
.page-title-image-large {
    display: none;
}
@media (min-width: 1600px) {
    .page-title-image-large {
        display: block;
    }
    .page-title-image-small {
        display: none;
    }
}
.page-title-text {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2em;
    color: whitesmoke;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px #000000d9;
    border-bottom: 2px solid rgb(255 255 255 / 35%);
    padding: 6px;
}
@media (max-width: 991px) {
    .page-title-text {
        border-bottom: none;
    }
}
/* endregion */

/* region */
.blogs-title {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2em;
    color: #434854;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgb(118 127 148 / .85);
    padding: 16px 32px;
    border-top: 2px solid #434854;
    border-bottom: 2px solid #434854;
    border-radius: 10px;
    display: inline-block;
}

.blog-card {
    display: block;
    position: relative;
    border: 1px solid #e3e3e3;
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.blog-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-card .blog-cover-image {
    width: 100%;
    display: block; /* Ensures no extra space at the bottom of the image */
}

.blog-card .blog-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    color: #333;
    background-color: rgba(255, 255, 255, 0.95);
    height: 24%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px; /* Horizontal padding, no vertical padding */
    margin: 0;
}

.allBlogPosts-load-more-btn {
    display: inline-block;
    background-color: #434854;
    border: none;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 600;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(51, 57, 64, 0.2);
    transition: all 0.3s ease;
    transform: scale(1);
}
.allBlogPosts-load-more-btn:hover {
    background-color: #3f4a51;
    box-shadow: 0 7px 20px rgb(120 128 150 / .85);
    transform: scale(1.025);
}
.allBlogPosts-load-more-btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(128, 128, 128, 0.5);
}

.thats-all-folks {
    display: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #434854;
    cursor: default;
    text-align: center;
    text-shadow: 1px 1px 2px rgb(118 127 148 / .85);
    line-height: 1;
    margin: 0;
    padding: 13px 32px;
    border-bottom: 2px solid #434854;
    border-radius: 32px;
}
/* endregion */