/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/



/* =========================
   GLOBAL
========================= */

.fv-blog-main *,
.fv-blog-hero *{
    box-sizing:border-box;
}

.fv-blog-main .container,
.fv-blog-hero .container{
    max-width:1280px;
    margin:auto;
}

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


.fv-blog-hero{
    position:relative;
    padding:150px 20px 120px;
    background:
    linear-gradient(rgba(29,37,44,0.80),rgba(29,37,44,0.80)),
    url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?q=80&w=2070&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    text-align:center;
}

.fv-blog-hero h1{
    color:#ffffff;
    font-size:68px;
    line-height:1.1;
    margin-bottom:18px;
    font-weight:700;
}

.fv-blog-breadcrumb{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.fv-blog-breadcrumb a,
.fv-blog-breadcrumb span{
    color:#d8d8d8;
    font-size:16px;
    text-decoration:none;
}

.fv-blog-breadcrumb a:hover{
    color:#c7a57a;
}

@media(max-width:768px){

    .fv-blog-hero{
        padding:120px 20px 90px;
    }

    .fv-blog-hero h1{
        font-size:42px;
    }
}

/* =========================
   MAIN
========================= */

.fv-blog-main{
    padding:100px 20px;
    background:#ffffff;
}

.fv-blog-wrapper{
    max-width:1280px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:60px;
}

/* =========================
   BLOG GRID
========================= */

.fv-blog-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.fv-blog-card{
    background:#ffffff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:all 0.35s ease;
}

.fv-blog-card:hover{
    transform:translateY(-6px);
}

.fv-blog-image{
    display:block;
    overflow:hidden;
}

.fv-blog-image img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
    transition:0.4s ease;
}

.fv-blog-card:hover .fv-blog-image img{
    transform:scale(1.05);
}

.fv-blog-content{
    padding:35px;
}

.fv-blog-date{
    color:#c7a57a;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:15px;
    font-weight:600;
}

.fv-blog-content h2{
    margin-bottom:18px;
    font-size:20px;
    line-height:1.3;
}

.fv-blog-content h2 a{
    text-decoration:none;
    color:#1d252c;
}

.fv-blog-content p{
    color:#6f7680;
    line-height:1.8;
    margin-bottom:28px;
    font-size:16px;
}

/* =========================
   BUTTON
========================= */

.fv-blog-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 30px;
    background:var( --e-global-color-accent );
    color:#ffffff !important;
    text-decoration:none;
    border-radius:100px;
    font-weight:600;
    transition:0.3s ease;
}

.fv-blog-btn:hover{
    background:var( --e-global-color-primary );
    color:#ffffff;
}

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

.fv-blog-sidebar{
    position:sticky;
    top:40px;
    height:fit-content;
}

.fv-sidebar-box{
    background:#f7f7f7;
    padding:35px;
    border-radius:24px;
    margin-bottom:30px;
}

.fv-sidebar-box h3{
    color:#1d252c;
    margin-bottom:25px;
    font-size:28px;
}

/* SEARCH */

.fv-search-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.fv-search-form input{
    width:100%;
    border:none;
    outline:none;
    background:#ffffff;
    padding:16px 20px;
    border-radius:100px;
    font-size:16px;
}

.fv-search-form button{
    border:none;
    background:var( --e-global-color-accent );
    color:#ffffff;
    padding:15px 20px;
    border-radius:100px;
    cursor:pointer;
    transition:0.3s ease;
    font-weight:600;
}

.fv-search-form button:hover{
    background:var( --e-global-color-primary );
}

/* CATEGORY */

.fv-category-list{
    list-style:none;
    padding:0;
    margin:0;
}

.fv-category-list li{
    margin-bottom:18px;
}

.fv-category-list li:last-child{
    margin-bottom:0;
}

.fv-category-list li a{
    color:#6f7680;
    text-decoration:none;
    transition:0.3s ease;
    line-height:1.5;
}

.fv-category-list li a:hover{
    color:#c7a57a;
}

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

.fv-pagination{
    margin-top:70px;
    text-align:center;
}

.fv-pagination .page-numbers{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border-radius:50%;
    text-decoration:none;
    margin:0 5px;
    background:#f2f2f2;
    color:#1d252c;
    transition:0.3s ease;
}

.fv-pagination .page-numbers.current,
.fv-pagination .page-numbers:hover{
    background:#c7a57a;
    color:#ffffff;
}

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

.fv-blog-cta{
    margin-top:100px;
    background:#1d252c;
    border-radius:32px;
    padding:90px 30px;
    text-align:center;
}

.fv-blog-cta h2{
    color:#ffffff;
    font-size:56px;
    margin-bottom:25px;
}

.fv-blog-cta p{
    color:#d6d6d6;
    max-width:760px;
    margin:0 auto 35px;
    line-height:1.8;
    font-size:18px;
}

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

@media(max-width:1100px){

    .fv-blog-wrapper{
        grid-template-columns:1fr;
    }

    .fv-blog-sidebar{
        position:relative;
        top:0;
    }
}

@media(max-width:768px){

    .fv-blog-grid{
        grid-template-columns:1fr;
    }

    .fv-blog-hero{
        padding:120px 20px 90px;
    }

    .fv-blog-hero h1{
        font-size:42px;
    }

    .fv-blog-content{
        padding:25px;
    }

    .fv-blog-content h2{
        font-size:18px;
    }

    .fv-blog-cta{
        padding:65px 25px;
    }

    .fv-blog-cta h2{
        font-size:38px;
    }
}





/*Blog Detail Page */

/* =========================
   GLOBAL
========================= */

.fv-single-main *,
.fv-single-hero *{
    box-sizing:border-box;
}

.fv-single-main .container,
.fv-single-hero .container,
.fv-single-cta .container{
    max-width:1280px;
    margin:auto;
}

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

.fv-single-hero{
    position:relative;
    padding:150px 20px 120px;
    background:
    linear-gradient(rgba(29,37,44,0.82),rgba(29,37,44,0.82)),
    url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?q=80&w=2070&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    text-align:center;
}

.fv-single-meta{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    margin-bottom:22px;
    flex-wrap:wrap;
}

.fv-single-meta span{
    color:#c7a57a;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:600;
}

.fv-dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:#c7a57a;
}

.fv-single-hero h1{
    color:#ffffff;
    font-size:34px;
    line-height:1.15;
    margin-bottom:20px;
    font-weight:700;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

.fv-single-breadcrumb{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.fv-single-breadcrumb a,
.fv-single-breadcrumb span{
    color:#d9d9d9;
    font-size:16px;
    text-decoration:none;
}

.fv-single-breadcrumb a:hover{
    color:#c7a57a;
}

/* =========================
   MAIN
========================= */

.fv-single-main{
    padding:100px 20px;
    background:#ffffff;
}

.fv-single-wrapper{
    max-width:1280px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:60px;
}

/* =========================
   CONTENT
========================= */

.fv-single-image{
    margin-bottom:40px;
    border-radius:28px;
    overflow:hidden;
}

.fv-single-image img{
    width:100%;
    height:auto;
    display:block;
}

.fv-single-text{
    color:#5f6670;
    font-size:17px;
    line-height:1.9;
}

.fv-single-text h2,
.fv-single-text h3,
.fv-single-text h4{
    color:#1d252c;
    margin-top:45px;
    margin-bottom:20px;
    line-height:1.3;
}

.fv-single-text h2{
    font-size:42px;
}

.fv-single-text h3{
    font-size:34px;
}

.fv-single-text p{
    margin-bottom:24px;
}

.fv-single-text ul,
.fv-single-text ol{
    padding-left:22px;
    margin-bottom:24px;
}

.fv-single-text li{
    margin-bottom:12px;
}

.fv-single-text img{
    border-radius:24px;
    margin:30px 0;
    width:100%;
    height:auto;
}

.fv-single-text a{
    color:#c7a57a;
    text-decoration:none;
}

.fv-single-text a:hover{
    color:#1d252c;
}

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

.fv-single-sidebar{
    position:sticky;
    top:40px;
    height:fit-content;
}

.fv-sidebar-box{
    background:#f7f7f7;
    padding:35px;
    border-radius:24px;
    margin-bottom:30px;
}

.fv-sidebar-box h3{
    color:#1d252c;
    margin-bottom:25px;
    font-size:28px;
}

/* SEARCH */

.fv-search-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.fv-search-form input{
    width:100%;
    border:none;
    outline:none;
    background:#ffffff;
    padding:16px 20px;
    border-radius:100px;
    font-size:16px;
}

.fv-search-form button{
    border:none;
    background:#c7a57a;
    color:#ffffff;
    padding:15px 20px;
    border-radius:100px;
    cursor:pointer;
    transition:0.3s ease;
    font-weight:600;
}

.fv-search-form button:hover{
    background:#1d252c;
}

/* CATEGORY */

.fv-category-list{
    list-style:none;
    padding:0;
    margin:0;
}

.fv-category-list li{
    margin-bottom:18px;
}

.fv-category-list li:last-child{
    margin-bottom:0;
}

.fv-category-list li a{
    color:#5f6670;
    text-decoration:none;
    line-height:1.5;
    transition:0.3s ease;
}

.fv-category-list li a:hover{
    color:#c7a57a;
}

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

.fv-single-cta{
    background:#1d252c;
    padding:90px 20px;
    text-align:center;
}

.fv-single-cta h2{
    color:#ffffff;
    font-size:56px;
    margin-bottom:20px;
}

.fv-single-cta p{
    color:#d8d8d8;
    max-width:760px;
    margin:0 auto 35px;
    line-height:1.8;
    font-size:18px;
}

.fv-single-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    background:#c7a57a;
    color:#ffffff;
    text-decoration:none;
    border-radius:100px;
    font-weight:600;
    transition:0.3s ease;
}

.fv-single-btn:hover{
    background:#ffffff;
    color:#1d252c;
}

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

@media(max-width:1100px){

    .fv-single-wrapper{
        grid-template-columns:1fr;
    }

    .fv-single-sidebar{
        position:relative;
        top:0;
    }
}

@media(max-width:768px){

    .fv-single-hero{
        padding:120px 20px 90px;
    }

    .fv-single-hero h1{
        font-size:24px;
    }

    .fv-single-main{
        padding:70px 20px;
    }

    .fv-single-text h2{
        font-size:32px;
    }

    .fv-single-text h3{
        font-size:26px;
    }

    .fv-sidebar-box{
        padding:28px;
    }

    .fv-single-cta{
        padding:70px 20px;
    }

    .fv-single-cta h2{
        font-size:38px;
    }
}