.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.news-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius); overflow: hidden; text-decoration: none; box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.news-card-body { padding: 1.25rem; }
.news-card-date { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); margin-bottom: 6px; }
.news-card-title { font-family: var(--font-serif); font-size: 1.15rem; color: var(--text-dark); margin-bottom: 8px; line-height: 1.3; }
.news-card-excerpt { font-size: 0.85rem; color: var(--text-mid); line-height: 1.55; }

.news-article { max-width: 720px; }
.news-article-hero { width: 100%; border-radius: var(--radius); margin-bottom: 1.5rem; aspect-ratio: 16/9; object-fit: cover; }
.news-article-date { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); margin-bottom: 10px; }
.news-article-title { font-family: var(--font-serif); font-size: 2rem; color: var(--text-dark); line-height: 1.2; margin-bottom: 1.5rem; }
.news-article-body { font-size: 1rem; color: var(--text-mid); line-height: 1.8; }
.news-article-body p { margin-bottom: 1.25rem; }
.news-article-body h2 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--text-dark); margin: 2rem 0 1rem; }
.news-article-body h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--text-dark); margin: 1.75rem 0 0.75rem; }
.news-article-body img { max-width: 100%; border-radius: var(--radius-sm); margin: 1.5rem 0; }
.news-article-body a { color: var(--navy); }
.news-article-body ul, .news-article-body ol { margin: 0 0 1.25rem 1.25rem; color: var(--text-mid); }
.news-article-body figure { margin: 1.5rem 0; }
.news-article-body figcaption { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: 0.5rem; }
.news-article-body iframe { max-width: 100%; }

@media (max-width: 1024px) {
  .news-grid { grid-template-columns: 1fr; }
}

.event-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.event-card { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius-sm); padding: 1rem 1.25rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.event-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.event-card-title { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); }
.event-card-desc { font-size: 0.85rem; color: var(--text-mid); margin-top: 4px; line-height: 1.5; }
.event-card-cta { font-size: 0.82rem; font-weight: 600; color: var(--navy); white-space: nowrap; flex-shrink: 0; }
