.news-other {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.news-tabbar {
    position: sticky;
    top: 70px;
    z-index: 99;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--color-bg-dark);
}

.news-tabs {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.news-tabs::-webkit-scrollbar {
    display: none;
}

.news-tab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 18px 28px;
    cursor: pointer;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.news-tab-btn:hover {
    color: var(--color-text-main);
}

.news-tab-btn.is-active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

/* Panels */
.news-panel {
    display: none;
}

.news-panel.is-active {
    display: block;
}

.news-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    margin-bottom: 16px;
}

.news-spotlight:hover .news-spotlight-img img {
    transform: scale(1.04);
}

.news-spotlight-img {
    overflow: hidden;
    aspect-ratio: 16/10;
}

.news-spotlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-spotlight-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-spotlight-title {
    font-size: 2rem;
    line-height: 1.25;
    color: var(--color-text-main);
}

.news-spotlight-excerpt {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.news-spotlight-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.news-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

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

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

.news-card:hover .news-card-img img {
    transform: scale(1.05);
}

.news-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
    margin-bottom: 20px;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card-featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-accent);
    color: var(--color-bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
}

.news-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.news-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

.news-card-title {
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--color-text-main);
}

.news-card-excerpt {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    flex: 1;
}

.news-card-date {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .news-spotlight {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .news-spotlight-title {
        font-size: 1.6rem;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .news-tab-btn {
        padding: 14px 18px;
        font-size: 0.78rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}