:root {
    --primary-green: #4e9331;
    --dark-bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --text-muted: #a0a0a0;
    --max-width: 1100px;
}

/* Center everything in the middle of the screen */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.news-hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('/assets/banner.png');
    background-size: cover;
    background-position: center;
    margin-bottom: 40px;
}

.news-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Sections */
.article-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-green);
    padding-left: 15px;
    color: #fff;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-content h3 {
    margin: 15px 0;
    font-size: 1.5rem;
}

.card-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Archive List - Clean horizontal rows */
.article-list-simple {
    background: #151515;
    border-radius: 12px;
    border: 1px solid #222;
    overflow: hidden;
}

.archive-item {
    display: grid;
    grid-template-columns: 150px 1fr 120px;
    padding: 20px;
    border-bottom: 1px solid #222;
    text-decoration: none;
    color: #eee;
    transition: background 0.2s;
}

.archive-item:last-child { border-bottom: none; }
.archive-item:hover { background: #1f1f1f; }

.archive-date { color: var(--primary-green); font-weight: 500; }
.archive-title { font-weight: bold; }
.archive-tag { text-align: right; font-size: 0.75rem; color: var(--text-muted); }

/* Tags & Buttons */
.tag {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    background: #333;
}

.btn-read {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .archive-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    .archive-tag { text-align: left; }
    .news-hero h1 { font-size: 2rem; }
}