body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  background: #333;
  color: #fff;
  padding: 1rem 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li .active {
  text-decoration: underline;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
}

h1, h2 {
  color: #333;
}

.blurb, .experience, .gallery {
  margin-bottom: 2rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.image-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.news-post {
  border: 1px solid #ccc;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.news-title {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1.5em;
}

.news-date {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 10px;
}

.news-body p {
  margin-bottom: 10px;
  line-height: 1.5;
}