/**
 * Featured Article Styles
 * Path: assets/css/featured-article.css
 */

.featured-article-container {
    font-family: 'Poppins', sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.featured-content-wrapper {
    display: grid;
    grid-template-columns: 636px 1fr;
    gap: 40px;
    align-items: start;
}

.featured-left-column {
    width: 636px;
}

.featured-hero-section {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.featured-hero-image {
    width: 100%;
    height: 322px;
    background: #ddd;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.featured-category-badge {
    display: inline-block;
    background-color: #FBC732;
    color: #000;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.featured-article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.featured-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-article-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
}

.featured-article-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-article-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-article-title a:hover {
    color: #055F6A;
}

.featured-article-description {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.featured-sidebar {
    background: white;
    border-radius: 12px;
    padding: 30px;
}

.featured-sidebar-title {
    font-size: 28px;
    font-weight: 700;
    color: #055F6A;
    margin-bottom: 30px;
    padding-bottom: 15px;
   border-bottom: 2px dashed #2E9BAB;
}

.featured-news-item {
    padding: 20px 0;
    border-bottom: 2px dashed #2E9BAB;
}

.featured-news-item:last-child {
    border-bottom: none;
}

.featured-news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
}

.featured-news-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-news-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin: 0;
}

.featured-news-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-news-title a:hover {
    color: #055F6A;
}

.featured-icon {
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .featured-left-column {
        width: 100%;
    }
    
    .featured-hero-image {
        height: auto;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .featured-article-container {
        padding: 10px;
    }
    
    .featured-article-content {
        padding: 20px;
    }
    
    .featured-sidebar {
        padding: 20px;
    }
    
    .featured-article-title {
        font-size: 24px;
    }
    
    .featured-sidebar-title {
        font-size: 22px;
    }
    
    .featured-news-title {
        font-size: 16px;
    }
    
    .featured-article-meta,
    .featured-news-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}