.news-header {
    background-color: #ffffff;
    padding: 40px 0 0 0;
}

.news-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.news-page-title {
    font-family: 'HisenseSansAlfabet', Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

/* News Controls */
.news-controls {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 930px;
}

.news-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 100px;
    padding: 0 20px;
    min-width: 400px;
    width: 100%;
    border: 1px solid #cccccc;
}

.news-search-input {
    border: none;
    height: 60px;
}

.news-search-input::placeholder {
    color: #999;
}

.news-search-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon {
    width: 15px;
}

.news-filter-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
}

span.filter-icon {
    margin-top: -7px;
}

.news-filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    line-height: 1;
    border-right: 1px solid #D9D9D9;
    padding: 0 12px 0 0;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.news-filter-btn:hover {
    border-color: var(--hisense-primary);
    color: var(--hisense-primary);
}

.news-count {
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 1;
}

/* News Grid Section */
.news-grid-section {
    padding: 60px 0 100px 0;
}


/* Load More Button */
.news-load-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background-color: #333;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 100px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
    font-weight: 400;
}

.load-more-btn:hover {
    background: var(--hisense-primary);
}

.load-more-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Loading Overlay */
.news-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--hisense-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-news-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-news-found p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .news-grid-section {
        padding: 60px 0 80px 0;
    }

}

@media (max-width: 768px) {
    .news-header {
        padding: 30px 0;
    }

    .news-header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .news-page-title {
        font-size: 36px;
        text-align: center;
    }

    .news-controls {
        flex-direction: column;
        gap: 15px;
    }

    .news-search-wrapper {
        min-width: auto;
        width: 100%;
    }

    .news-filter-wrapper {
        margin-top: 30px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .news-grid-section {
        padding: 0 0 60px 0;
    }

    .news-item-image {
        height: 200px;
    }

    .news-item-content {
        padding: 20px 0 0 0;
    }

    .news-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .news-page-title {
        font-size: 28px;
    }

    .news-search-wrapper {
        padding: 0 15px;
    }

    .news-search-input {
        padding: 12px 0;
        font-size: 14px;
    }

    .load-more-btn {
        padding: 12px 30px;
        font-size: 14px;
        min-width: 160px;
    }
}