﻿/*==================================
        OneNews Page
==================================*/

body {
    font-family: "Vazirmatn", sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 2;
}

/*================ Hero =================*/

.blog-hero {
    background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)), url("../images/bkNews.jpg") center/cover;
    padding: 50px 0;
    text-align: center;
    color: #fff;
}

.blog-category {
    display: inline-block;
    background: #74C63D;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.7;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: rgba(255,255,255,.9);
    font-size: 15px;
}

    .blog-meta i {
        color: #74C63D;
        margin-left: 6px;
    }

/*================ Article =================*/

.blog-content {
    padding: 80px 0;
}

    .blog-content .container {
      /*  max-width: 900px;*/
        background: #fff;
        padding: 45px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
    }
.Center-image {
    text-align: center;
    display: block;
    width: 100%;
   clear:both;
}
    .Center-image img {
        width: auto;
        max-width: 100%;
        display: inline-block;
        height: auto;
    /*    transform: scale(1.5);
        transform-origin:center center;
        margin:40px;*/
        /* float: none !important;*/
    }
    .blog-content img {
        border-radius: 18px;
    }

.blog-content p {
    clear: both;
    margin: 25px 0;
    font-size: 17px;
    color: #555;
    text-align: justify;
}

/*================ Call Box =================*/

.call-box {
    padding-bottom: 70px;
}

.call-card {
    background: linear-gradient(135deg,#74C63D,#57a92b);
    color: #fff;
    text-align: center;
    padding: 50px;
    border-radius: 25px;
}

    .call-card h2 {
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 25px;
    }

    .call-card .btn {
        background: #fff;
        color: #57a92b;
        border: none;
        border-radius: 40px;
        padding: 14px 35px;
        font-weight: 700;
        transition: .3s;
    }

        .call-card .btn:hover {
            transform: translateY(-4px);
        }

/*================ Related =================*/

.related-blog {
    padding: 70px 0;
    background: #fff;
}

    .related-blog h2 {
        text-align: center;
        font-weight: 800;
        margin-bottom: 50px;
    }

.related-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .35s;
}

    .related-card:hover {
        transform: translateY(-8px);
    }

    .related-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .related-card h5 {
        padding: 20px;
        text-align: center;
        font-weight: 700;
        line-height: 1.8;
    }

/*================ Responsive =================*/

@media(max-width:991px) {

    .blog-hero {
        padding: 90px 0;
    }

        .blog-hero h1 {
            font-size: 34px;
        }

    .blog-content .container {
        padding: 25px;
    }

    .call-card {
        padding: 35px 20px;
    }

        .call-card h2 {
            font-size: 24px;
        }
}

@media(max-width:768px) {

    .blog-hero h1 {
        font-size: 28px;
    }

    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }

    .blog-content p {
        font-size: 15px;
    }

    .related-card {
        margin-bottom: 25px;
    }
}


.news-composite-card-modern {
    background-color: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

    .news-composite-card-modern:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07) !important;
    }


.news-card-title {
    font-size: 13.5px;
    font-weight: bold;
    line-height: 1.6;
    color: var(--kara-dark);
    margin: 0;
}
.news-quad-grid-modern .img-wrapper {
    display: flex;
    width: 100%;
    height: 220px;
    max-height: 220px;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(145deg, #f8f9fa, #f1f3f5);
    border: 1px solid rgba(0, 0, 0, 0.04);
    align-items: center;
    justify-content: center;
    padding: 0px;
    cursor: pointer;
    transition: all 0.4s ease;
}

    .news-quad-grid-modern .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

.news-composite-card-modern:hover .img-wrapper img {
    transform: scale(1.06);
}

.news-composite-card-modern:hover .img-wrapper {
    background: #fff;
    border-color: var(--kara-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}