/**************** Blogs Page ****************/

#blogs {
    padding-top: 40px;
    padding-bottom: 60px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #063970;
    text-align: center;
    margin-bottom: 10px;
}

.blogs-subtext {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

/************ Blog Article ************/
.blog-article {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0px 5px 18px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

/************ Blog Title ************/
.blog-title {
    font-size: 28px;
    font-weight: 700;
    color: #063970;
    margin-bottom: 25px;
    text-align: center;
}

/************ Blog Image ************/
.blog-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.blog-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0px 4px 14px rgba(0,0,0,0.1);
}

/************ Blog List ************/
.blog-list {
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    color: #444;
    padding-left: 20px;
}

.blog-list li {
    margin-bottom: 10px;
}

/************ Responsive ************/
@media (max-width: 992px) {
    .blog-article {
        padding: 30px 20px;
    }

    .blog-title {
        font-size: 24px;
    }

    .blog-list {
        font-size: 16px;
        line-height: 28px;
        padding-left: 15px;
    }

    .blog-image {
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .blog-article {
        padding: 20px 15px;
    }

    .blog-title {
        font-size: 20px;
    }

    .blog-list {
        font-size: 15px;
        line-height: 24px;
        padding-left: 10px;
    }
}
