/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
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: 2.0.0
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
*/

/* Add your custom styles here */

/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/

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

.blog-page{
    background:#f7f7f7;
}

.blog-hero{
    position:relative;
    height:550px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.blog-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.blog-hero-content{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1320px;
    padding:0 20px;
    color:#fff;
}

.breadcrumb{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    margin-bottom:25px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;
}

.breadcrumb a:hover{
    color:#f5b335;
}

.blog-hero h1{
    font-size:58px;
    line-height:1.15;
    font-weight:700;
    margin:0 0 20px;
    color:#fff;
}

.blog-hero p{
    max-width:720px;
    font-size:18px;
    line-height:1.8;
    color:#f3f3f3;
}


/* ==========================
   BLOG SECTION
========================== */

.blog-section{
    padding:80px 0;
}

.blog-container{
    max-width:1320px;
    margin:auto;
    padding:0 20px;
}

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


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

.blog-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
    display:flex;
    flex-direction:column;
    height:100%;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.16);
}

.blog-image{
    display:block;
    overflow:hidden;
    background:#f4f5f7;
}

.blog-image img{
    width:100%;
    height:280px;
    object-fit:contain;
    padding:10px;
    box-sizing:border-box;
    display:block;
    transition:.5s;
}

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


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

.blog-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.blog-meta{
    font-size:14px;
    color:#888;
    margin-bottom:15px;
    display:flex;
    gap:10px;
    align-items:center;
}

.blog-title{
    margin:0 0 18px;
    font-size:30px;
    line-height:1.3;
    font-weight:700;
}

.blog-title a{
    color:#222;
    text-decoration:none;
    transition:.3s;
}

.blog-title a:hover{
    color:#d81b60;
}

.blog-excerpt{
    color:#666;
    font-size:16px;
    line-height:1.8;
    margin-bottom:25px;
}

.read-more{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#111;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.read-more:hover{
    color:#d81b60;
}


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

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

.blog-pagination .page-numbers{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:45px;
    height:45px;
    margin:0 5px;
    border-radius:50%;
    background:#fff;
    color:#222;
    border:1px solid #ddd;
    text-decoration:none;
    transition:.3s;
    font-weight:600;
}

.blog-pagination .page-numbers:hover{
    background:#111;
    color:#fff;
}

.blog-pagination .current{
    background:#111;
    color:#fff;
    border-color:#111;
}


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

@media(max-width:1200px){

.blog-grid{
    grid-template-columns:repeat(2,1fr);
}

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

}

@media(max-width:991px){

.blog-hero{
    height:450px;
}

.blog-title{
    font-size:26px;
}

}

@media(max-width:767px){

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

.blog-hero{
    height:340px;
}

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

.blog-hero p{
    font-size:15px;
}

.blog-image img{
    height:230px;
}

.blog-content{
    padding:20px;
}

.blog-title{
    font-size:22px;
}

.blog-section{
    padding:50px 0;
}

}

svg {
    width: 25px;
}

.post-feat-media:not(:has(img)){
    display:none;
}
.no-search-results{
    text-align:center;
    background:#fff;
    padding:60px 30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.no-search-results h2{
    margin-bottom:15px;
    font-size:32px;
}

.no-search-results p{
    margin-bottom:30px;
    color:#666;
}



