/* Featured Story Section Styles */

.featured-story-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.featured-story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-header {
    text-align: center;
    margin-bottom: 50px;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a1f71, #4c5fd5);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.featured-story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
}

.featured-video-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,140,66,0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-details h3 {
    font-size: 2.5rem;
    color: #1a1f71;
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
}

.featured-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .featured-story-content {
        grid-template-columns: 1fr;
    }
    
    .featured-media {
        margin-bottom: 30px;
    }
    
    .featured-details h3 {
        font-size: 2rem;
    }
}