﻿/*BlogMain*/
.blogpage-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
    overflow: hidden;
}

.blogpage-hero-content {
    position: relative;
    z-index: 2;
}

    .blogpage-hero-content h1 {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .blogpage-hero-content p {
        opacity: 0.8;
    }

.blog-item {
    width: 24%;
    margin-bottom: 2%;
}

/*BlogPage*/

article {
    width: 100%;
    margin: auto;
    border-radius: 18px;
    overflow: hidden;
    padding: 50px;
    text-align: center;
}

    article h1 {
        font-size: 2em;
        color: #0056b3;
        margin-bottom: 20px;
        text-align: right;
        width: 95%;
        margin: 20px auto;
    }

    article p {
        margin-bottom: 18px;
        font-size: 1.05em;
        text-align: right;
        width: 95%;
        margin: 20px auto;
    }

    article ul {
        margin: 15px 0 25px 20px;
        padding: 0;
        text-align: right;
        width: 95%;
        margin: 20px auto;
    }

        article ul li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 12px;
            width: 95%;
            text-align: right;
            margin: 20px auto;
        }

            article ul li::before {
                content: "✔";
                position: absolute;
                left: -20px;
                color: #0056b3;
                margin: auto;
            }

    article a {
        color: rgb(238, 129, 36) !important;
        text-decoration: none;
        font-weight: bold;
    }

        article a:hover {
            text-decoration: underline;
        }

/* Tablet */
@media (max-width: 992px) {

    .blogpage-hero {
        height: 60vh;
        padding: 0 20px;
    }

    .blogpage-hero-content h1 {
        font-size: 28px;
    }

    .blogpage-hero-content p {
        font-size: 15px;
    }

    .blog-item {
        width: 48%;
        margin-bottom: 4%;
    }
}


/* Mobile */
@media (max-width: 576px) {

    .blogpage-hero {
        height: 50vh;
        padding: 0 15px;
    }

    .blogpage-hero-content h1 {
        font-size: 22px;
        line-height: 1.5;
    }

    .blogpage-hero-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .blog-item {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {

    .subhero6 {
        display: block !important;
    }
}
