:root {
    --page-id: "home";
}

/* --- NEWS GRID (Copied from news.css for Home Page) --- */
.btn-all-news {
    position: absolute;
    top: 0;
    right: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.news-image { height: 200px; position: relative; }
.news-image img { width: 100%; height: 100%; object-fit: cover; filter: sepia(20%) contrast(1.1); transition: 0.5s; }
.news-card:hover img { filter: sepia(0%); transform: scale(1.05); }

.news-tag {
    position: absolute;
    top: 10px; right: 10px;
    padding: 3px 8px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    background: rgba(0,0,0,0.8); border: 1px solid #555;
}
.update { color: #3498db; border-color: #3498db; }
.event { color: #e74c3c; border-color: #e74c3c; }
.fix { color: #2ecc71; border-color: #2ecc71; }

.news-body { padding: 20px; }
.news-date { color: var(--gold-primary); font-size: 0.8rem; display: block; margin-bottom: 5px; }
.news-body h3 { font-family: var(--font-title); font-size: 1.1rem; margin-bottom: 10px; color: #fff; }
.news-body p { color: #888; font-size: 0.9rem; }

.news-actions {
    margin-top: 16px;
    display: flex;
    justify-content: flex-start;
}

.news-more {
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .btn-all-news {
        position: static;
        margin-top: 18px;
    }
}

