.news-panel-body {
    max-width: none !important;
    width: 100% !important;
}

.cc-pr #app .full-width .container {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.cc-pr #app .full-width {
    width: 100% !important;
    max-width: none !important;
}

.cc-pr {
    width: 100% !important;
    max-width: none !important;
}

/* Banner Styles */
.news-specialty-banner {
    text-align: left !important;
    margin: 0 !important;
    width: 100% !important;
    padding: 20px 0 20px 30px !important;
    background-color: #2C5AA0 !important;
}

.news-specialty-banner h2 {
    font-size: 3rem !important;
    line-height: 1.4 !important;
    margin: 10px 0 10px 0 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: white !important;
    font-style: italic !important;
}

/* Main Layout */
.news-content {
    background: #fff !important;
    padding: 30px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    gap: 30px !important;
}

.news-main-section {
    flex: 2 !important;
}

.news-sidebar {
    flex: 1 !important;
    max-width: 300px !important;
}

/* Featured Article */
.news-featured-article {
    background: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 25px !important;
    margin-bottom: 30px !important;
    transition: all 0.3s ease !important;
}

.news-featured-article:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Grid Layout */
.news-grid-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
}

.news-grid-item {
    background: #fff !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.news-grid-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.news-grid-image {
    width: 100% !important;
    height: 200px !important;
    overflow: hidden !important;
}

.news-grid-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.news-grid-content {
    background: #0089C6 !important;
    color: white !important;
    padding: 20px !important;
}

.news-grid-title {
    margin: 0 0 10px 0 !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

.news-grid-title a{
    color: white !important;
}

.news-grid-date {
    font-size: 0.9rem !important;
    opacity: 0.9 !important;
    font-style: italic !important;
}

/* Article Styles */
.news-article-title {
    margin: 0 0 15px 0 !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #007bff !important;
}

.news-article-date {
    color: #6c757d !important;
    font-size: 1.3rem !important;
    margin-bottom: 15px !important;
    font-style: italic !important;
}

.news-article-image {
    margin: 15px 0 !important;
    text-align: center !important;
    display: block !important;
    height: 400px !important;
    overflow: hidden !important;
}

.news-article-image img {
    max-width: 100% !important;
    height: 100% !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: cover !important;
}

.news-article-excerpt {
    color: #495057 !important;
    font-size: 1.3rem !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    text-align: justify !important;
}

.news-read-more {
    margin-top: 15px !important;
    text-align: right !important;
}

.news-read-more a {
    background-color: #0089C6 !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.news-read-more a:hover {
    background-color: #053e77 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 6px rgba(5, 62, 119, 0.3) !important;
}

/* Sidebar Widgets */
.news-widget {
    background: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-bottom: 25px !important;
}

.news-widget-title {
    color: #053e77 !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    border-bottom: 2px solid #0089C6 !important;
    padding-bottom: 8px !important;
}

/* Search Form */
.news-search-input-group {
    display: flex !important;
    gap: 0 !important;
}

.news-search-input {
    flex: 1 !important;
    padding: 10px 15px !important;
    border: 1px solid #ced4da !important;
    border-radius: 4px 0 0 4px !important;
    font-size: 1rem !important;
    outline: none !important;
}

.news-search-input:focus {
    border-color: #0089C6 !important;
    box-shadow: 0 0 0 2px rgba(0, 137, 198, 0.2) !important;
}

.news-search-button {
    background-color: #0089C6 !important;
    color: white !important;
    border: none !important;
    padding: 10px 15px !important;
    border-radius: 0 4px 4px 0 !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
}

.news-search-button:hover {
    background-color: #053e77 !important;
}

/* Categories and Recent Lists */
.news-categories-list,
.news-recent-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.news-category-item,
.news-recent-item {
    border-bottom: 1px solid #e9ecef !important;
    padding: 8px 0 !important;
}

.news-category-item:last-child,
.news-recent-item:last-child {
    border-bottom: none !important;
}

.news-category-item a,
.news-recent-link {
    color: #495057 !important;
    text-decoration: none !important;
    font-size: 1.2rem !important;
    transition: color 0.3s ease !important;
    display: block !important;
}

.news-category-item a:hover,
.news-recent-link:hover {
    color: #0089C6 !important;
}

/* Additional category sidebar styles */
.news-category-item-sidebar {
    border-bottom: 1px solid #e9ecef !important;
    padding: 8px 0 !important;
}

.news-category-item-sidebar:last-child {
    border-bottom: none !important;
}

.news-category-item-sidebar a,
.news-category-link {
    color: #495057 !important;
    text-decoration: none !important;
    font-size: 1.2rem !important;
    transition: color 0.3s ease !important;
    display: block !important;
}

.news-category-item-sidebar a:hover,
.news-category-link:hover {
    color: #0089C6 !important;
}

.news-categories-list .news-category-item-sidebar.active a {
    color: #0089C6 !important;
    font-weight: 600 !important;
}

.news-recent-date {
    color: #6c757d !important;
    font-size: 0.8rem !important;
    margin-top: 5px !important;
    font-style: italic !important;
}

/* No Content Message */
.news-no-content {
    text-align: center !important;
    color: #6c757d !important;
    font-size: 1.2rem !important;
    padding: 40px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
}

/* Pagination */
.news-pagination {
    margin-top: 40px !important;
    text-align: center !important;
    padding: 20px 0 !important;
}

/* Laravel Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    gap: 10px;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-link {
    display: inline-block;
    padding: 8px 12px;
    color: #007bff;
    text-decoration: none;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .news-specialty-banner {
        margin: -120px 0 0 0 !important;
        padding: 20px !important;
    }

    .news-specialty-banner h2 {
        font-size: 2.4rem !important;
    }

    .news-content {
        padding: 20px !important;
        flex-direction: column !important;
    }

    .news-sidebar {
        max-width: none !important;
    }
}

@media (max-width: 768px) {
    .news-specialty-banner {
        margin: -170px 0 0 0 !important;
        padding: 30px 15px !important;
        text-align: center !important;
    }

    .news-specialty-banner h2 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }

    .news-content {
        padding: 15px !important;
    }

    .news-grid-container {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .news-grid-image {
        height: 150px !important;
    }
    
    .news-grid-content {
        padding: 15px !important;
    }
    
    .news-grid-title {
        font-size: 1.2rem !important;
    }

    .news-article-title {
        font-size: 1.5rem !important;
    }

    .news-widget {
        padding: 15px !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 576px) {
    .news-specialty-banner {
        margin: -170px 0 0 0 !important;
        padding: 25px 10px !important;
    }

    .news-specialty-banner h2 {
        font-size: 1.6rem !important;
        line-height: 1.4 !important;
    }

    .news-content {
        padding: 10px !important;
    }

    .news-article-title {
        font-size: 1.3rem !important;
    }

    .news-widget {
        padding: 12px !important;
        margin-bottom: 15px !important;
    }

    .news-widget-title {
        font-size: 1.2rem !important;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .pagination .page-link {
        padding: 6px 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .news-specialty-banner h2 {
        font-size: 1.6rem !important;
    }

    .news-article-title {
        font-size: 1.2rem !important;
    }

    .news-article-excerpt {
        font-size: 0.9rem !important;
    }

    .news-search-input-group {
        flex-direction: column !important;
    }

    .news-search-input {
        border-radius: 4px !important;
        margin-bottom: 5px !important;
    }

    .news-search-button {
        border-radius: 4px !important;
    }

    .news-featured-article {
        padding: 20px !important;
    }
    
    .news-grid-content {
        padding: 12px !important;
    }
    
    .news-grid-title {
        font-size: 1.1rem !important;
    }
    
    .news-grid-date {
        font-size: 0.8rem !important;
    }
}

.news-article-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.news-article-title {
    margin: 0 0 15px 0;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #333;
}

.news-article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #6c757d;
    font-size: 0.95rem;
}

.news-article-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-article-date i {
    color: #0089C6;
}

.news-article-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-article-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.news-article-content {
    padding: 30px;
    line-height: 1.8;
    color: #495057;
    font-size: 1.1rem;
}

.news-article-content h1,
.news-article-content h2,
.news-article-content h3,
.news-article-content h4,
.news-article-content h5,
.news-article-content h6 {
    color: #333;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.news-article-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #0089C6;
    padding-bottom: 10px;
}

.news-article-content h3 {
    font-size: 1.5rem;
    color: #0089C6;
}

.news-article-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.news-article-content ul,
.news-article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.news-article-content li {
    margin-bottom: 8px;
}

.news-article-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #0089C6;
    margin: 25px 0;
    padding: 20px 25px;
    font-style: italic;
    color: #495057;
}

.news-article-content a {
    color: #0089C6;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.news-article-content a:hover {
    border-bottom-color: #0089C6;
}

.news-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.news-recent-articles {
    margin-top: 15px;
}

.news-recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-recent-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.news-recent-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-recent-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.news-recent-link:hover {
    transform: translateX(5px);
}

.news-recent-title {
    margin: 0 0 8px 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    transition: color 0.3s ease;
}

.news-recent-link:hover .news-recent-title {
    color: #0089C6;
}

.news-recent-date {
    color: #6c757d;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-recent-date i {
    color: #0089C6;
    font-size: 0.8rem;
}

/* Responsive Design for Article Detail */
@media (max-width: 768px) {
    .news-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .news-main-content {
        flex: none;
    }
    
    .news-sidebar {
        max-width: none;
    }
    
    .news-article-header {
        padding: 20px 20px 15px 20px;
    }
    
    .news-article-title {
        font-size: 1.8rem;
    }
    
    .news-article-content {
        padding: 20px;
        font-size: 1rem;
    }
    
    .news-article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .news-article-title {
        font-size: 1.6rem;
    }
    
    .news-article-header {
        padding: 15px 15px 10px 15px;
    }
    
    .news-article-content {
        padding: 15px;
    }
    
    .news-article-content h2 {
        font-size: 1.5rem;
    }
    
    .news-article-content h3 {
        font-size: 1.3rem;
    }
}

/* Print Styles */
@media print {
    .news-sidebar {
        display: none;
    }
    
    .news-main-content {
        flex: none;
        max-width: 100%;
    }
    
    .news-article-detail {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}