.news-section {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
}

.news-item {
    padding: calc(var(--spacing-unit) * 2);
    background: var(--gray-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.news-item time {
    color: var(--primary-color);
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.news-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.news-item p {
    color: var(--text-light);
}

.news-archive {
    background: white;
    border: 1px solid var(--gray-border);
    padding: calc(var(--spacing-unit) * 1.5);
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: calc(var(--spacing-unit) * 2);
}

.news-archive h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-unit);
}

.news-archive ul {
    list-style: none;
}

.news-archive li {
    margin-bottom: 0.5rem;
}

.news-archive a {
    color: var(--secondary-color);
    text-decoration: none;
}

.news-archive a:hover {
    text-decoration: underline;
}

.upcoming-events {
    margin-top: calc(var(--spacing-unit) * 4);
    padding-top: calc(var(--spacing-unit) * 2);
    border-top: 1px solid var(--gray-border);
}

.upcoming-events h3 {
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.event-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1.5);
}

.event {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: calc(var(--spacing-unit) * 1.5);
    align-items: start;
}

.event time {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.875rem;
}

.event h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.event p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .news-section {
        grid-template-columns: 1fr;
    }
    
    .news-archive {
        position: static;
        margin-top: calc(var(--spacing-unit) * 3);
    }
    
    .event {
        grid-template-columns: 1fr;
    }
    
    .event time {
        margin-bottom: 0.5rem;
    }
}