/* Base styles */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: #e74c3c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  background: #2c3e50;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.site-logo {
  display: block;
  margin-bottom: 15px;
}

.site-logo img {
  width: 80px;
  height: auto;
}

.site-title {
  margin: 0;
  font-size: 2.5em;
}

.site-title a {
  color: #fff;
}

.site-title a:hover {
  text-decoration: none;
}

.site-description {
  margin: 10px 0 20px;
  font-style: italic;
  opacity: 0.8;
}

.site-nav a {
  color: #fff;
  margin: 0 15px;
  font-weight: 500;
}

/* Main content */
.site-content {
  padding: 40px 0;
  min-height: 60vh;
}

/* Episode list */
.episodes-list h2 {
  border-bottom: 2px solid #e74c3c;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.episode-card {
  background: #fff;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.episode-card h3 {
  margin: 0 0 10px;
}

.episode-meta {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 10px;
}

.episode-excerpt {
  margin-bottom: 15px;
}

.episode-player audio {
  width: 100%;
}

/* Single post */
.post {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.post-header {
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.post-title {
  margin: 0 0 10px;
  color: #2c3e50;
}

.post-meta {
  color: #666;
  font-size: 0.9em;
}

.post-content {
  margin-bottom: 30px;
}

.post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}

.post-content .aligncenter {
  text-align: center;
}

/* Podcast player */
.podcast-player {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 25px;
}

.podcast-player audio {
  width: 100%;
  margin-bottom: 10px;
}

.audio-download {
  margin: 0;
  font-size: 0.9em;
  text-align: center;
}

/* Subscribe section */
.post-subscribe {
  background: #2c3e50;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.post-subscribe h3 {
  margin: 0 0 10px;
}

.post-subscribe a {
  color: #e74c3c;
}

/* Footer */
.site-footer {
  background: #2c3e50;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.site-footer a {
  color: #e74c3c;
}

/* About page */
.about-page {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.about-page .tagline {
  font-size: 1.3em;
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
}

.hosts {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0;
}

.host {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.host img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.host h3 {
  margin: 0 0 10px;
  color: #2c3e50;
}

.about-page h2 {
  border-bottom: 2px solid #e74c3c;
  padding-bottom: 10px;
  margin-top: 30px;
}

.about-page ul {
  list-style: none;
  padding: 0;
}

.about-page li {
  margin: 10px 0;
}

/* Responsive */
@media (max-width: 600px) {
  .site-title {
    font-size: 1.8em;
  }

  .episode-card,
  .post {
    padding: 20px;
  }
}
