.news-page .product-header {
    min-height: 670px;
}

.news-title-cs {
    font-size: 30px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 30px;
}

/* news list */
.news-list-cop {
    display: flex;
    gap: 0px;
    margin-bottom: 40px;
}

.news-list-left {
    width: 100%;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.no-data-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-list-right {
    width: 25%;
    padding: 0px 0px 0px 19px;
}

.blog-pos {
    position: sticky;
    top: 20px;
    transition: 0.45s ease-in-out;
}

.blog-img a img {
    width: 100%;
    height: 220px;
    border-radius: 7px;
    object-fit: cover;
}

.sidebar-blog {
    margin-bottom: 20px;
}

.sidebar-blog a img {
    width: 100%;
    height: 355px;
    border-radius: 7px;
    object-fit: cover;
}

.blog-list {
    border-radius: 7px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.blog-top {
    display: flex;
    margin: 12px 0px 12px 10px;
}

.blog-top span img {
    width: 20px;
    height: 20px;
}

.blog-author {
    margin-left: 5px;
    font-size: 12px;
}

.blog-author a {
    text-decoration: none;
    font-weight: bold;
}

.blog-content {
    margin: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-linkr {
    font-weight: 600;
    color: #3a3a3a;
    transition: 0.3s ease-in-out;
    text-transform: none;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
    display: block;
    margin-bottom: 10px;
}

.blog-linkr:hover {
    color: #e60023;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.blog-link {
    margin-top: auto;
    font-size: 12px;
}

.blog-link a {
    text-decoration: none;
    color: #3a3a3a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-link a:hover {
    color: #f79853;
}

.blog-link .icon {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-link a:hover .icon {
    transform: translateX(3px);
}

.no-data {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 2px dashed #ddd;
}

.no-data-content {
    text-align: center;
    padding: 40px;
}

.no-data-icon {
    font-size: 60px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-data-title {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.no-data-text {
    font-size: 16px;
    color: #999;
    line-height: 1.5;
}

.news-page .title-main {
    text-align: left;
}

/** Trending block **/
.news__trending--wrapper{
     display: flex;
    flex-wrap: wrap;
    gap: 28px;
}
.news__feature--image img{
    border-radius: 40px;
    display: block;
    width: 100%;
    height: auto;
}
.news__trending--item{
    display: flex;
    gap:0px;
    flex-direction: row;
    width: calc((100% - 28px) / 2);
}

.news__trending--thumb{
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.news__trending--tag{
    font-size: 14px;
    font-weight: 400;
    padding: 8px 20px;
    border-radius: 30px;
    color: #8B6600;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1;
    background: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 70px;
}

.news__trending--thumb img{
    transition: all 0.5s;
    display: block;
    width: 100%;
    height: auto;
}

.news__trending--item:hover .news__trending--thumb img{
    transform: scale(1.05);
}

.news__trending--info{
    padding: 24px;
    padding-right: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.news__trending--info h3 a{
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: #2D3136;
    transition: all 0.3s;
}

.news__trending--info h3 a:hover{
    color: var(--color-green);
}

.news__trending--viewmore a{
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid var(--color-green);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    color:var(--color-green)
}

.news__trending--viewmore a:hover{
    background: var(--bg-green);
    color:var(--color-white)
}

/** Sub heading **/
.news__subheading{
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
}

.news__subheading h3{
    font-size: 20px;
    font-weight: 600;
    color: var(--color-black);
}

/** News feature **/
.news__feature{
    margin-bottom: 60px;
    margin-top: -15rem;
}

.news__feature--label{
    display: flex;
}

.news__feature--label span{
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    min-width: 118px;
    background: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.news__feature--desc{
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
}

.news__feature--heading{
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
}

.news__feature--content{
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.news__feature--wrapper{
    position: relative;
}

.news__feature--content{
    position: absolute;
    left: 80px;
    bottom: 80px;
    right: 80px;
    z-index: 1;
}

.news__feature--left{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news__feature--action{
    background: transparent;
    border: none;
    cursor: pointer;
}

/** News main heading **/
.news__main-block{
    text-align: center;
    margin-bottom: 30px;
}

.news__main--heading{
    font-size: 52px;
    font-weight: 700;
    color: var(--color-white);
}

.news__main--desc{
    font-size: 20px;
    font-weight: 400;
    color: var(--color-white);
}

/* 4K and Ultra-wide Screens */
@media (min-width: 1600px) {
}

/* Ultra Large Devices (Extra Large Desktop) */
@media (max-width: 1599px) {
}

/* XXL Devices (Large Desktop) */
@media (max-width: 1399px) {
}

/* Extra Large Devices (Small Desktop) */
@media (max-width: 1199px) {
    .news-page .product-header {
        min-height: 0;
    }

    .news__feature {
        margin-top: -10rem;
        margin-bottom: 3.5rem;
    }

    .news__feature--content{
        left: 2.5rem;
        right: 2.5rem;
        bottom: 2.5rem;
    }

    .news__main--heading{
        font-size: 3rem;
    }

    .news__main--desc{
        font-size: 1.125rem;
    }

    .news-grid-box {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Large Devices (Tablets) */
@media (max-width: 991px) {
    .news-list-cop {
        flex-direction: column;
        gap: 16px;
    }
    .news-list-left {
        width: 100%;
    }

    .news-list-right {
        width: 100%;
        padding-left: 0px;
    }

    .news-page .title-main {
        text-align: center;
    }

    .news__feature {
        margin-top: -6rem;
        margin-bottom: 3rem;
    }

    .news__feature--content{
        left: 1.5rem;
        right: 1.5rem;
        bottom: 1.5rem;
    }

    .news__feature--content{
        gap: 1rem;
    }

    .news__feature--left{
        gap: 1rem;
    }

    .news__feature--heading{
        font-size: 1.375rem;
    }

    .news__feature--desc{
        font-size: 0.9375rem;
    }

    .news__trending--wrapper{
        gap: 1rem;
    }

    .news__trending--item{
        width: 100%;
    }

    .news__trending--info{
        padding: 1.25rem;
        padding-right: 0;
        gap: 1rem;
    }
    
    .news__trending--info h3 a{
        font-size: 1.125rem;
    }

    .news__subheading{
        margin-top: 3rem;
        margin-bottom: 2rem;
    }

    .news-grid-box {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 767px) {
    .news-grid-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .news__feature{
        margin-top: 0;
    }

    .news__feature--content{
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        padding: 1.25rem 0 0;
        gap: 1rem;
        flex-direction: column;
    }

    .news__feature--wrapper{
        border-radius: 2rem;
        overflow: hidden;
    }

    .news__feature--image img{
        border-radius: 0;
    }

    .news__feature--right{
        display: flex;
        justify-content: flex-start;
    }

    .news__trending--item{
        flex-direction: column;
        width: 100%;
    }

    .news__trending--info{
        padding: 1rem 0 0;
    }

    .news__trending--tag{
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
        border-radius: 2rem;
    }

    .news__subheading{
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .news__feature--label span {
        background: var(--bg-secondary);
        color: var(--color-black);
    }

    .news__feature--action {
        background: var(--bg-secondary);
    }

    .news__feature--heading{
        color: var(--color-black);
    }

    .news__feature--desc{
        color: var(--color-black);
    }

}

/* Small Devices (Phones) */
@media (max-width: 575px) {
    .news-grid-box {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Extra Small Devices */
@media (max-width: 374px) {

    .news__feature--content{
        padding: 1rem 1rem 0;
    }

    .news__feature--heading{
        font-size: 1.25rem;
    }

    .news__feature--desc{
        font-size: 0.875rem;
    }

    .news__trending--info h3 a{
        font-size: 1.0625rem;
    }
}
