.news-page {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* HERO */
.news-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.news-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--text-main);
}

.news-title .highlight {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
}

/* FEED */
.news-feed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ITEM */
.news-feed-item {
    display: flex;
    justify-content: space-between;
    gap: 2rem;

    padding: 2rem;
    border-radius: 16px;

    background: var(--bg-card);
    border: 1px solid color-mix(in srgb, var(--text-main) 8%, transparent);

    text-decoration: none;
    color: var(--text-main);

    transition: all 0.35s ease;
}

.news-feed-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* LEFT CONTENT */
.news-feed-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.news-feed-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
}

.news-feed-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* TAGS */
.news-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    width: fit-content;
}

.news-tag.update {
    background: rgba(0, 210, 255, 0.15);
    color: var(--mc-blue);
}

.news-tag.event {
    background: rgba(255, 140, 0, 0.15);
    color: var(--mc-orange);
}

.news-tag.announcement {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.news-tag.alert {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

/* ARROW */
.news-feed-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-feed-arrow svg {
    width: 22px;
    height: 22px;
    color: var(--text-muted);
    transition: 0.3s;
}

.news-feed-item:hover .news-feed-arrow svg {
    color: var(--mc-orange);
    transform: translateX(5px);
}

/* EMPTY */
.news-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}