/* Homepage blog section */
.home-blogs-section {
    overflow: hidden;
}

.home-blogs-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin: 30px auto 0;
    max-width: 1080px;
}

.home-blog-card {
    box-sizing: border-box;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: #00156f;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.home-blog-image {
    display: block;
    width: 100%;
    height: 210px !important;
    object-fit: cover;
    margin: 0 !important;
}

.home-blog-content {
    box-sizing: border-box;
    min-height: 190px;
    height: auto;
    margin: 0;
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.home-blog-title {
    display: block;
    font-size: 16px;
    line-height: 1.35;
}

.home-blog-excerpt {
    margin: 12px 0 0;
    color: #e7f2ff !important;
    font-size: 13px !important;
    line-height: 1.55;
}

#homeBlogsSection .home-blog-excerpt {
    color: #e7f2ff !important;
}

.home-blogs-dots {
    margin-top: 18px;
}

@media (max-width: 820px) {
    .home-blogs-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .home-blogs-track {
        display: block;
        margin-top: 24px;
    }

    .home-blog-card {
        width: 100%;
        padding: 0 8px;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .home-blogs-track .owl-item {
        float: left !important;
    }

    .home-blog-image {
        height: 180px !important;
        aspect-ratio: auto;
        border-radius: 0;
    }

    .home-blog-content {
        min-height: 185px;
        padding: 20px 18px 18px;
        background: #00156f;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-top: 0;
    }

    #homeBlogsSection #homeBlogsTrack .owl-nav {
        display: none !important;
    }

    #homeBlogsSection #homeBlogsTrack .owl-dots {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 20px;
    }

    #homeBlogsSection #homeBlogsTrack .owl-dot {
        display: inline-flex !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0;
        background: transparent;
    }

    #homeBlogsSection #homeBlogsTrack .owl-dot span {
        background: rgba(255, 255, 255, 0.45);
    }

    #homeBlogsSection #homeBlogsTrack .owl-dot.active span {
        background: #fed000;
    }

    #homeBlogsSection #homeBlogsTrack .owl-dot span {
        width: 9px;
        height: 9px;
        margin: 5px;
    }
}

@media (min-width: 821px) and (max-width: 1100px) {
    .home-blogs-track {
        gap: 20px;
    }
}
