/* News Page Styles */
.news-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 2rem;
    font-weight: 600;
    animation: fadeInDown 1s ease;
}

.hero-badge i {
    font-size: 1.2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-content > p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.news-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.news-stats .stat {
    text-align: center;
}

.news-stats .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.news-stats .label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* News Content */
.news-content {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Featured News */
.featured-news {
    margin-bottom: 5rem;
}

.featured-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 500px 1fr;
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article:hover .featured-image img {
    transform: scale(1.05);
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.placeholder-image i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category.championship {
    background: #ffd700;
    color: #333;
}

.date, .read-time {
    color: #666;
    font-size: 0.9rem;
}

.featured-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.featured-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.article-stats {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.9rem;
}

.stat-item i {
    color: #e74c3c;
}

.read-more-btn {
    align-self: flex-start;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more-btn:hover {
    background: #c0392b;
    transform: translateX(5px);
}

/* News Filters */
.news-filters {
    margin-bottom: 3rem;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.filter-tab {
    background: transparent;
    border: 2px solid #eee;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.filter-tab.active {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
}

.filter-tab:hover:not(.active) {
    border-color: #e74c3c;
    color: #e74c3c;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.news-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

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

.news-image .placeholder-image i {
    font-size: 3rem;
}

.news-content {
    padding: 25px;
}

.news-content .article-meta {
    margin-bottom: 15px;
}

.news-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.news-content .article-stats {
    padding-top: 15px;
    border-top: 1px solid #eee;
    border-bottom: none;
    margin-top: auto;
}

/* Load More */
.load-more-container {
    text-align: center;
}

#load-more-news {
    padding: 15px 30px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Loading State */
.loading-news {
    text-align: center;
    padding: 4rem;
    color: #666;
    grid-column: 1 / -1;
}

.loading-news i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-article {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .news-hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .news-stats {
        gap: 2rem;
    }
    
    .featured-content {
        padding: 30px;
    }
    
    .featured-content h3 {
        font-size: 1.6rem;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-tab {
        width: 200px;
        text-align: center;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .news-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .featured-content {
        padding: 20px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
/* ✅ FEATURED ARTICLES - DISPLAY ONLY (NO CLICK) */

/* Featured articles wrapper container */
.featured-articles-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Featured article - Display only styling */
.featured-article.display-only {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    
    /* ✅ DISABLE ALL CLICK INTERACTIONS */
    pointer-events: none; /* Disable all mouse interactions */
    cursor: default; /* Remove pointer cursor */
    -webkit-user-select: text;
    user-select: text; /* Allow text selection for reading */
    
    /* ✅ SUBTLE HOVER FOR VISUAL FEEDBACK ONLY */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Override pointer-events for text content to allow selection */
.featured-article.display-only .featured-content {
    pointer-events: auto; /* Re-enable for text selection */
    cursor: text; /* Text cursor for reading */
}

/* Override pointer-events for images to disable dragging */
.featured-article.display-only img {
    pointer-events: none;
    -webkit-user-select: text;
    user-select: none;
    -webkit-user-drag: none; /* Prevent image drag */
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.featured-article.display-only:last-child {
    margin-bottom: 0;
}

/* Primary featured article (first one) - Display only */
.featured-article.display-only.primary-featured {
    border: 3px solid #e74c3c;
    position: relative;
    transform: scale(1.01); /* Slightly larger but subtle */
    z-index: 2;
}

/* Secondary featured articles - Display only */
.featured-article.display-only.secondary-featured {
    border: 2px solid #f8f9fa;
    transform: scale(1);
    z-index: 1;
}

/* ✅ VERY SUBTLE HOVER EFFECT - Just for visual feedback */
.featured-article.display-only:hover {
    transform: scale(1.005); /* Very minimal scale */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12); /* Slightly enhanced shadow */
}

.featured-article.display-only.primary-featured:hover {
    transform: scale(1.015); /* Slightly more for primary */
}

/* Featured image container */
.featured-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ✅ NO HOVER SCALE EFFECT */
    transition: none;
}

/* Remove image hover effects for display-only */
.featured-article.display-only:hover .featured-image img {
    transform: none; /* No scale on hover */
}

/* Featured content */
.featured-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Featured badges - Keep visual appeal */
.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    z-index: 10;
    pointer-events: none; /* No interaction */
}

.primary-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
    z-index: 10;
    animation: pulse 2s infinite;
    pointer-events: none; /* No interaction */
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Article meta for featured */
.featured-article .article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.featured-article .article-meta .category {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    pointer-events: none;
}

.featured-article .article-meta .date,
.featured-article .article-meta .read-time {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Featured article title - Selectable text */
.featured-article h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
    cursor: text; /* Show text cursor */
}

.primary-featured h3 {
    font-size: 1.8rem;
}

/* Featured article excerpt - Selectable text */
.featured-article p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    cursor: text; /* Show text cursor */
}

/* Article stats for featured - No interaction */
.featured-article .article-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.featured-article .article-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    pointer-events: none;
}

.featured-article .article-stats .stat-item i {
    color: #e74c3c;
    font-size: 1rem;
}

/* ✅ NO READ MORE BUTTON - Removed from HTML */

/* ✅ RESPONSIVE DISPLAY-ONLY STYLING */
@media (min-width: 768px) {
    .featured-articles-wrapper {
        gap: 3rem;
    }
    
    .featured-article.display-only {
        flex-direction: row;
        align-items: stretch;
    }
    
    .featured-image {
        width: 400px;
        height: auto;
        min-height: 300px;
    }
    
    .featured-content {
        padding: 2.5rem;
    }
    
    .featured-article h3 {
        font-size: 1.6rem;
    }
    
    .primary-featured h3 {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .featured-articles-wrapper {
        gap: 3.5rem;
    }
    
    .featured-image {
        width: 450px;
        min-height: 350px;
    }
    
    .featured-content {
        padding: 3rem;
    }
}

/* ✅ MOBILE OPTIMIZATION */
@media (max-width: 767px) {
    .featured-articles-wrapper {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .featured-article.display-only {
        margin-bottom: 1.5rem;
    }
    
    .featured-content {
        padding: 1.5rem;
    }
    
    .primary-featured {
        transform: scale(1); /* No scaling on mobile */
    }
    
    .featured-article.display-only:hover {
        transform: translateY(-2px) scale(1); /* Minimal hover on mobile */
    }
}

/* ✅ VISUAL INDICATOR FOR DISPLAY-ONLY CONTENT */
.featured-article.display-only::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(231, 76, 60, 0.02) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.featured-content {
    position: relative;
    z-index: 2; /* Above the overlay */
}

/* Section spacing */
.featured-news {
    margin-bottom: 4rem;
    padding: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}
