:root {
    --primary-color: #1a1a1a;
    --accent-color: #c0392b;
    --bg-color: #fcfcfc;
    --text-color: #333;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 4px double var(--primary-color);
    max-width: 1100px;
    margin: 0 auto;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.meta-header {
    font-weight: 600;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}


.navbar {
    background: var(--primary-color);
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links li a:hover {
    background: var(--accent-color);
}

.headline {
    max-width: 900px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
    text-align: center;
}

.headline img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.headline h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.headline p {
    font-size: 1.1rem;
    color: #444;
    text-align: justify;
    column-count: 1;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.news-item {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.news-item img:hover {
    transform: scale(1.02);
}

.news-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 15px 0;
    color: var(--primary-color);
    line-height: 1.3;
}

.news-item p {
    font-size: 0.95rem;
    color: #555;
    display: -webkit-box;
    overflow: hidden;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .headline h2 {
        font-size: 1.8rem;
    }

    .headline img {
        height: 250px;
    }
}