.menu_logo_1 {
    display: none;
}
.menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}
.menu-style-one {
    box-shadow: 0 4px 4px 0 #0000000D;
}
/* News Header */
.news_header__title {
    padding-bottom: 50px;
}
.news__header_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.news_header_text {
    flex: 1;
}

.news_header_title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 24px 0;
    text-align: center;
}
.news_header_desc {
    text-align: center;
    font-size: 14px;
    color: var(--color-black-none);
    line-height: 1.5;
    margin: 0;
    max-width: 830px;
}

/* News Hot Section */
.news__hot_section {
    padding: 80px 0;
    background-image: url(../images/bg-mo.png);
    background-size: cover;
    background-position: center;
}

.owl_news_hot {
    display: flex;
    align-items: center;
}

.hot_news__item {
    padding: 0 20px;
}

.hot_news__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hot_news__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hot_news__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.hot_news__brand {
    color: var(--color-green);
    text-transform: uppercase;
}

.hot_news__date {
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hot_news__date::before {
    content: '';
    width: 1px;
    height: 16px;
    background-color: var(--color-green);
}

.hot_news__title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-black);
    margin: 0;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hot_news__desc {
    font-size: 0.875rem;
    color: var(--color-black-none);
    line-height: 1.5;
    margin: 0;
}

.hot_news__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: var(--color-black-none);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: fit-content;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.hot_news__link:hover {
    color: var(--color-green);
}

.hot_news__link:hover i {
    transform: translateX(4px);
}

.hot_news__link i {
    font-size: 14px;
    transition: transform 0.3s ease;
    transform: rotate(-45deg);
}

.hot_news__image {
    overflow: hidden;
}
.hot_news__image img {
    transition: transform 0.5s ease;
}
.hot_news__image img:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}
/* News List Section */
.news__list__section {
    padding: 90px 0;
}

.news-list__title {
    margin: 0 0 32px 0;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-black);
}

.news-grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.news-card__thumb {
    overflow: hidden;
    position: relative;
}

.news-card__body {
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.news-card__brand {
    color: var(--color-green);
    text-transform: uppercase;
}

.news-card__date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    font-weight: 600;
}

.news-card__date::before {
    content: '';
    width: 1px;
    height: 14px;
    background-color: var(--color-green);
}

.news-card__title {
    margin: 0;
    font-size: 1.175rem;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1.4;
    text-transform: uppercase;
}

.news-card__desc {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-black-none);
    line-height: 1.55;
}

.news-load-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 28px;
}

.news-load-more__btn {
    border: 1px solid var(--color-line);
    background: var(--bg-white);
    color: var(--color-black);
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.25s ease;
}

.news-load-more__btn:hover {
    border-color: var(--color-green);
    color: var(--color-green);
}

.news-load-more__btn.is-loading {
    opacity: 0.7;
    cursor: default;
}

.news-load-more__status {
    font-size: 0.875rem;
    color: var(--color-black-none);
    min-height: 18px;
}

/* No data */
.no-data {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 2px dashed #ddd;
}

.no-data-content {
    text-align: center;
    padding: 40px;
}

.no-data-icon {
    font-size: 60px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-data-title {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.no-data-text {
    font-size: 16px;
    color: #999;
    line-height: 1.5;
}

.news-page .title-main {
    text-align: left;
}

/* Extra Large Devices (Small Desktop) */
@media (max-width: 1199px) {
    .news_header_title {
        font-size: 3rem;
    }
    .news__hot_section {
        padding: 70px 0;
    }
    .hot_news__grid {
        gap: 28px;
    }
    .hot_news__title {
        font-size: 1.75rem;
    }
    .news__list__section {
        padding: 70px 0;
    }
    .news-grid-box {
        gap: 24px;
    }
}

/* Large Devices (Tablets) */
@media (max-width: 991px) {
    .news_header__title {
        padding-bottom: 40px;
    }
    .news_header_title {
        font-size: 2.5rem;
    }
    .news__hot_section {
        padding: 60px 0;
    }
    .hot_news__grid {
        grid-template-columns: 1fr;
    }
    .hot_news__image {
        order: -1;
    }
    .news__list__section {
        padding: 60px 0;
    }
    .news-grid-box {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Medium Devices (Tablets) */
@media (max-width: 767px) {
    .news__header_inner {
        gap: 12px;
    }
    .news_header_title {
        font-size: 2.1rem;
    }
    .news_header_desc {
        font-size: 13px;
    }
    .news__hot_section {
        padding: 40px 0;
    }
    .hot_news__meta {
        font-size: 0.95rem;
    }
    .hot_news__title {
        font-size: 1.5rem;
    }
    .hot_news__desc {
        font-size: 0.85rem;
    }
    .news__list__section {
        padding: 50px 0;
    }
    .news-list__title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
    .news-grid-box {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}

/* Small Devices (Phones) */
@media (max-width: 575px) {
    .news_header_title {
        font-size: 1.8rem;
    }
    .hot_news__meta {
        font-size: 0.85rem;
    }
    .hot_news__title {
        font-size: 1.35rem;
    }
    .hot_news__link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    .news-card__meta {
        font-size: 0.9rem;
    }
    .news-card__title {
        font-size: 1rem;
    }
    .news-card__desc {
        font-size: 0.85rem;
    }
}

/* Extra Small Devices */
@media (max-width: 374px) {
    .news_header_title {
        font-size: 1.6rem;
    }
    .news_header_desc {
        font-size: 12px;
    }
    .hot_news__title {
        font-size: 1.2rem;
    }
    .hot_news__desc {
        font-size: 0.8rem;
    }
    .news-card__meta {
        font-size: 0.8rem;
    }

}
