
body {
  font-family: sans-serif;
  margin: 0;
  background: #111;
  color: white;
}
.section {
  padding: 4rem 2rem;
}
.image-text-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 50vh;
}
.half-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 300px;
}
.half-text {
  flex: 1;
  padding: 2rem;
  text-align: left;
}
.list-item p {
  color: #aaa;
  margin: 0 0 1rem;
}
.audio-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
