/* Scott Hanselman Style - Clean and Simple */

/* Hide scroll bars */
* {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

*::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent; /* Chrome/Safari/Webkit */
}

body {
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: transparent;
}

html {
  scrollbar-width: none;
}

/* Hanselman-style podcast page */
.podcast-page-hanselman {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

.podcast-header-hanselman {
  text-align: center;
  margin-bottom: 60px;
}

.podcast-header-hanselman h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.podcast-tagline-hanselman {
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
  margin-bottom: 40px;
}

/* Latest episode featured */
.latest-episode-hanselman {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  margin-bottom: 60px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
  align-items: center;
}

.episode-image-hanselman {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #0078d4, #106ebe);
  display: flex;
  align-items: center;
  justify-content: center;
}

.episode-image-hanselman img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.episode-placeholder-hanselman {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.episode-number-hanselman {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
}

.episode-content-hanselman h2 {
  margin: 0 0 10px 0;
  font-size: 1.6rem;
  line-height: 1.3;
}

.episode-content-hanselman h2 a {
  color: #333;
  text-decoration: none;
}

.episode-content-hanselman h2 a:hover {
  color: #0078d4;
  text-decoration: underline;
}

.episode-guest-hanselman {
  color: #666;
  font-style: italic;
  margin: 0 0 15px 0;
  font-size: 1rem;
}

.episode-meta-hanselman {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.episode-meta-hanselman span {
  margin-right: 15px;
}

.episode-description-hanselman {
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Previous episodes grid */
.previous-episodes-hanselman {
  margin-bottom: 60px;
}

.previous-episodes-hanselman h2 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  color: #333;
  font-weight: 600;
}

.episodes-grid-hanselman {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.episode-item-hanselman {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 20px;
  transition: all 0.3s ease;
}

.episode-item-hanselman:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: #0078d4;
  transform: translateY(-2px);
}

.episode-link-hanselman {
  text-decoration: none;
  color: inherit;
  display: block;
}

.episode-number-grid {
  background: #0078d4;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

.episode-title-grid {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  line-height: 1.4;
  color: #333;
  font-weight: 600;
}

.episode-item-hanselman:hover .episode-title-grid {
  color: #0078d4;
}

.episode-guest-grid {
  color: #666;
  font-style: italic;
  margin: 0;
  font-size: 0.9rem;
}

.view-more-hanselman {
  text-align: center;
  margin-top: 40px;
}

.view-more-link-hanselman {
  color: #0078d4;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
}

.view-more-link-hanselman:hover {
  text-decoration: underline;
}

/* About and subscribe sections */
.about-hanselman {
  border-top: 1px solid #e0e0e0;
  padding-top: 40px;
  text-align: center;
}

.about-hanselman h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
}

.about-hanselman p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.subscribe-hanselman h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
}

.subscribe-links-hanselman {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.subscribe-links-hanselman a {
  color: #0078d4;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: white;
  transition: all 0.3s ease;
}

.subscribe-links-hanselman a:hover {
  background: #0078d4;
  color: white;
  text-decoration: none;
  border-color: #0078d4;
}

/* Responsive design for Hanselman style */
@media (max-width: 768px) {
  .podcast-page-hanselman {
    padding: 20px 15px;
  }
  
  .podcast-header-hanselman h1 {
    font-size: 1.6rem;
  }
  
  .latest-episode-hanselman {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .episode-image-hanselman {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }
  
  .episodes-grid-hanselman {
    grid-template-columns: 1fr;
  }
  
  .subscribe-links-hanselman {
    flex-direction: column;
    align-items: center;
  }
}

/* Scott Hanselman Style - Clean and Simple */

/* Hanselman-style podcast page */
.podcast-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
}

.podcast-header-hanselman {
  text-align: center;
  margin-bottom: 40px;
}

.podcast-header-hanselman h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.podcast-tagline-hanselman {
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
  margin-bottom: 30px;
  text-align: center;
}

/* Episodes Grid like Hanselminutes - 4 columns, 3 rows for 12 speakers */
.episodes-grid-hanselman {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 30px auto 30px calc(50% - 400px);
  max-width: 750px;
  padding: 20px;
  justify-items: center;
  align-items: center;
}

.episode-card-hanselman {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  background: #fff;
  margin: 0 auto;
}

.episode-card-hanselman:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.episode-link-hanselman {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.episode-image-container {
  position: relative;
  width: 150px;
  height: 150px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
}

.episode-image-container img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  border: none;
  outline: none;
  border-radius: 50%;
}

.episode-card-hanselman:hover .episode-image-container img {
  transform: scale(1.02);
}

.episode-placeholder-grid {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
}

.episode-number-overlay {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.episode-number-badge {
  display: none;
}

.episode-card-hanselman .episode-info-overlay {
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  color: #333;
  padding: 12px 16px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 220px;
  max-width: 280px;
}

.episode-card-hanselman:hover .episode-info-overlay {
  opacity: 1;
  bottom: -80px;
}

.episode-card-hanselman .episode-title-overlay {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.3;
  color: #333;
}

.episode-card-hanselman .episode-guest-overlay {
  font-size: 0.85rem;
  margin: 0 0 3px 0;
  opacity: 0.8;
  color: #666;
}

.episode-card-hanselman .episode-guest-title {
  font-size: 0.75rem;
  margin: 0;
  opacity: 0.7;
  color: #888;
  font-style: italic;
}

/* View more section */
.view-more-hanselman {
  text-align: center;
  margin: 30px auto;
  padding: 25px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  max-width: 300px;
}

.view-more-link-hanselman {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.view-more-link-hanselman:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* About section */
.about-hanselman {
  margin-top: 40px;
  text-align: center;
}

.about-hanselman h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.about-hanselman p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px;
}

.subscribe-hanselman h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #333;
}

.subscribe-links-hanselman {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.subscribe-links-hanselman a {
  color: #0078d4;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border: 2px solid #0078d4;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.subscribe-links-hanselman a:hover {
  background: #0078d4;
  color: white;
  text-decoration: none;
}

/* Responsive design for 12 speakers in 4x3 grid */
@media (max-width: 900px) {
  .episodes-grid-hanselman {
    grid-template-columns: repeat(3, 1fr);
    max-width: 600px;
    gap: 25px;
    justify-items: center;
  }
  
  .episode-card-hanselman {
    width: 120px;
    height: 120px;
  }
  
  .episode-image-container,
  .episode-image-container img,
  .episode-placeholder-grid {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .podcast-page {
    padding: 20px 15px;
  }
  
  .episodes-grid-hanselman {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
    gap: 20px;
    justify-items: center;
  }
  
  .episode-card-hanselman {
    width: 100px;
    height: 100px;
  }
  
  .episode-image-container,
  .episode-image-container img,
  .episode-placeholder-grid {
    width: 100px;
    height: 100px;
  }
  
  .podcast-header-hanselman h1 {
    font-size: 1.6rem;
  }
  
  .subscribe-links-hanselman {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .episodes-grid-hanselman {
    grid-template-columns: repeat(2, 1fr);
    max-width: 300px;
    gap: 15px;
    justify-items: center;
  }
  
  .episode-card-hanselman {
    width: 80px;
    height: 80px;
  }
  
  .episode-image-container,
  .episode-image-container img,
  .episode-placeholder-grid {
    width: 80px;
    height: 80px;
  }
  
  .episode-number-overlay {
    font-size: 1.2rem;
  }
}

.episode-featured-simple {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.episode-number-large {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: #0078d4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
}

.episode-content-featured h2 {
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  line-height: 1.3;
}

.episode-content-featured h2 a {
  color: #333;
  text-decoration: none;
}

.episode-content-featured h2 a:hover {
  color: #0078d4;
  text-decoration: underline;
}

.episode-guest-featured {
  color: #666;
  font-style: italic;
  margin: 0 0 10px 0;
  font-size: 1.1rem;
}

.episode-meta-featured {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.episode-description-featured {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.episode-actions-simple {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.listen-btn, .watch-btn, .notes-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.listen-btn {
  background: #0078d4;
  color: white;
}

.listen-btn:hover {
  background: #106ebe;
  color: white;
  text-decoration: none;
}

.watch-btn {
  background: #dc3545;
  color: white;
}

.watch-btn:hover {
  background: #c82333;
  color: white;
  text-decoration: none;
}

.notes-btn {
  background: #6c757d;
  color: white;
}

.notes-btn:hover {
  background: #5a6268;
  color: white;
  text-decoration: none;
}

/* Recent episodes */
.recent-episodes-simple h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #333;
  font-weight: 600;
}

.episodes-simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.episode-card-simple {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 20px;
  transition: all 0.3s ease;
}

.episode-card-simple:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: #0078d4;
}

.episode-link-simple {
  text-decoration: none;
  color: inherit;
  display: block;
}

.episode-number-small {
  background: #f1f3f4;
  color: #333;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.episode-card-simple h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  line-height: 1.4;
  color: #333;
}

.episode-card-simple:hover h3 {
  color: #0078d4;
}

.guest-name {
  color: #666;
  font-style: italic;
  margin: 0 0 8px 0;
  font-size: 0.9rem;
}

.episode-card-simple time {
  color: #888;
  font-size: 0.85rem;
}

.view-more {
  text-align: center;
  margin-top: 40px;
}

.view-more-link {
  color: #0078d4;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
}

.view-more-link:hover {
  text-decoration: underline;
}

/* Subscribe section */
.subscribe-section-simple {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 60px;
}

.subscribe-section-simple h3 {
  margin: 0 0 20px 0;
  color: #333;
  font-size: 1.4rem;
}

.subscribe-links-simple {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.subscribe-links-simple a {
  color: #0078d4;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: white;
  transition: all 0.3s ease;
}

.subscribe-links-simple a:hover {
  background: #0078d4;
  color: white;
  text-decoration: none;
  border-color: #0078d4;
}

/* Archive page styles */
.podcast-header-simple {
  margin-bottom: 40px;
}

.podcast-header-simple h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #333;
}

.archive-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.5;
}

.episodes-count {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 6px;
}

.episodes-count p {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

.episodes-simple-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.episode-simple {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.episode-simple:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: #0078d4;
}

.episode-number-badge {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #0078d4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
}

.episode-content-simple h2 {
  margin: 0 0 8px 0;
  font-size: 1.4rem;
  line-height: 1.3;
}

.episode-content-simple h2 a {
  color: #333;
  text-decoration: none;
}

.episode-content-simple h2 a:hover {
  color: #0078d4;
  text-decoration: underline;
}

.episode-guest-simple {
  color: #666;
  font-style: italic;
  margin: 0 0 10px 0;
}

.episode-description-simple {
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}

.episode-meta-simple {
  color: #888;
  font-size: 0.9rem;
}

.episode-duration {
  margin-left: 5px;
}

/* Responsive design for simple layout */
@media (max-width: 768px) {
  .podcast-page-simple {
    padding: 15px;
  }
  
  .podcast-header-clean h1 {
    font-size: 2rem;
  }
  
  .episode-featured-simple {
    flex-direction: column;
    text-align: center;
  }
  
  .episode-number-large {
    margin: 0 auto 20px auto;
  }
  
  .episodes-simple-grid {
    grid-template-columns: 1fr;
  }
  
  .episode-simple {
    flex-direction: column;
    text-align: center;
  }
  
  .episode-number-badge {
    margin: 0 auto 15px auto;
  }
  
  .subscribe-links-simple {
    flex-direction: column;
    align-items: center;
  }
  
  .episode-actions-simple {
    justify-content: center;
  }
}

/* Hero section */
.podcast-hero {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, #0078d4, #106ebe, #005a9e);
  color: white;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0, 120, 212, 0.3);
}

.podcast-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.podcast-tagline {
  font-size: 1.4rem;
  margin-bottom: 32px;
  opacity: 0.95;
  font-weight: 300;
  font-style: italic;
}

.podcast-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
  opacity: 0.9;
}

.podcast-description h2 {
  color: white;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.podcast-description ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.podcast-description li {
  margin-bottom: 8px;
  padding-left: 8px;
}

/* Subscribe buttons */
.podcast-subscribe h3 {
  color: white;
  margin-bottom: 24px;
  font-size: 1.2rem;
  font-weight: 600;
}

.subscribe-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.subscribe-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: white;
  text-decoration: none;
}

/* Featured/Latest episode */
.featured-episode {
  margin-bottom: 60px;
}

.featured-episode h2 {
  font-size: 2.2rem;
  margin-bottom: 32px;
  color: #323130;
  font-weight: 700;
}

.episode-featured {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e1dfdd;
}

.episode-image-large {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #0078d4, #106ebe);
  display: flex;
  align-items: center;
  justify-content: center;
}

.episode-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.episode-placeholder-large {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.episode-number-large {
  font-size: 3rem;
  font-weight: 900;
  color: white;
}

.episode-content-large {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.episode-meta-large {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #605e5c;
}

.episode-number {
  background: #0078d4;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
}

.episode-content-large h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.episode-content-large h3 a {
  color: #323130;
  text-decoration: none;
}

.episode-content-large h3 a:hover {
  color: #0078d4;
}

.episode-guest-large {
  color: #605e5c;
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-style: italic;
}

.episode-description {
  color: #323130;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.episode-actions-large {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.action-btn.primary {
  background: #0078d4;
  color: white;
}

.action-btn.primary:hover {
  background: #106ebe;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.action-btn.secondary {
  background: #dc3545;
  color: white;
}

.action-btn.secondary:hover {
  background: #c82333;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.action-btn.tertiary {
  background: #6c757d;
  color: white;
  border: none;
}

.action-btn.tertiary:hover {
  background: #5a6268;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Recent episodes list */
.recent-episodes {
  margin-bottom: 60px;
}

.recent-episodes h2 {
  font-size: 2.2rem;
  margin-bottom: 32px;
  color: #323130;
  font-weight: 700;
}

.episodes-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.episode-item {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e1dfdd;
  transition: all 0.3s ease;
}

.episode-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.episode-link {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  text-decoration: none;
  color: inherit;
}

.episode-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #0078d4, #106ebe);
  display: flex;
  align-items: center;
  justify-content: center;
}

.episode-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.episode-placeholder-small {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.episode-placeholder-small .episode-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  background: none;
  padding: 0;
}

.episode-meta-small {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #605e5c;
}

.episode-guest-small {
  color: #605e5c;
  font-style: italic;
}

.episode-title-small {
  font-size: 1.2rem;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #323130;
}

.episode-summary {
  color: #605e5c;
  line-height: 1.5;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.episode-info-small {
  font-size: 0.85rem;
  color: #8a8886;
}

/* View all button */
.view-all {
  text-align: center;
  margin-top: 40px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0078d4;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background: #106ebe;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Community section */
.podcast-community {
  background: #f8f9fa;
  padding: 60px 40px;
  border-radius: 16px;
  margin-bottom: 60px;
}

.podcast-community h2 {
  font-size: 2.2rem;
  margin-bottom: 32px;
  color: #323130;
  font-weight: 700;
  text-align: center;
}

.community-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.community-text p {
  color: #323130;
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.community-text h3 {
  color: #323130;
  margin-bottom: 16px;
  margin-top: 32px;
  font-size: 1.3rem;
}

.community-text ul {
  margin-bottom: 32px;
}

.community-text li {
  margin-bottom: 12px;
  color: #323130;
  line-height: 1.6;
}

.community-contact {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0078d4;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #106ebe;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.community-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.stat-item {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #0078d4;
  margin-bottom: 8px;
}

.stat-label {
  color: #605e5c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

/* Recommended podcasts */
.recommended-podcasts {
  margin-bottom: 60px;
}

.recommended-podcasts h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #323130;
  font-weight: 700;
}

.recommended-podcasts p {
  color: #605e5c;
  margin-bottom: 32px;
  font-size: 1.05rem;
  font-style: italic;
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.recommended-item {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e1dfdd;
  transition: all 0.3s ease;
}

.recommended-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.recommended-item h4 {
  margin-bottom: 12px;
}

.recommended-item h4 a {
  color: #0078d4;
  text-decoration: none;
  font-weight: 600;
}

.recommended-item h4 a:hover {
  color: #106ebe;
  text-decoration: underline;
}

.recommended-item p {
  color: #605e5c;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
  font-style: normal;
}

/* Hanselminutes Episode Page Style */
.hanselminutes-episode-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

.episode-breadcrumb-hanselman {
  margin-bottom: 30px;
}

.episode-breadcrumb-hanselman a {
  color: #0066cc;
  text-decoration: none;
  font-size: 0.9rem;
}

.episode-breadcrumb-hanselman a:hover {
  text-decoration: underline;
}

.episode-header-hanselman {
  margin-bottom: 40px;
  text-align: center;
}

.episode-number-badge {
  display: inline-block;
  background: #0066cc;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.episode-title-hanselman {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #222;
}

.episode-guest-hanselman {
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
  margin: 0 0 30px 0;
}

/* Audio Player Styling */
.audio-player-hanselman {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 25px;
  margin: 30px auto;
  max-width: 600px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.episode-audio {
  width: 100%;
  height: 60px;
  background: #ffffff;
  border-radius: 8px;
  outline: none;
  margin-bottom: 15px;
}

.episode-audio::-webkit-media-controls-panel {
  background-color: #ffffff;
  border-radius: 8px;
}

.episode-audio::-webkit-media-controls-play-button {
  background-color: #0066cc;
  border-radius: 50%;
}

.episode-audio::-webkit-media-controls-current-time-display,
.episode-audio::-webkit-media-controls-time-remaining-display {
  color: #333;
  font-weight: 500;
}

.episode-audio::-webkit-media-controls-timeline {
  background-color: #e9ecef;
  border-radius: 25px;
  margin-left: 10px;
  margin-right: 10px;
}

.episode-audio::-webkit-media-controls-timeline::-webkit-slider-thumb {
  background-color: #0066cc;
  border-radius: 50%;
}

.audio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #666;
  flex-wrap: wrap;
  gap: 10px;
}

.audio-date,
.audio-episode,
.audio-duration {
  background: #e6f3ff;
  color: #0066cc;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.8rem;
}

@media (max-width: 480px) {
  .audio-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .audio-player-hanselman {
    margin: 20px 10px;
    padding: 20px;
  }
}

.episode-layout-hanselman {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  align-items: start;
}

.episode-sidebar-hanselman {
  position: sticky;
  top: 20px;
}

.guest-image-hanselman {
  margin-bottom: 25px;
  text-align: center;
}

.guest-photo-hanselman {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.episode-meta-hanselman {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  border-left: 4px solid #0066cc;
}

.meta-group-hanselman {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.meta-group-hanselman:last-child {
  margin-bottom: 0;
}

.meta-group-hanselman strong {
  display: block;
  color: #333;
  font-weight: 600;
  margin-bottom: 3px;
}

.episode-actions-hanselman {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hanselman-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hanselman-btn.primary {
  background: #0066cc;
  color: white;
}

.hanselman-btn.primary:hover {
  background: #0052a3;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.hanselman-btn.secondary {
  background: #dc3545;
  color: white;
}

.hanselman-btn.secondary:hover {
  background: #c82333;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.hanselman-btn.tertiary {
  background: transparent;
  color: #0066cc;
  border: 2px solid #0066cc;
}

.hanselman-btn.tertiary:hover {
  background: #0066cc;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.episode-content-hanselman {
  min-width: 0;
}

.episode-description-hanselman {
  background: #e6f3ff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  border-left: 4px solid #0066cc;
}

.episode-description-hanselman p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.episode-body-hanselman {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.episode-body-hanselman h2 {
  color: #222;
  margin-top: 35px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 600;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
}

.episode-body-hanselman h3 {
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.episode-body-hanselman ul {
  padding-left: 25px;
  margin-bottom: 25px;
}

.episode-body-hanselman li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.episode-body-hanselman p {
  margin-bottom: 20px;
}

.episode-tags-hanselman {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 2px solid #eee;
}

.episode-tags-hanselman h4 {
  margin-bottom: 15px;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
}

.tags-list-hanselman {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-hanselman {
  background: #0066cc;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: lowercase;
}

/* Responsive design for Hanselminutes style */
@media (max-width: 768px) {
  .hanselminutes-episode-page {
    padding: 15px;
  }
  
  .episode-title-hanselman {
    font-size: 2rem;
  }
  
  .episode-layout-hanselman {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .episode-sidebar-hanselman {
    position: static;
    order: 2;
  }
  
  .episode-content-hanselman {
    order: 1;
  }
  
  .guest-photo-hanselman {
    width: 150px;
    height: 150px;
  }
  
  .episode-actions-hanselman {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .hanselman-btn {
    flex: 1;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .episode-actions-hanselman {
    flex-direction: column;
  }
  
  .hanselman-btn {
    flex: none;
  }
}
.episode-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset any overlay styles that might leak onto episode pages */
.episode-page * {
  position: static !important;
}

.episode-page .episode-info-overlay,
.episode-page .episode-title-overlay,
.episode-page .episode-guest-overlay {
  display: none !important;
}

.episode-breadcrumb {
  margin-bottom: 40px;
  padding: 0;
  background: transparent;
}

.episode-breadcrumb a {
  color: #0078d4;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.episode-breadcrumb a:hover {
  text-decoration: underline;
}

.episode-title-section {
  text-align: left;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.episode-title-section .episode-number {
  display: inline-block;
  margin-bottom: 15px;
  background: #0078d4;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.episode-title-section h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #333;
  font-weight: 700;
  max-width: none;
}

.episode-guest {
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
  margin-bottom: 0;
}

.episode-main-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.episode-guest-image {
  margin: 0;
  display: block;
  position: relative;
  z-index: 1;
}

.guest-photo {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: block;
  position: relative;
}

.episode-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.episode-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
  color: #666;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-label {
  font-weight: 600;
  color: #333;
  min-width: 80px;
}

.episode-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.episode-content {
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.episode-description {
  margin-bottom: 30px;
}

.episode-description .lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  font-weight: 400;
}

.episode-body {
  color: #333;
  line-height: 1.7;
  font-size: 1rem;
}

.episode-body h2 {
  color: #333;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.episode-body h3 {
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.episode-body ul {
  margin-bottom: 25px;
  padding-left: 25px;
}

.episode-body li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.episode-tags {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e1e5e9;
}

.episode-tags h4 {
  margin-bottom: 15px;
  color: #333;
  font-size: 1.1rem;
}

.tags-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: #f1f3f4;
  color: #333;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Responsive design for episode page */
@media (max-width: 768px) {
  .episode-page {
    padding: 20px 15px;
  }
  
  .episode-title-section h1 {
    font-size: 1.8rem;
  }
  
  .episode-main-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  
  .guest-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }
  
  .episode-guest-image {
    display: flex;
    justify-content: center;
  }
  
  .episode-actions {
    justify-content: center;
  }
}
  position: relative;
  z-index: 2;
  background: white;
}

/* Ensure no pseudo-elements or overlays appear on episode pages */
.episode-page *::before,
.episode-page *::after {
  display: none !important;
}

.episode-description .lead {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 400;
}

.episode-body {
  line-height: 1.7;
  color: #333;
  font-size: 1.05rem;
}

.episode-body h2 {
  color: #333;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 600;
}

.episode-body h3 {
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.episode-body ul, .episode-body ol {
  margin-bottom: 24px;
}

.episode-body li {
  margin-bottom: 8px;
}

.episode-tags {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e1dfdd;
  text-align: center;
}

.episode-tags h4 {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.1rem;
}

.tags-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  background: #f8f9fa;
  color: #333;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #e1dfdd;
}

/* Episode footer */
.episode-footer {
  border-top: 1px solid #e1dfdd;
  padding-top: 16px;
  margin-top: 20px;
}

.episode-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.nav-link {
  display: block;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 6px;
  text-decoration: none;
  color: #323130;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: #e1dfdd;
  color: #323130;
  text-decoration: none;
  transform: translateY(-2px);
}

.nav-link.prev {
  text-align: left;
}

.nav-link.next {
  text-align: right;
}

.nav-title {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #605e5c;
}

.episode-share {
  margin-bottom: 16px;
  text-align: center;
}

.episode-share h4 {
  margin-bottom: 8px;
  color: #323130;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.share-btn.email {
  background: #34495e;
  color: white;
}

.share-btn:hover {
  transform: translateY(-1px);
  color: white;
  text-decoration: none;
}

.episode-community {
  display: none;
}

.subscribe-reminder {
  text-align: center;
}

.subscribe-reminder h4 {
  margin-bottom: 8px;
  color: #323130;
}

.subscribe-reminder p {
  color: #605e5c;
  margin-bottom: 12px;
}

.subscribe-buttons-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-btn-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f3f2f1;
  color: #323130;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid #e1dfdd;
}

.subscribe-btn-small:hover {
  background: #e1dfdd;
  color: #323130;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Responsive design */
@media (max-width: 768px) {
  .podcast-hero {
    padding: 60px 20px;
  }
  
  .podcast-hero h1 {
    font-size: 2.5rem;
  }
  
  .episode-featured {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .episode-image-large {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
  
  .community-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .episode-navigation {
    grid-template-columns: 1fr;
  }
  
  .subscribe-buttons,
  .share-buttons,
  .community-links {
    flex-direction: column;
    align-items: center;
  }
  
  .episode-meta {
    flex-direction: column;
    gap: 16px;
  }
}

/* Episodes Archive Styles */
.archive-header {
  margin-bottom: 48px;
}

.archive-header h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #323130;
  font-weight: 700;
}

.archive-description {
  font-size: 1.1rem;
  color: #605e5c;
  line-height: 1.6;
}

.episodes-archive {
  margin-bottom: 60px;
}

.episodes-stats {
  text-align: center;
  margin-bottom: 48px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 12px;
}

.episodes-stats p {
  font-size: 1.1rem;
  color: #323130;
  margin: 0;
}

.year-group {
  margin-bottom: 48px;
}

.year-header {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0078d4;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e1dfdd;
}

.episode-tags-small {
  color: #8a8886;
  font-size: 0.8rem;
}

.archive-footer {
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid #e1dfdd;
}

.archive-footer .subscribe-reminder h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #323130;
}

.archive-footer .subscribe-reminder p {
  color: #605e5c;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* Responsive design for episode pages */
@media (max-width: 768px) {
  .episode-main-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .episode-guest-image {
    text-align: center;
  }
  
  .guest-photo {
    width: 150px;
    height: 150px;
  }
  
  .episode-title-section h1 {
    font-size: 1.8rem;
  }
  
  .episode-actions {
    justify-content: center;
  }
  
  .episode-meta {
    gap: 15px;
  }
}
