/* style/news.css */

/* Custom CSS Variables (for consistency with shared.css and brand colors) */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Navy Blue */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f4f4; /* From body background */
  --border-color: #e0e0e0;
}

.page-news {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark); /* Default text color for light body background */
  background-color: var(--bg-light);
  line-height: 1.6;
}

.page-news__section {
  padding: 60px 0;
  text-align: center;
}

.page-news__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}