.row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    margin-bottom: 15px;
}

/* Individual column styling */
.col-md-4,
.col-md-4,
.col-md-3,
.col-md-3,
.col-md-6,
.col-md-6,
.col-md-8,
.col-md-8,
.col-md-12,
.col-md-12 {
    padding: 10px;
    /* Padding for columns */
}

/* Specific column widths according to Bootstrap */
.col-md-4 {
    flex: 0 0 33.333%;
    /* 1/3 width */
    max-width: 33.333%;
}

.col-md-6 {
    flex: 0 0 50%;
    /* 1/2 width */
    max-width: 50%;
}

.col-md-8 {
    flex: 0 0 66.667%;
    /* 2/3 width */
    max-width: 66.667%;
}

.col-md-12 {
    flex: 0 0 100%;
    /* Full width */
    max-width: 100%;
}

.text-center {
    text-align: center;
}

#blogs {
    padding-top: 3rem;
}

.custom-row {
    gap: 40px 0;
}

.blog-sec-title {
    padding: 2rem 0;
}

.blog-sec-title h2 {
    font-size: 2rem;
    color: #16455c;
    line-height: 21px;
}

.blog-sec-title p {
    font-size: 24px;
    line-height: 21px;
    color: #222;
    margin-top: 8px;
}

.blog-listing-wrapper {
    background-color: #e7e8e8;
    padding: 50px 0;
}



.blog-box-outer {
    flex: 0 0 auto;
    width: calc(50% - 30px);
    margin-right: 30px;
}

.blog-box-outer:nth-child(even) {
    margin-right: 0;
    /* No margin for the last column */
}



.blog-listing-wrapper .blog-box {
    background-color: #fff;
    border-radius: 14.25px;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

.blog-listing-wrapper .blog-box .title-nd-desc {
    padding: 20px 30px 48px 30px;
    height: 195px;
}

.blog-listing-wrapper .blog-box .blog-date {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .13px;
    color: #222222;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.blog-listing-wrapper .blog-box .blog-title {
    font-size: 22.27px;
    color: #3f738d;
    max-width: 365px;
    line-height: 23.67px;
    letter-spacing: .13px;
    padding: 0;
    margin-bottom: 12px;
}

.blog-listing-wrapper .blog-box .blog-title span {
    font-weight: 400 !important;
    font-family: 'Franklin Gothic Medium', sans-serif;
}

.blog-listing-wrapper .blog-box .blog-desc {
    font-size: 16.67px;
    line-height: 19.67px;
    color: #222;
    letter-spacing: .13px;
}

.blog-sec .image-holder img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    display: block;
}


/* === Loader === */

/* #loader {
    position: absolute;
    top: 0;
    background-color: #ffffffe0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: +999;
    display: flex;
    justify-content: center;
    align-items: center;
} */
#loader {
    position: absolute;
    bottom: -50px;
    background-color: #ffffffe0;
    width: 100%;
    height: 120px;
    z-index: +999;
    display: flex;
    justify-content: center;
    align-items: center;
}

main.blog-page-wrapper {
    position: relative;
}

#loader img {
    width: 120px;
    height: auto;
}

/* === Loader === */

.load-more-btn-container {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn-container #load-more {
    padding: 12px 32px;
    font-size: 16.67px;
    line-height: 27.27px;
    color: #222;
    letter-spacing: .13px;
    text-transform: uppercase;
    border-radius: 4.03px;
    border: 1px solid #222;
    cursor: pointer;
    transition: all ease-in-out .3s;
}

.load-more-btn-container #load-more:hover {
    background-color: #16455c;
    color: #fff;
    border-color: #16455c;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        /* Stack columns vertically on smaller screens */
    }

    .blog-box-outer {
        margin-right: 0;
        /* Reset margin */
    }
}