/*==================================================
BLOG HERO
==================================================*/

.blog-hero{
    background:linear-gradient(135deg,#0b6b38,#0f8b4c);
    color:#fff;
    padding:80px 0;
    text-align:center;
}

.blog-tag{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;
    font-size:14px;
}

.blog-hero h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.blog-hero p{
    max-width:700px;
    margin:auto;
    font-size:17px;
    line-height:1.8;
}



/*==================================================
BLOG PAGE
==================================================*/

.blog-page{

    padding:70px 0;

    background:#f7f9fc;

}



/*==================================================
SIDEBAR
==================================================*/

.blog-sidebar{

    background:#fff;

    padding:25px;

    border-radius:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    position:sticky;

    top:25px;

}

.sidebar-title{

    font-size:24px;

    font-weight:700;

    margin-bottom:25px;

}

.blog-sidebar label{

    font-weight:600;

    margin-bottom:8px;

}

.blog-sidebar .form-control,
.blog-sidebar .form-select{

    height:48px;

    border-radius:8px;

    margin-bottom:15px;

}

.blog-sidebar .btn{

    height:48px;

    font-weight:600;

}



/*==================================================
BLOG LIST
==================================================*/

.blog-list{

    width:100%;

}



/*==================================================
BLOG CARD
==================================================*/

.blog-card{

    background:#fff;

    border-radius:14px;

    padding:20px;

    margin-bottom:30px;

    box-shadow:0 8px 25px rgba(0,0,0,.07);

    transition:.35s;

}

.blog-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}



/*==================================================
IMAGE
==================================================*/

.blog-image{
    width:100%;
    height:130px;
    object-fit:cover;
    border-radius:8px;
}



/*==================================================
META
==================================================*/

.blog-meta{

    margin-bottom:8px;

}

.blog-meta span{

    display:inline-block;

    padding:6px 12px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-right:8px;

    margin-bottom:8px;

}



.badge-category{

    background:#dff4e8;

    color:#0f8b4c;

}



.badge-pest{

    background:#fff3cd;

    color:#856404;

}



.badge-location{

    background:#e8f1ff;

    color:#0d6efd;

}



/*==================================================
TITLE
==================================================*/

.blog-title{

    font-size:22px;

    margin:0 0 6px;

    line-height:1.0;

    font-weight:700;

}

.blog-title a{

    text-decoration:none;

    color:#222;

}

.blog-title a:hover{

    color:#198754;

}



/*==================================================
DESCRIPTION
==================================================*/

.blog-description{

    color:#666;

    line-height:1.5;

    margin:0 0 10px;

    font-size:15px;

}



/*==================================================
BOTTOM
==================================================*/

.blog-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;
	margin-top:8px;
    gap:10px;

}

.blog-bottom .btn{

    padding:5px 10px;

    border-radius:8px;

}



/*==================================================
CTA
==================================================*/

.blog-cta{

    background:#fff;

    border-top:1px solid #eee;

}

.blog-cta h2{

    font-size:34px;

    margin-bottom:15px;

}

.blog-cta p{

    max-width:700px;

    margin:auto auto 25px;

}



/*==================================================
PAGINATION
==================================================*/

.pagination .page-link{

    color:#198754;

    border-radius:8px;

    margin:0 3px;

}

.pagination .active .page-link{

    background:#198754;

    border-color:#198754;

}



/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.blog-sidebar{

    position:static;

    margin-bottom:30px;

}

.blog-title{

    font-size:22px;

    margin-bottom:8px;

    line-height:1.3;

}

}




@media(max-width:767px){

.blog-card{

    padding:12px 15px;

}

.blog-image{

    height:100px;

    margin-bottom:15px;

}

.blog-bottom{

    display:block;

}

.blog-bottom .btn{

    margin-top:15px;

}

.blog-hero{

    padding:60px 20px;

}

.blog-hero h1{

    font-size:34px;

}

}

