/* -------------------------------------------------
   Global reset & base styles
   ------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; margin:0; padding:0; }

html { font-size: 16px; }
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}

/* -------------------------------------------------
   Header
   ------------------------------------------------- */
.site-header {
  background: #ff6600;          /* Primary orange */
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}
.site-header .logo {
  max-width: 120px;
  margin-bottom: 1rem;
}
.site-header h1 { margin: 0.5rem 0; font-size: 2.2rem; }
.site-header .tagline { font-size: 1.1rem; opacity: 0.9; }

/* -------------------------------------------------
   Episodes list
   ------------------------------------------------- */
.episodes {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.episode-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.episode-thumb {
  width: 100%;
  max-width: 260px;
  object-fit: cover;
}
.episode-info {
  flex: 1;
  padding: 1.5rem;
}
.episode-info h2 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #ff6600;
}
.episode-info .date {
  font-size: .9rem;
  color: #777;
  margin-bottom: .8rem;
}
.episode-info .desc {
  margin-bottom: 1rem;
}

/* -------------------------------------------------
   Footer
   ------------------------------------------------- */
.site-footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 1.5rem;
}
.site-footer a { color: #ff6600; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.social-links {
  margin-top: .8rem;
}
.social-links a {
  margin: 0 .5rem;
  color: #ff6600;
  font-size: 1.4rem;
}
.social-links a:hover { opacity: .8; }

/* -------------------------------------------------
   Responsive tweaks
   ------------------------------------------------- */
@media (max-width: 680px) {
  .episode-card { flex-direction: column; }
  .episode-thumb { max-width: none; }
}
