﻿/* ==== News & Blog Section ==== */
.news-blog {
    padding: 80px 20px;
    background: #1A1A1A; /* nền đen */
    font-family: "Montserrat", sans-serif;
}

.news-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

    .section-header .sub-title {
        font-size: 16px;
        color: #d4af37; /* vàng sáng nổi bật */
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        margin-bottom: 6px;
    }

    .section-header .section-title {
        font-size: 2rem;
        font-weight: 900;
        color: #fff; /* chữ trắng trên nền đen */
        line-height: 1.3;
    }

/* See All button */
.see-all-btn {
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .see-all-btn:hover {
        background: #d4af37;
        color: #1A1A1A; /* hover: nền vàng + chữ đen */
    }

/* Blog Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Featured Post */
.featured-post {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(26,26,26,0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid #b8860b; /* vàng nâu trầm để cân bằng */
}

    .featured-post:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(26,26,26,0.25);
    }

    .featured-post img {
        width: 100%;
        height: 340px;
        object-fit: cover;
        display: block;
    }

.featured-content {
    padding: 20px;
}

    .featured-content .meta {
        font-size: 0.9rem;
        color: #d4af37; /* meta vàng nổi bật */
        margin-bottom: 10px;
        display: flex;
        gap: 15px;
    }

    .featured-content h3 {
        font-size: 1.4rem;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 15px;
    }

        .featured-content h3 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .featured-content h3 a:hover {
                color: #d4af37;
            }

    .featured-content .btn-text {
        font-size: 0.95rem;
        color: #b8860b; /* vàng nâu nhấn nhẹ */
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

        .featured-content .btn-text:hover {
            color: #d4af37; /* hover: vàng sáng */
        }

/* Small posts list */
.small-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.small-post {
    display: flex;
    gap: 15px;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(26,26,26,0.12);
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 10px;
    border: 2px solid #b8860b; /* vàng nâu trầm */
}

    .small-post:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(26,26,26,0.25);
    }

    .small-post img {
        width: 100px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
        border: 2px solid #d4af37; /* ảnh nổi bật hơn */
    }

.small-content {
    flex: 1;
}

    .small-content .meta {
        font-size: 0.8rem;
        color: #d4af37;
        margin-bottom: 5px;
    }

    .small-content h4 {
        font-size: 1rem;
        font-weight: 700;
        margin: 0;
        color: #1a1a1a;
        line-height: 1.3;
    }

        .small-content h4 a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

            .small-content h4 a:hover {
                color: #d4af37;
            }

/* Responsive */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .featured-post img {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .section-header .section-title {
        font-size: 1.6rem;
    }

    .featured-post img {
        height: 220px;
    }
}
