.latest-title:hover {
  background: #00bfff;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
/* Make latest episode tile look clickable and darken on hover */
/* Make latest episode tile look clickable and darken on hover */
.latest-episode a {
  display: block;
  border-radius: 8px 8px 0 0;
  transition: background 0.2s;
}
.latest-episode a:hover .latest-card {
  background: #00bfff;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.18);
  border: 2px solid #0077b6;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
}
.latest-episode a:hover .latest-card .meta,
.latest-episode a:hover .latest-card .desc,
.latest-episode a:hover .latest-card h3 {
  color: #fff;
}
/* Highlight episode card link on hover */
.episodes-grid .episode-card a {
  transition: background 0.2s, box-shadow 0.2s;
  border-radius: 8px;
}
.episodes-grid .episode-card a:hover {
  background: #00bfff;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.18);
  border: 2px solid #0077b6;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
}
/* Latest Episode Card */
.latest-episode {
  background: none;
  border-radius: 8px 8px 0 0;
  margin-bottom: 32px;
  box-shadow: none;
  padding: 0;
}
.latest-title {
  color: #fff;
  background: #425563;
  border-radius: 8px 8px 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08em;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 12px 24px 10px 24px;
  text-transform: uppercase;
  margin-bottom: 0;
  border-bottom: 2px solid #00bfff;
}
.latest-card {
  background: #425563;
  color: #fff;
  border-radius: 0 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 36px 32px 36px;
  position: relative;
  min-height: 180px;
}
.latest-content {
  max-width: 70%;
}
.latest-card h3 {
  font-size: 2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  margin: 0 0 12px 0;
}
.latest-card .meta {
  font-style: italic;
  color: #e0e6ea;
  margin-bottom: 18px;
}
.latest-card .desc {
  font-size: 1.08em;
  color: #e0e6ea;
}
.download-btn {
  background: #00bfff;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 14px 32px;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 18px;
  align-self: center;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.download-btn:hover {
  background: #0077b6;
}
.latest-underline {
  height: 8px;
  background: #00bfff;
  border-radius: 0 0 8px 8px;
  margin: 0;
}

/* Episodes Grid */
.episodes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.episode-card {
  background: #f6f6f6;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 32px 24px 24px 24px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  min-height: 180px;
}
.episode-card h3 {
  color: #0077b6;
  font-size: 1.6em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  margin: 0 0 12px 0;
}
.episode-card .meta {
  font-style: italic;
  color: #888;
  margin-bottom: 14px;
}
.episode-card .desc {
  color: #222;
  font-size: 1.08em;
}

@media (max-width: 800px) {
  .episodes-grid {
    grid-template-columns: 1fr;
  }
  .latest-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px 24px 16px;
  }
  .latest-content {
    max-width: 100%;
  }
  .download-btn {
    margin-top: 24px;
    width: 100%;
    text-align: center;
  }
}
/* Hero and Logo */
.hero {
  background: linear-gradient(180deg, #b7c7ce 80%, #f9f9f9 100%);
  padding: 0;
  margin: 0;
  text-align: center;
}
.logo-area {
  padding: 48px 0 18px 0;
}

/* Main Navigation Bar */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1em;
  font-weight: 500;
  letter-spacing: 1px;
  height: 54px;
  margin-bottom: 0;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  flex: 1;
  text-align: center;
  padding: 0 0;
  transition: background 0.2s, color 0.2s;
  line-height: 54px;
  display: block;
}
.main-nav a:hover {
  background: #444;
  color: #b7c7ce;
}
.main-nav .divider {
  width: 1px;
  height: 32px;
  background: #555;
  margin: 0 0;
}

body {
  background: #f9f9f9;
  color: #222;
  font-family: 'Georgia', serif;
  margin: 0;
  padding: 0;
}


.container {
  max-width: 700px;
  margin: 48px auto 40px auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 36px 32px 18px 32px;
  position: relative;
  top: 0;
  z-index: 1;
}



.top-nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-bottom: 10px;
}
.top-nav a {
  color: #222;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: color 0.2s;
}
.top-nav a:hover {
  color: #0070f3;
}



.about {
  margin-bottom: 32px;
  font-size: 1.08em;
  margin-top: 0;
}


/* Latest Episode Section */
.latest-episode {
  background: #4d6570;
  border-radius: 8px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 0 0 12px 0;
}
.latest-title {
  color: #fff;
  background: #3a4a52;
  border-radius: 8px 8px 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08em;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 12px 24px 10px 24px;
  text-transform: uppercase;
  margin-bottom: 0;
  letter-spacing: 0.12em;
}
.latest-episode .episode {
  background: none;
  border: none;
  margin: 0;
  padding: 18px 24px 0 24px;
}


.episode {
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}
.episode:last-child {
  border-bottom: none;
}
.episode h3 {
  margin: 0 0 4px 0;
  font-size: 1.13em;
  font-weight: bold;
}
.meta {
  color: #888;
  font-size: 0.98em;
  margin-bottom: 4px;
}
.desc {
  margin-bottom: 8px;
  font-size: 1em;
}
.listen {
  background: #222;
  color: #fff;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.97em;
  margin-top: 6px;
  display: inline-block;
  transition: background 0.2s;
}
.listen:hover {
  background: #444;
}

footer {
  text-align: center;
  color: #aaa;
  font-size: 0.97em;
  margin-top: 40px;
  padding-bottom: 8px;
}
