/* ===== Base ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  line-height: 1.6;
}

a {
  color: #0056b3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== Layout ===== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
}

/* ===== Header ===== */
.site-header {
  border-bottom: 1px solid #ddd;
  background: #f8f8f8;
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header nav a {
  margin-right: 12px;
  font-weight: 500;
}

/* ===== Main ===== */
main h1 {
  margin-top: 0;
}

/* ===== News ===== */
.news-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.news-item {
  margin-bottom: 20px;
}

.news-date {
  font-weight: bold;
  margin-bottom: 4px;
}

/* ===== Footer (THIS IS THE KEY PART) ===== */
.site-footer {
  margin-top: 60px;
  padding: 24px 0;
  background: #f2f2f2;
  border-top: 1px solid #ccc;
  font-size: 14px;
  color: #555;
}

.site-footer .container {
  text-align: center;
}
