/*========================================
Brand Section
========================================*/

.ih-brand-section{
    width:100%;
    background:#1b3e38 ;
    padding:70px 20px;
	margin-top:103px;
}


/*========================================
Container
========================================*/

.ih-brand-container{
    max-width:600px;
    margin:0 auto;
}


/*========================================
Brand Box
========================================*/

.ih-brand-box{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:22px;

}


/*========================================
Logo
========================================*/

.ih-brand-logo{

    width:180px;
    height:100px;

    background:#17382D;

    border-radius:18px 18px 18px 0 ;
	padding:0 10px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}


.ih-brand-logo img{

    width:100%;
    height:auto;
    display:block;

}


/*========================================
Content
========================================*/

.ih-brand-content{

    color:#dcc171 ;

}


.ih-brand-content h2{

    margin:0;

    font-size:2rem;

    font-weight:700;

    line-height:1.2;

}


.ih-brand-content p{

    margin:8px 0 0;

    font-size:1rem;

    opacity:.9;

    line-height:1.6;

}


/*========================================
Mobile
========================================*/

@media(max-width:576px){

    .ih-brand-box{

        gap:16px;

    }

    .ih-brand-logo{

        width:150px;
        height:80px;

    }

    .ih-brand-logo img{

        width:100%;

    }

    .ih-brand-content h2{

        font-size:1.6rem;

    }

    .ih-brand-content p{

        font-size:.9rem;

    }

}



/*==============================
        Blog List
==============================*/

.ih-blog-list{

    list-style:none;

    margin:0;

    padding:0;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:40px;

}

.ih-blog-item{

    margin:0;

    padding:0;

}


/*==============================
        Card
==============================*/

.ih-blog-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

    display:flex;

    flex-direction:column;

    height:100%;

}

.ih-blog-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}


/*==============================
        Image
==============================*/

.ih-blog-thumb{

    display:block;

    overflow:hidden;

}

.ih-blog-thumb img{

    display:block;

    width:100%;

    aspect-ratio:16 / 10;

    object-fit:cover;

    transition:.45s;

}

.ih-blog-card:hover .ih-blog-thumb img{

    transform:scale(1.06);

}


/*==============================
        Content
==============================*/

.ih-blog-content{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    flex:1;

    padding:28px;

}


/*==============================
        Title
==============================*/

.ih-blog-title{

    margin:0 0 18px;

    font-size:1.4rem;

    line-height:1.5;

}

.ih-blog-title a{

    text-decoration:none;

    color:#1f1f1f;

    transition:.3s;

}

.ih-blog-title a:hover{

    color:#1F4E3D;

}


/*==============================
        Excerpt
==============================*/

.ih-blog-excerpt{

    margin-bottom:28px;

    flex:1;

}

.ih-blog-excerpt p{

    margin:0;

    line-height:1.9;

    color:#666;

    text-align:justify;

}


/*==============================
        Button
==============================*/

.ih-blog-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 24px;

    border:2px solid #1F4E3D;

    border-radius:999px;

    background:#fff;

    color:#1F4E3D;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.ih-blog-btn svg{

    transition:.3s;

}

.ih-blog-btn:hover{

    background:#1F4E3D;

    color:#fff;

}

.ih-blog-btn:hover svg{

    transform:translateX(5px);

}


/*==============================
        Responsive
==============================*/

@media (max-width:768px){

    .ih-blog-list{

        grid-template-columns:1fr;

        gap:28px;

    }

    .ih-blog-content{

        padding:22px;

    }

    .ih-blog-title{

        font-size:1.2rem;

    }

    .ih-blog-btn{

        width:100%;

    }

}



/* ==========================================================================
   (Sidebar)
   ========================================================================== */
.ih-sidebar {
    width: 100%;
    max-width: 520px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 22px 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    clear: both;
    box-sizing: border-box;
}

.ih-sidebar-title {
    color: #1b1b1b;
    padding-inline: 10px;
    margin-bottom: 14px;
}

.ih-sidebar-line {
    width: 90%;
    height: 2px;
    background-color: #e0e0e0;
    margin-inline-start: 10px;
    margin-bottom: 30px;
}

.ih-sidebar-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ==========================================================================
   (Cards)
   ========================================================================== */
.ih-sidebar-card {
    display: block;
    text-decoration: none;
    background-color: #fffdf2;
    border: 1px solid #f0ebd4;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ih-sidebar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
}

.ih-card-thumb img {
    width: 100%;
    height: 220px; 
    object-fit: cover;
    display: block;
}

.ih-card-content {
    padding: 15px 12px;
}

.ih-card-title {
    font-size: 1rem;
    color: #1b1b1b;
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 2.8rem;
    overflow: hidden;
}

.ih-card-line {
    width: 80%;
    height: 1px;
    background-color: #e8e3cc;
    margin-bottom: 12px;
}

.ih-card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ih-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.ih-meta-item.location {
    color: #666666;
}

.ih-meta-item.price {
    color: #1F4E3D;
    font-weight: 600;
}

.ih-meta-item i {
    width: 16px;
    text-align: center;
}

/* ==========================================================================
    (Responsive Fix)
   ========================================================================== */
@media (max-width: 480px) {
    .ih-sidebar {
        max-width: 100%;
        width: 100%;
        margin-inline: auto;
        border-radius: 0;
        padding: 15px 10px;
    }

    .ih-card-thumb img {
        height: 200px;
    }
}





/* Pagination Styles */
.pagination {display: flex;  flex-wrap: wrap; justify-content: center;margin-top: 20px; grid-column: 1 / -1; }
.pagination a,.current  {display: inline-block;padding: 10px 17px;margin: 3px; background-color:#fff;    box-shadow:0 10px 25px rgba(0,0,0,.05);

color: #1b3e38 ;border-radius: 5px;}
.pagination a:hover {  background-color:#dcc171}
.pagination .current {background-color:#1b3e38 ;color: #fff;padding: 10px 20px;}