/*
Theme Name: Hello Elementor Child
Theme URI: https://www.vihang.ai/
Description: Child theme for Hello Elementor
Author: Vihang AI
Template: hello-elementor
Version: 1.0.0
*/

/* Custom styles below */

section.vihang-category-header {
    margin-top: -40px;
}

.vihang-category-page {
    width: 100%;
    background: #fff;
}

.vihang-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

/* Category header */

.vihang-category-header {
    padding:10px;
    background: #f5f8fc;
    text-align: center;
}

.vihang-category-header h1 {
    margin: 0 0 20px;
    color: #154f90;
    font-size: 46px;
    line-height: 1.2;
}

.vihang-breadcrumb {
    font-size: 14px;
    text-align: justify;
}

.vihang-breadcrumb a {
    color: #154f90;
    text-decoration: none;
}

.vihang-category-description {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.7;
}

/* Posts */

.vihang-category-posts {
    padding: 70px 0 0 0;
}

.vihang-post-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vihang-post-card {
    display: grid;
    grid-template-columns: 40% 60%;
    border-bottom: 1px solid #ebeced;
}

.vihang-post-image {
    min-height: 280px;
    overflow: hidden;
   
}

.vihang-post-image a {
    display: block;
    height: 100%;
}

.vihang-post-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit:contain;
    display: block;
}

.vihang-post-content {
    padding: 35px 40px;
}

.vihang-post-date {
    margin-bottom: 10px;
    color: #777;
    font-size: 14px;
}

.vihang-post-title {
    padding:0;
    margin: 0;
    font-size:18px;
}

.vihang-post-title a {
    color: #154f90;
    text-decoration: none;
}

.vihang-post-excerpt {
   margin-bottom: 15px;
    color: #142E2C;
    line-height: 1.5em;
    margin-top: 6px;
    font-size: 15px;
    font-family: "Inter", inter;
}

.vihang-read-more {
    display: inline-block;
    padding: 8px;
    background: #154f90;
    color: #fff !important;
    border-radius: 5px;
    text-decoration: none !important;
    font-weight: 500;
    font-size:13px;
     font-family: "Inter", inter;
     text-align:center;
}

.vihang-read-more:hover {
    background: #0d3c70;
}

/* Pagination */

.vihang-pagination {
    margin-top: 50px;
    text-align: center;
}

/* Mobile */

@media (max-width: 800px) {

    .vihang-post-card {
        grid-template-columns: 1fr;
    }

    .vihang-post-image,
    .vihang-post-image img {
        min-height: 250px;
    }

    .vihang-post-content {
        padding: 25px;
    }

    .vihang-category-header h1 {
        font-size: 34px;
    }
}