/* Common News Card Styles - Shared between Home and Category Pages */

/* Section Divider */
.section-divider {
    border-bottom: 5px solid #fdbf30 !important;
    margin: 15px 0;
}

/* News List Layout */
.news-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

/* Base News Item */
.news-item {
    display: flex;
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* News Thumbnail - Regular items */
.news-thumb,
.tin-moi-image,
.tin-hot-image,
.latest-news-image,
.featured-news-image {
    min-width: 40%;
    width: 40%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.news-thumb img,
.tin-moi-image img,
.tin-hot-image img,
.latest-news-image img,
.featured-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.news-item:hover .news-thumb img,
.news-item:hover .tin-moi-image img,
.news-item:hover .tin-hot-image img,
.latest-news-item:hover .latest-news-image img,
.featured-news-item:hover .featured-news-image img {
    transform: scale(1.05);
}

/* News Content */
.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px 20px;
}

/* News Meta Information */
.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Category Badge */
.news-category {
    color: white;
    padding: 3px 10px;
    font-size: 13px;
    border-radius: 4px;
    font-weight: 600;
}

.news-category.category-world,
.news-category.category-domestic,
.news-category.category-news {
    background: #fdbf30;
    color: #000;
}

.news-category.category-law {
    background: #dc2626;
    color: white;
}

.news-category.category-realestate {
    background: #059669;
    color: white;
}

.news-category.category-health {
    background: #7c3aed;
    color: white;
}

.news-category.category-sports {
    background: #f59e0b;
    color: white;
}

.news-category.category-education {
    background: #ef4444;
    color: white;
}

.news-category.category-trending {
    background: #7c3aed;
    color: white;
}

.news-category.category-currency {
    background: #fdbf30;
    color: #000;
}

.news-category.category-default {
    background: #666666;
    color: white;
}

/* Date */
.news-date {
    color: #666;
    font-size: 12px;
    font-weight: 500;
}

/* Title */
.news-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #2c5aa0;
}

/* Excerpt */
.news-excerpt {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

/* First Post Featured Styling */
.news-list .news-item:first-child {
    display: flex;
    flex-direction: column;
    order: -1;
    flex-shrink: 0;
}

.news-list .news-item:first-child .news-thumb,
.news-list .news-item:first-child .tin-moi-image,
.news-list .news-item:first-child .tin-hot-image,
.news-list .news-item:first-child .latest-news-image,
.news-list .news-item:first-child .featured-news-image {
    order: -1;
    width: 100%;
    min-width: 100%;
    height: 350px;
    flex-shrink: 0;
}

.news-list .news-item:first-child .news-content {
    order: 1;
    padding: 15px;
}

.news-list .news-item:first-child .news-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4;
}

.news-list .news-item:first-child .news-excerpt {
    font-size: 14px;
    line-height: 1.4;
}

.news-list .news-item:first-child:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.news-list .news-item:first-child:hover .news-thumb img,
.news-list .news-item:first-child:hover .tin-moi-image img,
.news-list .news-item:first-child:hover .tin-hot-image img,
.news-list .news-item:first-child:hover .latest-news-image img,
.news-list .news-item:first-child:hover .featured-news-image img {
    transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .news-item {
        flex-direction: column;
        padding: 10px;
    }

    /* Mobile: first-child horizontal layout at 768px */
    .news-list .news-item:first-child {
        display: flex;
        flex-direction: row;
        order: 0;
        min-height: 120px;
        padding: 0;
    }

    .news-list .news-item:first-child .news-thumb,
    .news-list .news-item:first-child .tin-moi-image,
    .news-list .news-item:first-child .tin-hot-image,
    .news-list .news-item:first-child .latest-news-image,
    .news-list .news-item:first-child .featured-news-image {
        width: 120px;
        min-width: 120px;
        height: 120px;
        order: 0;
        flex-shrink: 0;
    }

    .news-list .news-item:first-child .news-content {
        order: 1;
        padding: 15px 20px;
        flex: 1;
    }

    .news-list .news-item:first-child .news-title {
        font-size: 1.1rem;
        font-weight: 600;
        line-height: 1.4;
    }

    .news-list .news-item:first-child .news-excerpt {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Very small mobile: stack first-child */
    @media (max-width: 480px) {
        .news-list .news-item:first-child {
            flex-direction: column;
            min-height: auto;
        }

        .news-list .news-item:first-child .news-thumb,
        .news-list .news-item:first-child .tin-moi-image,
        .news-list .news-item:first-child .tin-hot-image,
        .news-list .news-item:first-child .latest-news-image,
        .news-list .news-item:first-child .featured-news-image {
            width: 100%;
            min-width: 100%;
            height: 150px;
        }

        .news-list .news-item:first-child .news-content {
            padding: 15px;
        }
    }

    .news-content {
        padding: 15px;
    }

    .news-list .news-item:first-child .news-title {
        font-size: 0.1rem !important;
        font-weight: 600;
        line-height: 1.4;
    }

    .news-list .news-item:first-child .news-excerpt {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .news-thumb,
    .tin-moi-image,
    .tin-hot-image,
    .latest-news-image,
    .featured-news-image {
        width: 100%;
        min-width: 100%;
        height: 220px;
    }

    .news-category {
        font-size: 10px;
        padding: 2px 6px;
    }
}

@media screen and (max-width: 480px) {
    .news-item {
        padding: 10px;
    }

    .news-thumb,
    .tin-moi-image,
    .tin-hot-image,
    .latest-news-image,
    .featured-news-image {
        height: 180px;
    }

    .news-category {
        font-size: 8px;
        padding: 1px 4px;
    }

    .news-date {
        font-size: 9px;
    }

    .news-title {
        font-size: 14px;
    }

    .news-title a {
        font-size: 14px;
    }

    .news-excerpt {
        font-size: 10px !important;
    }
}

@media screen and (max-width: 360px) {
    .news-thumb,
    .tin-moi-image,
    .tin-hot-image,
    .latest-news-image,
    .featured-news-image {
        height: 160px;
    }

    .news-category {
        font-size: 10px;
        padding: 1px 3px;
    }

    .news-date {
        font-size: 8px;
    }

    .news-title a {
        font-size: 12px;
    }
}
