.footer {
    background: #000000;
}

.news-board {
    padding: 90px 0 80px;
    background: #000;
}
.news-board-title {
    text-align: center;
    margin-bottom: 30px;
}
.news-board-title h1 {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    margin-top: 70px;
}

.news-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 18px;
    margin-bottom: 34px;
    height: 430px;
}
.news-top-grid__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.news-tabs {
    display: flex;
    gap: 10px;
    justify-content: start;
    margin: 100px 0 28px 0;
    flex-wrap: wrap;
}
.tab-btn {
    border: 0;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    background: #2e2e2f;
    color: white;
    cursor: pointer;
}
.tab-btn.is-active {
    background: #f2c94c;
    color: #000;
    font-weight: 700;
}

.news-mid-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
    align-items: stretch;
}

.news-list {
    display: grid;
    gap: 14px;
}
.news-list-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    text-decoration: none;
    padding: 10px;
    border-radius: 14px;
    transition:
        transform 0.15s ease,
        background 0.15s ease;
    align-items: stretch;
}
.news-list-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.09);
}
.news-list-item__thumb {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}
.news-list-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-list-item__title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 6px 0 2px;
}
.news-list-item__desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
}

.news-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 50px;
    align-items: stretch;
}
.news-bottom-stack {
    display: grid;
    gap: 18px;
}

.news-card {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    min-height: 140px;
    transition: transform 0.15s ease;
}
.news-card:hover {
    transform: translateY(-2px);
}

.news-card__bg {
    position: absolute;
    inset: 0;
}

.news-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05);
}
.news-card__overlay {
    position: absolute;
    inset: 0;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.news-card__meta {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.chip {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.news-card__title {
    color: #fff;
    margin: 0 0 6px;
    font-weight: 800;
}
.news-card__desc {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 12px;
}

.news-card--feature {
    min-height: 250px;
}
.news-card--feature .news-card__title {
    font-size: 18px;
}
.news-card--small {
    min-height: 116px;
}
.news-card--small .news-card__title {
    font-size: 12px;
    font-weight: 800;
    margin: 0;
    line-height: 1.5;
}
.news-card--hero {
    height: 100%;
}
.news-card--hero .news-card__title {
    font-size: 18px;
}
.news-card--wide {
    height: 100%;
}
.news-card--wide .news-card__title {
    font-size: 16px;
}
.news-card--stack {
    min-height: 140px;
}
.news-card--stack .news-card__title {
    font-size: 13px;
    font-weight: 800;
    margin: 0 0 6px;
}

.news-more {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}
.btn-show-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 18px;
    border-radius: 10px;
    background: #f3f4f6;
    color: #565d6d;
    text-decoration: none;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 50px;
}
.btn-show-more:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .news-top-grid {
        grid-template-columns: 1fr;
    }
    .news-mid-grid {
        grid-template-columns: 1fr;
    }
    .news-bottom-grid {
        grid-template-columns: 1fr;
    }
    .news-top-grid__side {
        grid-template-columns: 1fr 1fr;
    }
    .news-card--hero {
        height: auto;
        min-height: 270px;
    }
    .news-card--wide {
        height: auto;
        min-height: 220px;
    }
    .news-tabs {
        display: flex;
        gap: 10px;
        justify-content: start;
        margin: 150px 0 28px 0;
        flex-wrap: wrap;
    }
}
@media (max-width: 575px) {
    .news-board {
        padding: 70px 0 50px;
    }
    .news-board-title h1 {
        font-size: 18px;
        margin-top: 50px;
    }
    .news-top-grid {
        gap: 12px;
        height: auto;
        margin-bottom: 20px;
    }
    .news-top-grid__side {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .news-card {
        border-radius: 12px;
        min-height: 100px;
    }
    .news-card__overlay {
        padding: 12px;
    }
    .news-card__meta {
        gap: 5px;
        margin-bottom: 6px;
    }
    .chip {
        height: 18px;
        padding: 0 8px;
        font-size: 9px;
    }
    .news-card__title {
        font-size: 12px;
        margin: 0 0 4px;
    }
    .news-card__desc {
        font-size: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .news-card--feature {
        min-height: 180px;
    }
    .news-card--feature .news-card__title {
        font-size: 14px;
    }
    .news-card--small {
        min-height: 90px;
    }
    .news-card--small .news-card__title {
        font-size: 10px;
        line-height: 1.4;
    }
    .news-card--hero,
    .news-card--wide {
        min-height: 160px;
    }
    .news-card--hero .news-card__title,
    .news-card--wide .news-card__title {
        font-size: 13px;
    }
    .news-tabs {
        display: flex;
        gap: 6px;
        justify-content: start;
        margin: 75px 0 20px 0;
        flex-wrap: nowrap;
    }
    .tab-btn {
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 6px;
    }
    .news-mid-grid {
        gap: 12px;
        margin-bottom: 12px;
    }
    .news-list {
        gap: 10px;
    }
    .news-list-item {
        grid-template-columns: 70px 1fr;
        gap: 10px;
        padding: 8px;
        border-radius: 10px;
    }
    .news-list-item__thumb {
        border-radius: 8px;
    }
    .news-list-item__title {
        font-size: 11px;
        margin: 4px 0 2px;
    }
    .news-list-item__desc {
        font-size: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .news-bottom-grid {
        gap: 12px;
        margin-top: 30px;
    }
    .btn-show-more {
        height: 30px;
        padding: 0 14px;
        font-size: 11px;
        margin-top: 30px;
    }
}
