:root {
    --nysa-red: #E3000F;
    --nysa-gold: #FFD700;
    --text-color: #333333;
    --bg-color: #F8F9FA;
    --white: #FFFFFF;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background-color: var(--white);
    border-bottom: 5px solid var(--nysa-red);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--nysa-red);
}

.content-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.main-news {
    flex: 2;
}

.sidebar {
    flex: 1;
}

.featured-article, .news-card, .widget {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border-top: 4px solid var(--nysa-gold);
}

.featured-article {
    border-top: 4px solid var(--nysa-red);
}

.featured-article h2 {
    color: var(--nysa-red);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.news-card h3, .widget h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #111;
    font-weight: 700;
}

.btn-read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 24px;
    background-color: var(--nysa-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 800;
    transition: background 0.2s;
}

.btn-read-more:hover {
    background-color: #b8000c;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.widget h3 {
    border-bottom: 2px solid var(--nysa-gold);
    padding-bottom: 6px;
    margin-bottom: 15px;
}

.weather-widget .temp {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--nysa-red);
    line-height: 1.2;
}

.calendar-widget ul {
    list-style: none;
}

.calendar-widget li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.site-footer {
    background-color: #222;
    color: #ccc;
    text-align: center;
    padding: 35px 0;
    margin-top: 60px;
    border-top: 5px solid var(--nysa-red);
    font-size: 0.9rem;
}
