body {
  font-family: Arial, sans-serif;
  background: #f8f5f0;
  color: #000;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.host-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
}

h2 {
  font-size: 1.25rem;
  margin: 0;
}

.tagline {
  font-weight: bold;
  margin-top: 10px;
}

.listen-btn {
  margin-top: 10px;
  background: #000;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.listen-btn:hover {
  background: #333;
}

.mic-image {
  max-width: 140px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 20px 0;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.episodes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.episode-card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  width: calc(33% - 13.3px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.image-placeholder {
  background: #ccc;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  margin-bottom: 10px;
}

.date {
  font-size: 0.9rem;
  color: #666;
}

.btn-view {
  background: #eee;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: bold;
}

footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
  }
  .episodes-grid {
    flex-direction: column;
  }
  .episode-card {
    width: 100%;
  }
}
