/*=========================================
            BLOG PAGE
=========================================*/

.blog-section{
    padding:60px 0;
}

/* CARD */

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.15);
    transition:.35s ease;
    height:100%;
    display:flex;
    flex-direction:column;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 24px 55px rgba(0,0,0,.15);
}

/* IMAGE */

.blog-image{
    display:block;
    overflow:hidden;
    line-height:0;
}

.blog-image img{
    width:100%;
    height:auto;
    display:block;
    transition:.6s ease;
}

.blog-card:hover .blog-image img{
    transform:scale(1.05);
}

/* FOOTER */

.blog-footer{
    padding:22px;
    background:#fff;
    margin-top:auto;
}

/* DATE */

.blog-date{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:22px;
}

.blog-date i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#ffde91;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    flex-shrink:0;
    box-shadow:0 5px 15px rgba(255,222,145,.35);
}

.blog-date span{
    font-size:16px;
    color:#555;
    font-weight:600;
    letter-spacing:.2px;
}

/* CTA */

.btn-blog{
    width:100%;
    background:#111;
    color:#fff;
    border:none;
    border-radius:10px;
    padding:15px 22px;
    font-size:17px;
    font-weight:600;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    transition:.35s ease;
}

.btn-blog:hover{
    background:#ffde91;
    color:#111;
    text-decoration:none;
}

.btn-blog i{
    transition:.35s;
}

.blog-card:hover .btn-blog i{
    transform:translateX(6px);
}

/* Tablet */

@media(max-width:991px){

.blog-section{
    padding:45px 0;
}

.blog-footer{
    padding:18px;
}

.blog-date{
    margin-bottom:18px;
}

.blog-date i{
    width:38px;
    height:38px;
}

.blog-date span{
    font-size:15px;
}

.btn-blog{
    padding:14px;
    font-size:16px;
}

}

/* Mobile */

@media(max-width:767px){

.blog-section{
    padding:30px 0;
}

.blog-card{
    border-radius:14px;
}

.blog-footer{
    padding:16px;
}

.blog-date{
    gap:10px;
    margin-bottom:16px;
}

.blog-date i{
    width:34px;
    height:34px;
    font-size:13px;
}

.blog-date span{
    font-size:14px;
}

.btn-blog{
    padding:13px;
    font-size:15px;
}

}

/*==================================
 BLOG DETAILS
===================================*/

.blog-details{
    background:#f7f7f7;
    padding:70px 0;
}

/* Make blog wider on desktop */

.blog-single{
    width:100%;
    max-width:1150px;
    margin:0 auto;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

/* Featured Image */

.blog-featured-img img{
    width:100%;
    display:block;
}

/*==========================
 Meta
==========================*/

.blog-meta{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    padding:30px 55px 0;
}

.meta-item{
    display:flex;
    align-items:center;
    gap:8px;
    background:#faf7ef;
    color:#444;
    padding:10px 18px;
    border-radius:40px;
    font-size:15px;
    font-weight:600;
}

.meta-item i{
    color:#c69b32;
}

/*==========================
 Title
==========================*/

.blog-title{
    padding:22px 55px 0;
    font-size: 38px;
    line-height:1.22;
    color:#16233d;
    font-weight:700;
}

/*==========================
 Intro
==========================*/

.blog-intro{
    margin:30px 55px;
    padding:25px 30px;
    background:#fcfcfc;
    border-left:5px solid #c69b32;
    font-size:22px;
    line-height:1.9;
    color:#555;
    font-weight:500;
}

/* Divider */

.blog-divider{
    width:90px;
    height:4px;
    background:#c69b32;
    margin:0 55px 45px;
    border-radius:50px;
}

/*==========================
 Content
==========================*/

.blog-content{
    padding:0 55px 55px;
}

.blog-content h2{
    font-size:32px;
    margin:45px 0 20px;
    color:#0f2745;
    font-weight:700;
}

.blog-content p{
    font-size:19px;
    line-height:2;
    color:#555;
    margin-bottom:24px;
}

/* Images */

.blog-content-image{
    width:100%;
    margin:35px 0;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
}

/*==========================
 Lists
==========================*/

.blog-list{
    list-style:none;
    margin:30px 0;
    padding:0;
}

.blog-list li{
    position:relative;
    padding-left:38px;
    margin-bottom:18px;
    font-size:18px;
    color:#555;
    line-height:1.8;
}

.blog-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:3px;
    width:24px;
    height:24px;
    background:#ffde91;
    color:#111;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:13px;
    font-weight:bold;
}

/*==========================
 Quote
==========================*/

blockquote{
    margin:45px 0;
    padding:30px;
    background:#faf7ef;
    border-left:5px solid #c69b32;
    border-radius:10px;
    font-size:21px;
    line-height:1.9;
    font-style:italic;
    color:#333;
}

/*==========================
 CTA
==========================*/

.blog-cta{
    background:#16233d;
    color:#fff;
    text-align:center;
    padding:60px 40px;
}

.blog-cta h3{
    font-size:34px;
    margin-bottom:18px;
}

.blog-cta p{
    font-size:18px;
    color:#ddd;
    margin-bottom:28px;
}

.blog-btn{
    display:inline-block;
    padding:15px 36px;
    background:#ffde91;
    color:#111;
    font-weight:700;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.blog-btn:hover{
    background:#fff;
    color:#111;
    text-decoration:none;
}

/*==================================
 Large Desktop (1400px+)
===================================*/

@media (min-width:1400px){

.blog-single{
    max-width:1220px;
}

.blog-title{
    font-size: 35px;
}

.blog-content p{
    font-size:20px;
}

}

/*==================================
 Laptop
===================================*/

@media (max-width:1199px){

.blog-single{
    max-width:1000px;
}

.blog-title{
    font-size:44px;
}

.blog-meta,
.blog-title,
.blog-content{
    padding-left:45px;
    padding-right:45px;
}

.blog-intro{
    margin:25px 45px;
}

.blog-divider{
    margin-left:45px;
}

}

/*==================================
 Tablet
===================================*/

@media (max-width:991px){

.blog-details{
    padding:50px 0;
}

.blog-single{
    max-width:100%;
    border-radius:14px;
}

.blog-title{
    font-size:36px;
}

.blog-content h2{
    font-size:28px;
}

.blog-meta,
.blog-title,
.blog-content{
    padding-left:30px;
    padding-right:30px;
}

.blog-intro{
    margin:25px 30px;
    padding:22px;
    font-size:18px;
}

.blog-divider{
    margin-left:30px;
}

}

/*==================================
 Mobile
===================================*/

@media (max-width:767px){

.blog-details{
    padding:35px 0;
}

.blog-single{
    border-radius:10px;
}

.blog-title{
    font-size:30px;
    line-height:1.3;
}

.blog-content h2{
    font-size:24px;
}

.blog-content p,
.blog-list li{
    font-size:16px;
    line-height:1.8;
}

.blog-meta{
    gap:8px;
}

.meta-item{
    font-size:13px;
    padding:8px 14px;
}

.blog-meta,
.blog-title,
.blog-content{
    padding-left:20px;
    padding-right:20px;
}

.blog-intro{
    margin:20px;
    padding:18px;
    font-size:17px;
}

.blog-divider{
    margin-left:20px;
}

blockquote{
    padding:20px;
    font-size:18px;
}

.blog-cta{
    padding:40px 20px;
}

.blog-cta h3{
    font-size:26px;
}

}