/* Industry News Page Styles */

/* Banner Section */
.news-banner {
    margin-top: 5rem;
}

.banner-image {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    position: relative;
    min-height: 300px;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.3);
    min-height: 300px;
    display: flex;
    align-items: center;
}

.banner-content {
    width: 100%;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.banner-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* News List Section */
.news-list-section {
    background-color: #f8fafc;
    min-height: 600px;
}

/* Featured News */
.featured-news {
    margin-bottom: 3rem;
}

.featured-news .featured-image {
    position: relative;
}

.featured-news .post-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.featured-news .post-excerpt {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
}

.featured-news .read-more {
    font-size: 1.125rem;
}

/* Regular News */
.regular-news {
    margin-top: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #f97316;
}

.news-row {
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-item {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.news-image {
    overflow: hidden;
}

.news-item .post-title {
    font-size: 1.25rem;
    line-height: 1.4;
}

.news-item .post-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
}

.news-item .read-more {
    font-size: 0.95rem;
}

/* Post Meta */
.post-meta {
    font-size: 0.875rem;
    color: #9ca3af;
}

.post-meta .post-date {
    font-weight: 500;
}

.post-meta .post-category {
    background-color: #f97316;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Pagination */
.pagination-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.pagination {
    gap: 0.5rem;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background-color: #f97316;
    color: white;
    border-color: #f97316;
}

.pagination .current {
    background-color: #f97316;
    color: white;
    border-color: #f97316;
}

.pagination .prev,
.pagination .next {
    font-weight: 600;
}

/* No News Message */
.no-news {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.no-news p {
    font-size: 1.125rem;
    color: #6b7280;
}

/* Hover Effects */
.post-title a:hover {
    color: #f97316;
}

.read-more:hover {
    color: #ea580c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.25rem;
    }
    
    .featured-news .post-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .news-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination a,
    .pagination span {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 640px) {
    .banner-content {
        padding: 2rem 1rem;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1.125rem;
    }
    
    .featured-news {
        margin-left: -1rem;
        margin-right: -1rem;
    }
    
    .news-item {
        margin-left: -1rem;
        margin-right: -1rem;
    }
}