/* ===== Buttons Css ===== */
.latest-news-area .single-news .content-body .light-rounded-buttons .primary-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

    .latest-news-area .single-news .content-body .light-rounded-buttons .active.primary-btn-outline, .latest-news-area .single-news .content-body .light-rounded-buttons .primary-btn-outline:hover, .latest-news-area .single-news .content-body .light-rounded-buttons .primary-btn-outline:focus {
        background: var(--primary-dark);
        color: var(--white);
    }

.latest-news-area .single-news .content-body .light-rounded-buttons .deactive.primary-btn-outline {
    color: var(--dark-3);
    border-color: var(--gray-4);
    pointer-events: none;
}

/*===== latest-news-area =====*/
.latest-news-area {
    background: var(--light-3);
    padding: 120px 0;
}

    .latest-news-area .section-title-four {
        text-align: center;
        max-width: 750px;
        margin: auto;
        margin-bottom: 50px;
        position: relative;
        z-index: 5;
        margin-top: 12px;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .latest-news-area .section-title-four {
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .latest-news-area .section-title-four {
        margin-bottom: 35px;
    }
}

.latest-news-area .section-title-four span {
    text-transform: uppercase;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .latest-news-area .section-title-four span {
        margin-bottom: 15px;
    }
}

.latest-news-area .section-title-four h2 {
    margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .latest-news-area .section-title-four h2 {
        font-size: 2rem;
        line-height: 2.8rem;
    }
}

@media (max-width: 767px) {
    .latest-news-area .section-title-four h2 {
        font-size: 1.5rem;
        line-height: 1.9rem;
    }
}

.latest-news-area .section-title-four h3 {
    font-size: 3.8rem;
    line-height: 3.8rem;
    font-weight: 800;
    text-transform: uppercase;
    position: absolute;
    top: -18px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: var(--gray-3);
    z-index: -1;
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: var(--gray-3);
    opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .latest-news-area .section-title-four h3 {
        font-size: 3.3rem;
        line-height: 3.5rem;
        top: -18px;
    }
}

@media (max-width: 767px) {
    .latest-news-area .section-title-four h3 {
        font-size: 2.7rem;
        line-height: 3.2rem;
        top: -17px;
    }
}

.latest-news-area .section-title-four p {
    color: var(--dark-3);
}

.latest-news-area .single-news {
    border-radius: 7px;
    background-color: var(--white);
    margin-top: 30px;   
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

    .latest-news-area .single-news .image {
        position: relative;
        overflow: hidden;
        border-radius: 7px 7px 0 0;
    }

    .latest-news-area .single-news .image img {
        height: 100%;
        width: 100%;
        transition: all 0.4s ease-in-out;
    }


    .latest-news-area .single-news .content-body {
        background-color: var(--white);
        padding: 30px;
        border-radius: 0 0 7px 7px;       
    }

        .latest-news-area .single-news .content-body .cat {
            color: var(--dark-3);
            font-size: 0.875em;
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
        }

            .latest-news-area .single-news .content-body .cat:hover {
                color: var(--primary);
            }

        .latest-news-area .single-news .content-body .title {
            margin-top: 10px;
        }

            .latest-news-area .single-news .content-body .title a {
                color: var(--black);
                font-weight: 600;
                -webkit-transition: all 0.3s ease-out 0s;
                -moz-transition: all 0.3s ease-out 0s;
                -ms-transition: all 0.3s ease-out 0s;
                -o-transition: all 0.3s ease-out 0s;
                transition: all 0.3s ease-out 0s;
            }

                .latest-news-area .single-news .content-body .title a:hover {
                    color: var(--primary);
                }

        .latest-news-area .single-news .content-body p {
            color: var(--dark-3);
            margin-top: 15px;
        }

        .latest-news-area .single-news .content-body .light-rounded-buttons {
            margin-top: 25px;
        }

    .latest-news-area .single-news:hover .image .thumb {
        transform: scale(1.1);
    }
