/* News Page */

.news-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-card {
    display: block;
    padding: 18px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.15s;
}

.news-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.news-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.news-source {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
}

.news-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-muted);
}

.news-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.news-tag {
    margin-left: auto;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 4px;
}

.news-tag.oil { background: #fef3c7; color: #92400e; }
.news-tag.fuel { background: #dbeafe; color: #1e40af; }
.news-tag.policy { background: #fee2e2; color: #991b1b; }
.news-tag.opec { background: #d1fae5; color: #065f46; }

.news-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.news-card:first-child .news-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.news-card:first-child {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-color: transparent;
}

.news-card:first-child .news-title {
    color: #fff;
}

.news-card:first-child .news-source {
    color: #fbbf24;
}

.news-card:first-child .news-time {
    color: rgba(255,255,255,0.4);
}

.news-card:first-child .news-dot {
    background: rgba(255,255,255,0.3);
}

.news-card:first-child .news-tag {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
}

.news-card:first-child:hover {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-color: transparent;
}
