
        /* ===================================
   NEWS HERO
=================================== */
.news-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.news-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}
.news-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19, 79, 60, 0.9) 0%, rgba(216, 195, 102, 0.7) 100%);
}
.news-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}
.news-hero__title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    color: var(--clr-cream);
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.news-hero__subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 253, 235, 0.95);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   MAIN LAYOUT
=================================== */
.news-main {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f7f0 0%, var(--clr-white) 100%);
    min-height: 100vh;
}
.news-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 25% 72%;
    gap: 20px;
    align-items: start;
}

/* ===================================
   SIDEBAR - BÊN TRÁI
=================================== */
.news-sidebar {
    position: sticky;
    top: 100px;
}
.news-sidebar__head {
    padding: 0 0 32px 0;
    margin-bottom: 32px;
    border-bottom: 3px solid var(--clr-gold);
    position: relative;
}
.news-sidebar__head::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--clr-green);
}
.news-sidebar__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--clr-green);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.news-sidebar__desc {
    font-size: 16px;
    color: var(--clr-text-light);
    line-height: 1.6;
}

/* ===================================
   TAG NAVIGATION
=================================== */
.news-tags {
    padding: 0;
    max-height: calc(100vh - 350px);
    overflow-y: auto;
}
.news-tags::-webkit-scrollbar {
    width: 6px;
}
.news-tags::-webkit-scrollbar-track {
    background: transparent;
}
.news-tags::-webkit-scrollbar-thumb {
    background: var(--clr-gold);
    border-radius: 10px;
}
.news-tags::-webkit-scrollbar-thumb:hover {
    background: #c9b366;
}
.news-tag {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 90%;
    padding: 18px 20px;
    margin-bottom: 12px;
    background: var(--clr-white);
    border: 2px solid #e8e6d0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
}
.news-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--clr-gold);
    border-radius: 0 4px 4px 0;
    transition: height 0.3s ease;
}
.news-tag:hover {
    background: #fafaf5;
    border-color: var(--clr-gold);
    box-shadow: var(--shadow-sm);
    transform: translateX(8px);
}
.news-tag:hover::before {
    height: 60%;
}
.news-tag.active {
    background: linear-gradient(135deg, var(--clr-green) 0%, #c9b366 100%);
    border-color: var(--clr-gold);
    box-shadow: 0 8px 24px rgba(216, 195, 102, 0.4);
    transform: translateX(8px);
}

.news-tag__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f7f0;
    border-radius: 12px;
    color: var(--clr-green);
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: 700;
}
.news-tag:hover .news-tag__icon {
    background: var(--clr-gold);
    color: var(--clr-white);
    transform: scale(1.1);
}
.news-tag.active .news-tag__icon {
    background: rgba(19, 79, 60, 0.2);
    color: var(--clr-white);
    transform: scale(1.05);
}
.news-tag__text {
    flex: 1;
    text-align: left;
}
.news-tag__name {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--clr-green);
    margin-bottom: 5px;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.news-tag.active .news-tag__name {
    color: var(--clr-white);
}
.news-tag__count {
    display: block;
    font-size: 13px;
    color: var(--clr-text-light);
    transition: color 0.3s ease;
    font-weight: 500;
}
.news-tag.active .news-tag__count {
    color: rgba(255, 255, 255, 0.85);
}
.news-tag__arrow {
    flex-shrink: 0;
    color: var(--clr-green);
    transition: all 0.3s ease;
    opacity: 0.5;
}
.news-tag:hover .news-tag__arrow {
    transform: translateX(4px);
    opacity: 1;
}
.news-tag.active .news-tag__arrow {
    color: var(--clr-white);
    transform: translateX(4px);
    opacity: 1;
}

/* ===================================
   CONTENT AREA - BÊN PHẢI
=================================== */
.news-content {
    min-height: 600px;
}

/* ===================================
   NEWS GRID
=================================== */
.news-list {
     display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

/* ===================================
   NEWS CARD
=================================== */
.news-item {
    background: var(--clr-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.news-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(216, 195, 102, 0.3);
    border-color: var(--clr-gold);
}
.news-item a {
    text-decoration: none;
    color: inherit;
}
.news-item__img {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--clr-cream) 0%, #d4d2b8 100%);
}
.news-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-item:hover .news-item__img img {
    transform: scale(1.15) rotate(2deg);
}
.news-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(19, 79, 60, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.news-item:hover .news-item__overlay {
    opacity: 1;
}
.news-item__view {
    padding: 12px 28px;
    background: var(--clr-gold);
    color: var(--clr-green);
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.news-item:hover .news-item__view {
    transform: translateY(0);
}
.news-item__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-item__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--clr-green);
    margin-bottom: 16px;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.news-item:hover .news-item__title {
    color: var(--clr-gold);
}
.news-item__excerpt {
    font-size: 16px;
    line-height: 1.75;
    color: var(--clr-text-light);
    margin-bottom: 24px;
    flex: 1;
}
.news-item__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--clr-text-light);
    padding-top: 16px;
    border-top: 2px solid rgba(216, 195, 102, 0.15);
}
.news-item__date {
    display: flex;
    align-items: center;
    gap: 8px;
}
.news-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    margin-bottom:16px ;
}
.news-item__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(19, 79, 60, 0.08) 0%, rgba(216, 195, 102, 0.12) 100%);
    border: 1px solid rgba(216, 195, 102, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-green);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.news-item__tag:hover {
    background: var(--clr-gold);
    color: var(--clr-white);
    border-color: var(--clr-gold);
    transform: translateY(-2px);
}
.news-item__tag::before {
    content: '#';
    margin-right: 4px;
    opacity: 0.7;
}

/* ===================================
   EMPTY STATE
=================================== */
.news-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--clr-text-light);
}
.news-empty svg {
    margin: 0 auto 24px;
    color: rgba(19, 79, 60, 0.2);
}
.news-empty p {
    font-size: 18px;
    color: var(--clr-text-light);
    opacity: 0.6;
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1280px) {
    .news-wrap {
        grid-template-columns: 32% 68%;
        gap: 44px;
        padding: 0 32px;
    }
    .news-list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 992px) {
    .news-hero {
        height: 40vh;
        min-height: 320px;
    }
    .news-main {
        padding: 60px 0;
    }
    .news-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 24px;
    }
    .news-sidebar {
        position: static;
    }
    .news-sidebar__head {
        padding: 0 0 24px 0;
        margin-bottom: 24px;
    }
    .news-sidebar__title {
        font-size: 32px;
    }
    .news-tags {
        max-height: none;
    }
    .news-tag:hover,
    .news-tag.active {
        transform: translateX(0);
    }
    .news-list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 640px) {
    .news-hero {
        height: 35vh;
        min-height: 280px;
    }
    .news-hero__title {
        font-size: 32px;
    }
    .news-main {
        padding: 48px 0;
    }
    .news-wrap {
        padding: 0 16px;
    }
    .news-sidebar__title {
        font-size: 28px;
    }
    .news-sidebar__desc {
        font-size: 15px;
    }
    .news-tag {
        padding: 16px 18px;
        gap: 14px;
    }
    .news-tag__icon {
        width: 44px;
        height: 44px;
    }
    .news-tag__name {
        font-size: 16px;
    }
    .news-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .news-item__body {
        padding: 24px;
    }
    .news-item__title {
        font-size: 21px;
    }
    .news-item__excerpt {
        font-size: 15px;
    }
}

/* ===================================
   ACCESSIBILITY
=================================== */
@media (prefers-reduced-motion: reduce) {
    .news-item,
    .news-item__img img,
    .news-tag {
        animation: none !important;
        transition: none !important;
    }
}

.news-tag:focus-visible {
    outline: 3px solid var(--clr-gold);
    outline-offset: 4px;
}