.news-box-items-style-1 {
    border-radius: 12px;
    background: $white;
    box-shadow: 0 0 111.6px 16px rgba(14, 5, 50, 0.07);
    margin-top: 30px;
    padding: 5px;

    .news-thumb {
        position: relative;
        z-index: 9;
        border-radius: 12px;
        overflow: hidden;

        img {
            @include imgw;
            border-radius: 12px;
            transition-delay: .1s;
            transition-timing-function: ease-in-out;
            transition-duration: .7s;
            transition-property: all;
        }

        .date-items {
            font-size: 15px;
            font-weight: 500;
            border-radius: 12px;
            background-color: $theme-color;
            color: $header-color;
            padding: 13px 20px;
            line-height: 1;
            display: inline-block;
            position: absolute;
            bottom: 10px;
            left: 10px;

            i {
                margin-right: 10px;
            }
        }
    }

    .news-content {
        padding: 30px 20px;

        .user-box {
            @include flex;
            gap: 30px;

            .user-item {
                font-size: 15px;
                font-weight: 500;
                line-height: 1;
                @include flex;
                gap: 6px;

                i {
                    margin-right: 6px;
                    font-size: 22px;
                }
            }

            span {
                border-radius: 4px;
                background: rgba(0, 93, 181, 0.10);
                color: $theme-color-2;
                padding: 10px 15px;
                display: inline-block;
                line-height: 1;
            }
        }

        h4 {
            margin-top: 10px;

            @include breakpoint (max-xxl){
                font-size: 22px;
            }

            @include breakpoint (max-lg){
                font-size: 20px;
            }

            a {
                background-position: 0 95%;
                background-repeat: no-repeat;
                background-size: 0% 2px;
                display: inline;
                
                &:hover {
                    color: $theme-color-2;
                    background-size: 100% 2px;
                    background-image: linear-gradient(180deg, $theme-color-2 0%, $theme-color-2 100%);
                }
            }
        }

        p {
            margin-top: 10px;
        }
    }

    &:hover {
        .news-thumb {
            img {
                transform: scale(1.1) rotate(2deg);
            }
        }
    }

    &.style-2 {
        .news-content {
            span {
                border-radius: 4px;
                background: rgba(0, 93, 181, 0.10);
                color: $theme-color-2;
                padding: 10px 15px;
                display: inline-block;
                line-height: 1;
            }

            .user-box-items {
                @include flex;
                gap: 40px;
                margin-top: 15px;

                .date-item {
                    font-size: 15px;
                    font-weight: 500;

                    i {
                        margin-right: 10px;
                        color: $theme-color-2;
                    }
                }
            }
        }
    }
}

.news-left-items-style-3 {
    margin-top: 30px;

    .thumb{
        overflow: hidden;
        position: relative;
        border-radius: 12px;

        img {
            @include imgw;
            border-radius: 12px;
            transition-delay: .1s;
            transition-timing-function: ease-in-out;
            transition-duration: .7s;
            transition-property: all;
        }
    }

    .content {
        margin-top: 30px;
        .user-box {
            @include flex;
            gap: 30px;

            .user-item {
                font-size: 15px;
                font-weight: 500;

                i {
                    margin-right: 6px;
                    font-size: 22px;
                }
            }

            span {
                border-radius: 4px;
                background: rgba(65, 197, 117, 0.10);
                color: $theme-color-3;
                padding: 10px 15px;
                display: inline-block;
                line-height: 1;
            }
        }

        h3 {
            margin-top: 10px;

            a {
                font-size: 36px;
                font-weight: 700;
                text-transform: none;

                @include breakpoint (max-xl){
                    line-height: 140%;
                }

                @include breakpoint (max-md){
                    font-size: 26px;
                }

                @include breakpoint (max-sm){
                    font-size: 24px;
                }

                &:hover {
                    color: $theme-color-3;
                }
            }
        }

        .theme-btn {
            background-color: transparent;
            border: 1px solid $theme-color-3;
            color: $theme-color-3;
            margin-top: 20px;

            i {
                background-color: $theme-color-3;
                color: $white;
            }

            &::before {
                background-color: $theme-color-3;
            }

            &:hover {
                color: $white;

                i {
                    background-color: $white;
                    color: $theme-color-3;
                }
            }
        }
    }

    &:hover {
        .thumb {
            img {
                transform: scale(1.1) rotate(2deg);
            }
        }
    }
}

.news-right-items-style-3 {
    margin-top: 30px;

    li {
        @include flex;
        gap: 20px;

         @include breakpoint (max-sm){
           display: block;
        }
        
        .thumb {
            overflow: hidden;
            position: relative;
            border-radius: 12px;
            max-width: 196px;
            width: 100%;

            @include breakpoint (max-sm){
              max-width: initial;
              margin-bottom: 20px;
            }

            img {
                @include imgw;
                border-radius: 12px;
                transition-delay: .1s;
                transition-timing-function: ease-in-out;
                transition-duration: .7s;
                transition-property: all;
            }
        }

        .content {

            @include breakpoint (max-lg){
                max-width: 350px;
            }

            .date-items {
                margin-bottom: 10px;
                display: inline-block;

                i {
                    color: $theme-color-3;
                    margin-right: 8px;
                }
            }

            h3 {
                font-weight: 500;
                line-height: 137%;
                font-size: 24px;

                @include breakpoint (max-xl){
                    font-size: 20px;
                }

                @include breakpoint (max-lg){
                    font-size: 24px;
                }

                a {
                   

                    &:hover {
                        color: $theme-color-3;
                    }
                }
            }

            .link-btn {
                color: $theme-color-3;
                margin-top: 15px;
                display: inline-block;
                @include transition;
                font-weight: 800;
                font-size: 16px;

                i {
                    margin-left: 7px;
                }

                &:hover {
                    color: $header-color;
                }
            }
        }

        &:hover {
            .thumb {
                img {
                    transform: scale(1.1) rotate(2deg);
                }
            }
        }

         &:not(:last-child) {
            margin-bottom: 20px;
        }
    }
}

.news-box-items-style-4 {
    border-radius: 12px;
    background: $white;
    box-shadow: 0 0 111.6px 16px rgba(14, 5, 50, 0.07);
    margin-top: 30px;
    padding: 5px;

    .news-thumb {
        position: relative;
        z-index: 9;
        border-radius: 12px;
        overflow: hidden;

        img {
            @include imgw;
            border-radius: 12px;
            transition-delay: .1s;
            transition-timing-function: ease-in-out;
            transition-duration: .7s;
            transition-property: all;
        }

        .post-date {
            width: 78px;
            height: 78px;
            padding: 8px;
            text-align: center;
            background-color: $theme-color-3;
            position: absolute;
            bottom: 0px;
            right: 0px;
            border-radius: 12px 0;

            h4 {
                color: $white;
            }

            p {
                color: $white;
                font-weight: 400;
            }
        }
    }

    .news-content {
        padding: 30px 20px;

        .user-box {
            @include flex;
            gap: 30px;

            .user-item {
                font-size: 15px;
                font-weight: 500;

                i {
                    margin-right: 6px;
                    font-size: 22px;
                }
            }

            span {
                border-radius: 4px;
                background: #EBFA9E;
                color: #3E4807;
                padding: 10px 15px;
                display: inline-block;
                line-height: 1;
            }
        }

        h4 {
            margin-top: 10px;
            a {
                background-position: 0 95%;
                background-repeat: no-repeat;
                background-size: 0% 2px;
                display: inline;
                
                &:hover {
                    color: $theme-color-3;
                    background-size: 100% 2px;
                    background-image: linear-gradient(180deg, $theme-color-3 0%, $theme-color-3 100%);
                }
            }
        }

        p {
            margin-top: 10px;
            border-bottom: 1px solid #D9D9D9;
            padding-bottom: 20px;
        }

        .bottom-items-area {
            @include flex;
            justify-content: space-between;
            margin-top: 20px;

            .date-items {
                font-size: 15px;
                font-weight: 500;

                i {
                    margin-right: 10px;
                    color: $theme-color-3;
                }
            }

            .link-btn {
                color: $theme-color-3;
                display: inline-block;
                @include transition;
                font-weight: 800;
                font-size: 16px;

                i {
                    margin-left: 7px;
                }

                &:hover {
                    color: $header-color;
                }
            }
        }
    }

    &:hover {
        .news-thumb {
            img {
                transform: scale(1.1) rotate(2deg);
            }
        }
    }
}

.news-box-items-style-5 {
    background-color: $white;
    box-shadow: (0 10px 40px rgba(29, 31, 21, 0.10));
    border-radius: 10px;
    padding: 10px;
    margin-top: 30px;
    
    .news-thumb {
        position: relative;
        z-index: 9;
        border-radius: 15px;
        overflow: hidden;

        img {
            @include imgw;
            border-radius: 15px;
            transition-delay: .1s;
            transition-timing-function: ease-in-out;
            transition-duration: .7s;
            transition-property: all;
        }

        .post-date {
            width: 60px;
            height: 68px;
            padding: 2px;
            text-align: center;
            background-color: $theme-color-4;
            position: absolute;
            top: 0px;
            right: 0px;
            border-radius: 10px;

            h4 {
                color: $white;
                font-family: $heading-font-2;
            }

            p {
                color: $white;
                font-weight: 400;
            }
        }
    }

    .news-content {
        padding: 35px 30px 25px;

        ul {
            display: flex;
            align-items: center;
            gap: 20px;

            li {
                i {
                    margin-right: 6px;
                    color: $theme-color-4;
                }
            }
        }

        h3 {
            margin-top: 10px;
            font-size: 25px;
            font-weight: 600;
            line-height: 120%;

            a {
                background-position: 0 95%;
                background-repeat: no-repeat;
                background-size: 0% 2px;
                display: inline;
                
                &:hover {
                    color: $theme-color-4;
                    background-size: 100% 2px;
                    background-image: linear-gradient(180deg, $theme-color-4 0%, $theme-color-4 100%);
                }
            }
        }

        .theme-btn {
            margin-top: 25px;
            background-color: transparent;
            border: 1px solid $theme-color-4;
            border-radius: 5px;
            padding: 16px 32px;

            &::before {
                background-color: $theme-color-4;
            }
        }
    }

    &:hover {
        .news-thumb {
            img {
                transform: scale(1.1) rotate(2deg);
            }
        }
    }
}

.news-section-6 {
    .section-title-area {
        .theme-btn {
            background-color: $theme-color-4;
            border-radius: 5px;
            padding: 22px 40px;
            color: $white;
        }
    }
}

.news-left-items-style-6 {
    border-radius: 20px;
    background-color: rgba(121, 185, 0, 0.05);
    box-shadow: 0 10px 40px 0 rgba(29, 31, 21, 0.10);
    margin-top: 30px;
    padding: 20px;
    padding-bottom: 30px;

    .thumb{
        overflow: hidden;
        position: relative;
        border-radius: 12px;

        img {
            @include imgw;
            border-radius: 12px;
            transition-delay: .1s;
            transition-timing-function: ease-in-out;
            transition-duration: .7s;
            transition-property: all;
        }
    }

    .content {
        margin-top: 30px;
            ul {
                display: flex;
                align-items: center;
                gap: 20px;

                li {
                    i {
                        margin-right: 6px;
                        color: $theme-color-4;
                    }
                }
            }

        h3 {
            margin-top: 15px;
            font-size: 28px;
            font-weight: 600;

            @include breakpoint (max-sm){
                font-size: 24px;
                line-height: 155%;
            }

            a {
               
                text-transform: none;

                &:hover {
                    color: $theme-color-4;
                }
            }
        }

        .theme-btn {
            background-color: $theme-color-4;
            border-radius: 5px;
            padding: 18px 32px;
            color: $white;
            margin-top: 25px;
        }
    }

    &:hover {
        .thumb {
            img {
                transform: scale(1.1) rotate(2deg);
            }
        }
    }
}

.news-right-items-style-6 {
    border-radius: 20px;
    background-color: rgba(121, 185, 0, 0.05);
    margin-top: 30px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 30px;

    @media screen and (max-width: 650px) {
        display: block;
    }

    .thumb{
        overflow: hidden;
        position: relative;
        border-radius: 12px;
        max-width: 260px;
        width: 100%;

        @media screen and (max-width: 650px) {
            max-width: initial;
        }

        img {
            @include imgw;
            border-radius: 12px;
            transition-delay: .1s;
            transition-timing-function: ease-in-out;
            transition-duration: .7s;
            transition-property: all;
        }
    }

    .content {
        max-width: 313px;

        @media screen and (max-width: 650px) {
           max-width: initial;
           padding: 25px;

           h3 {
            font-size: 24px !important;
           }
        }

        ul {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 10px;

            @include breakpoint (max-xl){
                flex-wrap: wrap;
                gap: 8px;
            }

            li {
                i {
                    margin-right: 6px;
                    color: $theme-color-4;
                }
            }
        }

        h3 {
            margin-bottom: 8px;
            line-height: 145%;
            font-size: 20px;
            
            a {
                font-weight: 600;
                text-transform: none;
                

                &:hover {
                    color: $theme-color-4;
                }
            }
        }

        .theme-btn {
            background-color: transparent;
            border-radius: 5px;
            border: 1px solid $theme-color-4;
            padding: 18px 32px;
            color: $theme-color-4;
            line-height: 1;
            margin-top: 20px;

            &::before {
                background-color: $theme-color-4;
            }

            &:hover {
                color: $white;
            }
        }
    }

    &:hover {
        .thumb {
            img {
                transform: scale(1.1) rotate(2deg);
            }
        }
    }
}

.news-section-7 {
    .section-title-area {
        .theme-btn {
            background-color: $theme-color-4;
            border-radius: 5px;
            padding: 22px 40px;
            color: $white;
        }
    }
}

.news-box-items-style-7 {
    background-color: $white;
    box-shadow: (0 10px 40px rgba(29, 31, 21, 0.10));
    border-radius: 10px;
    padding: 10px;
    margin-top: 30px;
    
    .news-thumb {
        position: relative;
        z-index: 9;
        border-radius: 15px;
        overflow: hidden;

        img {
            @include imgw;
            border-radius: 15px;
            transition-delay: .1s;
            transition-timing-function: ease-in-out;
            transition-duration: .7s;
            transition-property: all;
        }

        .post-date {
            width: 60px;
            height: 68px;
            padding: 2px;
            text-align: center;
            background-color: $theme-color-4;
            position: absolute;
            bottom: 0px;
            right: 0px;
            border-radius: 10px;

            h4 {
                color: $white;
                font-family: $heading-font-2;
            }

            p {
                color: $white;
                font-weight: 400;
            }
        }
    }

    .news-content {
        padding: 35px 30px 25px;

        ul {
            display: flex;
            align-items: center;
            gap: 20px;

            li {
                i {
                    margin-right: 6px;
                    color: $theme-color-4;
                }
            }
        }

        h3 {
            margin-top: 10px;
            font-size: 25px;
            font-weight: 600;
            line-height: 120%;

            @include breakpoint (max-xxl){
                font-size: 23px;
                line-height: 130%;
            }

            @include breakpoint (max-lg){
                font-size: 20px;
            }

            a {
                background-position: 0 95%;
                background-repeat: no-repeat;
                background-size: 0% 2px;
                display: inline;
                
                &:hover {
                    color: $theme-color-4;
                    background-size: 100% 2px;
                    background-image: linear-gradient(180deg, $theme-color-4 0%, $theme-color-4 100%);
                }
            }
        }

        .theme-btn {
            margin-top: 25px;
            background-color: transparent;
            border: 1px solid $theme-color-4;
            border-radius: 5px;
            padding: 18px 34px;

            &::before {
                background-color: $theme-color-4;
            }
        }
    }

    &:hover {
        .news-thumb {
            img {
                transform: scale(1.1) rotate(2deg);
            }
        }
    }
}


.news-details-post {
    .news-details-image {
        img {
            @include imgw;
            border-radius: 8px;
        }
    }

    .news-details-content {
        margin-top: 50px;

        @include breakpoint(max-xl) {
            margin-top: 30px;
        }

        .news-list {
            @include flex;
            gap: 40px;
            margin-bottom: 10px;

            li {
                color: $header-color;

                i {
                    color: $theme-color;
                }

                &.style-1 {
                    position: relative;

                    &::before {
                        position: absolute;
                        content: "";
                        width: 4px;
                        height: 4px;
                        background-color: #898d90;
                        border-radius: 30px;
                        top: 14px;
                        left: -20px;
                    }
                }
            }
        }

        h2 {
            font-size: 44px;
            font-weight: 500;
            margin-bottom: 20px;

            @include breakpoint(max-xl) {
                font-size: 35px;
            }

            @include breakpoint(max-md) {
                font-size: 25px;
            }
        }

        p {
            max-width: 761px;
        }

        .sideber {
            border-radius: 12px;
            border-left: 3px solid $theme-color-2;
            padding: 35px;
            margin-top: 40px;
            margin-bottom: 45px;
            background-color: #F4F5EC;

            @include breakpoint(max-xl) {
                margin-top: 30px;
                margin-bottom: 30px;
            }

            h3 {
                max-width: 692px;
            }

            .info-item-area {
                display: flex;
                align-items: end;
                justify-content: space-between;
                margin-top: 40px;

                .client-info {
                    display: flex;
                    align-items: center;
                    gap: 20px;

                    span {
                        font-size: 18px;
                        font-weight: 500;
                        position: relative;
                        color: #003566;
                        display: inline-block;
                        margin-left: 30px;
                        font-style: italic;

                        &::before {
                            @include before;
                            background-color: #003566;
                            width: 18px;
                            height: 1px;
                            left: -30px;
                            top: 18px;
                        }
                    }
                }
            }
        }

        h4 {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 10px;

            @include breakpoint(max-sm) {
                font-size: 20px;
            }
        }

        .list {
            margin-top: 20px;
            margin-bottom: 40px;

            li {
                img {
                    margin-right: 8px;
                }

                &:not(:last-child) {
                    margin-bottom: 10px;
                }
            }
        }

        .news-image-2 {
            img {
                @include imgw;
                border-radius: 12px;
            }
        }

        .text {
            margin-top: 30px;
        }

        .list-item {
            li {
                position: relative;
                line-height: 225%;
                margin-left: 20px;

                &:not(:last-child) {
                    margin-bottom: 20px;
                }

                &::before {
                    @include before;
                    width: 6px;
                    height: 6px;
                    background-color: #4b5563;
                    border-radius: 30px;
                    top: 15px;
                    left: -15px;
                }
            }
        }

        .comment-area {
            margin-top: 80px;

            @include breakpoint(max-xl) {
                margin-top: 30px;
            }

            h3 {
                font-size: 36px;
                font-weight: 700;
                margin-bottom: 30px;

                @include breakpoint(max-xl) {
                    font-size: 25px;
                }

                @include breakpoint(max-sm) {
                    font-size: 20px;
                }
            }

            .blog-single-comment {
                display: flex;
                gap: 18px;
                margin-bottom: 45px;

                @include breakpoint(max-xl) {
                    margin-bottom: 30px;
                }

                @include breakpoint(max-lg) {
                    flex-wrap: wrap;
                }

                .image {
                    img {
                        max-width: initial;
                    }
                }

                .content {
                    h6 {
                        color: #5c6672;
                        margin-bottom: 20px;

                        span {
                            color: $header-color;
                            font-size: 18px;
                            font-weight: 700;
                        }
                    }

                    .single-box {
                        border: 1px solid rgba(0, 53, 102, 0.15);
                        padding: 30px;
                        margin-bottom: 10px;
                        border-radius: 10px;
                    }

                    .reply {
                        color: $theme-color-2;
                        font-weight: 500;

                        i {
                            margin-left: 5px;
                        }
                    }
                }

                &.style-2 {
                    margin-left: 110px;

                    @include breakpoint(max-xl) {
                        margin-left: 0;
                    }
                }
            }
        }

        .comment-form-wrap {
            margin-top: 80px;

            @include breakpoint(max-xl) {
                margin-top: 30px;
            }

            h3 {
                font-size: 36px;
                font-weight: 700;
                margin-bottom: 10px;

                @include breakpoint(max-xl) {
                    font-size: 25px;
                }

                @include breakpoint(max-sm) {
                    font-size: 20px;
                }
            }

            p {
                margin-bottom: 50px;

                @include breakpoint(max-xl) {
                    margin-bottom: 30px;
                }
            }

            .form-clt {
                span {
                    color: $header-color;
                    display: inline-block;
                    margin-bottom: 10px;
                    font-size: 16px;
                    font-weight: 500;
                    text-transform: capitalize;
                }

                input,
                textarea {
                    width: 100%;
                    outline: none;
                    border: none;
                    background: #F4F5EC;
                    padding: 15px 20px;
                    font-weight: 400;
                    color: $text-color;
                    border-radius: 10px;

                    &::placeholder {
                        color: #f7f7f7;
                    }
                }

                textarea {
                    padding-bottom: 150px;
                    resize: none;
                }
            }

            .form-check {
                .form-check-input {
                    float: left;
                    margin-left: -10px;
                    transform: translateY(4px);

                    @include breakpoint(max-md) {
                        transform: translateY(23px);
                    }
                }

                .form-check-label {
                    font-size: 15px;
                    color: #454e63;
                    margin-left: 10px;
                }
            }

            .theme-btn {
                background-color: $theme-color-4;
                border-radius: 5px;
                padding: 22px 40px;
                color: $white;

            }
        }
    }
}

.main-sideber {
    .single-sideber-widget {
        margin-bottom: 48px;

        @include breakpoint(max-xl) {
            margin-bottom: 30px;
        }

        .widget-title {
            margin-bottom: 30px;
        }

        .search-widget {
            form {
                width: 100%;
                position: relative;

                input {
                    font-size: 16px;
                    font-weight: 500;
                    padding: 16px 20px;
                    width: 100%;
                    color: #6F7783;
                    border-radius: 79px;
                    border: 1px solid rgba(34, 48, 53, 0.25);   
                }

                button {
                    position: absolute;
                    right: 20px;
                    top: 20px;
                    font-size: 18px;
                    color: #5b696d;
                    text-align: center;
                }
            }
        }

        .recent-post-area {
            .recent-items {
                @include flex;
                gap: 20px;

                &:not(:last-child) {
                    margin-bottom: 20px;
                }

                .recent-thumb {
                    img {
                        border-radius: 12px;
                    }
                }

                .recent-content {
                    ul {
                        li {
                            color: $theme-color-2;
                        }
                    }

                    h6 {
                        font-weight: 500;
                        margin-top: 5px;
                        line-height: 162%;
                        font-size: 16px;

                        a {
                            background-position: 0 95%;
                            background-repeat: no-repeat;
                            background-size: 0% 2px;
                            display: inline;

                            &:hover {
                                color: $theme-color-2;
                                background-size: 100% 2px;
                                background-image: linear-gradient(
                                    180deg,
                                    $theme-color-2 0%,
                                    $theme-color-2 100%
                                );
                            }
                        }
                    }
                }
            }
        }

        ul {
            li {
                @include flex;
                justify-content: space-between;
                font-size: 16px;
                font-weight: 400;
                color: #4b5563;
                @include transition;
                border-radius: 0;

                a {
                    color: #4b5563;
                }

                span {
                    @include transition;
                    color: #4b5563;
                }

                &:not(:last-child) {
                    margin-bottom: 15px;
                    border-bottom: 1px solid rgba(34, 48, 53, 0.25);
                    padding-bottom: 15px;
                }

                &:hover {
                    a {
                        color: $theme-color-2;
                    }

                    span {
                        color: $theme-color-2;
                    }
                }
            }
        }

        .tagcloud {
            a {
                font-size: 16px;
                font-weight: 500;
                text-decoration: underline;
                color: #5b696d;
                margin-bottom: 10px;
                display: inline-block;
                margin-right: 36px;

                @include breakpoint(max-xl) {
                    margin-right: 25px;
                }

                &:last-child {
                    margin-right: 0;
                    margin-bottom: 0;
                }

                &:hover {
                    color: $theme-color-2;
                }
            }
        }
    }
}

.news-left-content {
    .news-item {
        margin-bottom: 30px;

        .news-thumb {
            position: relative;
            z-index: 9;
            border-radius: 12px;
            overflow: hidden;

            img {
                @include imgw;
                border-radius: 12px;
                transition-delay: .1s;
                transition-timing-function: ease-in-out;
                transition-duration: .7s;
                transition-property: all;
            }

            .post-date {
                width: 78px;
                height: 78px;
                padding: 8px;
                text-align: center;
                background-color: $theme-color-2;
                position: absolute;
                bottom: 0px;
                left: 0px;
                border-radius: 0 12px;

                h4 {
                    color: $white;
                }

                p {
                    color: $white;
                    font-weight: 400;
                }
            }
        }

        .news-content {
            margin-top: 30px;
            .user-box {
                @include flex;
                gap: 30px;

                .user-item {
                    font-size: 15px;
                    font-weight: 500;

                    i {
                        margin-right: 6px;
                        font-size: 22px;
                    }
                }

                span {
                    border-radius: 4px;
                    background: #EBFA9E;
                    color: #3E4807;
                    padding: 10px 15px;
                    display: inline-block;
                    line-height: 1;
                }
            }

            h4 {
                margin-top: 15px;
                font-size: 36px;
                font-weight: 700;

                @include breakpoint (max-md){
                    font-size: 26px;
                }

                a {
                    background-position: 0 95%;
                    background-repeat: no-repeat;
                    background-size: 0% 2px;
                    display: inline;
                    
                    &:hover {
                        color: $theme-color-2;
                        background-size: 100% 2px;
                        background-image: linear-gradient(180deg, $theme-color-2 0%, $theme-color-2 100%);
                    }
                }
            }
        }

        &:hover {
            .news-thumb {
                img {
                    transform: scale(1.1) rotate(2deg);
                }
            }
        }
    }
}
