/****************************************************
 *  WP Bullet Custom CSS For Blog Page
 ****************************************************/
body, .site, .inside-article {
    background-color: #ffffff !important;
    color: #000 !important;
}

/* --- Custom Blog Layout --- */

.wpb-blog-wrapper {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    background: #ffffff;
    border-radius: 0 200px 0 0;
    width: 100%;
    margin-top: 50px;
}

.wpb-site-content {
    background-color: #39B0AF;
    width: 100%;
}

.wpb-blog-sidebar h2 {
    font-size: 1.6rem;
    margin: 0;
    text-align: center;
    line-height: 1.3;
}

.wpb-blog-content {
    flex-grow: 1;
    padding: 3rem 2rem;
    max-width: 850px;
    margin: 0 auto;
}

.wpb-post-card {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.wpb-post-meta {
    font-size: 0.9rem;
    color: #00747c;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.wpb-post-meta a,
.wpb-post-meta a:visited {
    font-size: 16px;
    color: #00747c;
    text-decoration: none;
}

.wpb-post-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.wpb-post-title a,
.wpb-post-title a:visited{
    color: #292020;
    text-decoration: none;
}

.wpb-post-author {
    font-size: 20px;
    font-weight: 400;
    color: #0D5A5E;
    margin-bottom: 1rem;
}

.wpb-post-thumb {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wpb-post-thumb img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 20px;
}

.wpb-post-excerpt {
    font-size: 1rem;
    color: #222;
    margin-bottom: 1.2rem;
}

.wpb-read-more-content {
    display: flex;
    justify-content: flex-end;
}

.wpb-btn-readmore {
    display: inline-block;
    background-color: #FEC012;
    color: #000000 !important;
    font-weight: 600;
    font-size: 20px;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.wpb-btn-readmore:hover {
    background-color: #e0a900;
}

body, .site {
    background-color: #fff !important;
    color: #000 !important;
}

.wpb-post-excerpt .read-more {
    display: none;
}

.site.grid-container {
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.wpb-home-title {
    padding: 50px 300px 0;
}

.wpb-home-title h1 {
    color: #FFFFFF;
    font-weight: bold;
}

@media (max-width: 768px) {
    .wpb-post-title {
        font-size: 25px;
    }

    .wpb-site-content {
        background-color: #ffffff;
    }

    .wpb-home-title {
        margin: 20px 0;
        padding: 30px 0;
        border-radius: 0 0 0 80px;
        background-color: #39B0AF;
    }

    .wpb-home-title h1 {
        text-align: center;
    }

    .wpb-read-more-content {
        justify-content: center;
    }
}