/* ==================================================================
    Header and Nav - Modern Design
================================================================== */

nav {
  width: 64%;
  display: inline-block;
}

nav ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

nav li {
  display: inline-block;
}

nav li a {
  color: var(--accent-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0.875rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}

header {
  text-align: right;
  margin: 2rem 0 3rem 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 2rem;
}

header .blog-name {
  width: 35%;
  display: inline-block;
  text-align: left;
  font-size: 1.125rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding-top: 0.5rem;
}

header .blog-name a {
  color: #374151;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

header .blog-name img {
  border-radius: 0.5rem;
}

header .blog-name a:hover {
  opacity: 0.8;
}

header li a:hover {
  color: var(--accent-hover);
  background-color: #f3f4f6;
  transform: translateY(-1px);
}

#menu-icon {
  display: none;
}

@media (max-width: 480px) {
  header {
    padding-left: 6%;
    padding-right: 6%;
  }
}

@media (min-width: 481px) {
  header {
    padding-left: 12.5%;
    padding-right: 12.5%;
  }
}

/* wide display: enforce maximum width of header to match content */
@media (min-width: 940px) {
  header {
    width: 705px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*
medium display: nav goes under name
*/
@media (max-width: 760px) {
  header { display: block; }

  header .blog-name {
    display: block;
    width: 100%;
    padding-bottom: 10px;
  }

  nav {
    width: 100%;
  }
}

/*
narrow display: collapse the header (don't show the menu items)
instead, display a burger menu.
*/
@media (max-width: 500px) {
  header {
    height: auto;
    display: flex;
    align-items: center;
    padding: 1rem 0;
  }

  header .blog-name {
    display: inline-block;
    width: 70%;
  }

  nav {
    display: inline-block;
    width: 27%;
  }

  nav ul,
  nav:active ul {
    display: none;
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    right: 1rem;
    top: 4rem;
    width: calc(100vw - 2rem);
    max-width: 300px;
    border-radius: 0.75rem;
    z-index: 1000;
    padding: 1rem 0;
  }

  nav li {
    text-align: left;
    display: block;
    padding: 0;
    margin: 0;
  }

  nav li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    background: none;
    border-radius: 0;
    margin: 0;
    font-weight: 500;
    transition: background-color 0.2s ease;
  }

  header li a:hover {
    background-color: #f9fafb;
    color: var(--accent-primary);
    transform: none;
  }

  nav:hover ul {
    display: block;
  }

  #menu-icon {
    display: inline-block;
    margin-right: 10px;
    margin-top: 5px;
    cursor: pointer;
    padding: 0.5rem;
  }
}

table {
  line-height: 1.5;
  margin: 2rem auto;
  border-collapse: collapse;
  text-align: center;
  width: 100%;
  max-width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

tr:first-of-type {
  background: #f8fafc;
}

tr:first-of-type > th {
  text-align: center;
  font-weight: 600;
  color: var(--text-primary);
}

tr,
th,
td {
  padding: 1rem;
  border: 1px solid var(--border-color);
}

table tbody tr:nth-child(even) {
  background: #fafafa;
}

table tbody tr:hover {
  background: #f3f4f6;
}

table tbody tr td {
  border: 1px solid var(--border-color);
}

/* ==================================================================
    Podcast episodes - Modern Design
================================================================== */

.podcast-grid {
    display: grid;
    grid-template-columns: minmax(180px, auto) 1fr;
    gap: 1rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.podcast-grid > div {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.podcast-grid .date {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.podcast-grid .title {
    font-size: 1.1rem;
    line-height: 1.6;
}

.podcast-grid .title a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.podcast-grid .title a:hover {
    color: #2563eb;
}

.podcast-grid > div:hover {
    background-color: #fafafa;
    border-radius: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (max-width: 600px) {
    .podcast-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .podcast-grid > div {
        padding: 1.25rem 0;
    }
    
    .date, .title {
        border-bottom: none;
    }
    
    .title {
        padding-bottom: 1rem;
        border-bottom: 1px solid #f3f4f6;
    }
}

/* ==================================================================
    Modern Audio Player and Content Enhancements
================================================================== */

audio {
  width: 100%;
  margin: 2rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Tags styling */
.tag {
  display: inline-block;
  background-color: #f3f4f6;
  color: #374151;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0.25rem 0.25rem 0.25rem 0;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tag:hover {
  background-color: #e5e7eb;
  color: #111827;
  transform: translateY(-1px);
}

.tag a {
  color: inherit;
  text-decoration: none;
}

.separator {
  color: #d1d5db;
  margin: 0 0.5rem;
  font-size: 0.875rem;
}

/* Modern button styling */
.btn-primary {
  background-color: var(--accent-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ==================================================================
    Episode Metadata Styling
================================================================== */

.episode-metadata {
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metadata-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.metadata-label {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 80px;
  flex-shrink: 0;
}

.metadata-value {
  color: var(--text-primary);
  font-weight: 500;
}

.metadata-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.metadata-tags .tag {
  background-color: #e5e7eb;
  color: #374151;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.metadata-tags .tag:hover {
  background-color: #d1d5db;
  color: #111827;
  transform: translateY(-1px);
}

.metadata-tags .separator {
  display: none;
}

@media (max-width: 600px) {
  .episode-metadata {
    padding: 1rem;
  }
  
  .metadata-item {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .metadata-label {
    min-width: auto;
  }
}

/* ==================================================================
    Tag Episodes Block Styling
================================================================== */

.tag-episodes-container {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.episode-block {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.episode-block:hover {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.episode-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.episode-date {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #f3f4f6;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  white-space: nowrap;
}

.episode-title a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.episode-title a:hover {
  color: var(--accent-primary);
}

.episode-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .tag-episodes-container {
    gap: 1rem;
  }
  
  .episode-block {
    padding: 1rem;
  }
  
  .episode-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }
  
  .episode-title a {
    font-size: 1rem;
  }
  
  .episode-description {
    font-size: 0.875rem;
  }
}

/* ==================================================================
    Landing Page Hero Layout
================================================================== */

.landing-page {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.landing-page img:first-of-type {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  grid-column: 1;
  grid-row: 1 / -1;
}

.landing-page h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.landing-page p:first-of-type {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.landing-page ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.landing-page ul li a {
  display: inline-block;
  background-color: var(--accent-primary);
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.landing-page ul li a:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
  .landing-page {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .landing-page img:first-of-type {
    max-width: 200px;
    margin: 0 auto;
    grid-column: 1;
    grid-row: auto;
  }
  
  .landing-page h1 {
    font-size: 2rem;
  }
  
  .landing-page p:first-of-type {
    font-size: 1.125rem;
  }
  
  .landing-page ul {
    align-items: center;
  }
  
  .landing-page ul li a {
    padding: 0.75rem 1.25rem;
  }
}

/* ==================================================================
    Landing Page Hero Layout (HTML version)
================================================================== */

.landing-hero {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.hero-image {
  width: 250px;
  height: 250px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-image img {
  width: 100% !important; /* Override franklin.css */
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  padding-left: 0 !important; /* Override franklin.css padding */
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-links li {
  flex: 0 0 calc(50% - 0.375rem);
}

.hero-links li a {
  display: block;
  background-color: var(--accent-primary);
  color: white;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(51, 104, 132, 0.2);
}

.hero-links li a:hover {
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(51, 104, 132, 0.3);
}

@media (max-width: 768px) {
  .landing-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-image {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .hero-links {
    justify-content: center;
  }
  
  .hero-links li {
    flex: 0 0 calc(50% - 0.375rem);
  }
  
  .hero-links li a {
    padding: 0.625rem 0.875rem;
    font-size: 0.85rem;
  }
}

/* ==================================================================
    Tag Cloud Styling
================================================================== */

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin: 2rem 0;
  line-height: 1.4;
}

.tag-cloud-item {
  display: inline-flex;
  align-items: baseline;
  transition: all 0.2s ease;
}

.tag-cloud-item:hover {
  transform: translateY(-2px);
}

.tag-cloud-item a {
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  color: var(--accent-primary);
}

.tag-cloud-item:hover a {
  color: var(--accent-hover);
  text-decoration: underline;
}

.tag-count {
  color: var(--text-secondary);
  font-size: 0.8em;
  font-weight: 400;
  margin-left: 0.25rem;
}

/* Tag size classes based on frequency */
.tag-size-1 {
  font-size: 0.85rem;
}

.tag-size-2 {
  font-size: 1rem;
}

.tag-size-3 {
  font-size: 1.25rem;
}

.tag-size-4 {
  font-size: 1.5rem;
}

.tag-size-5 {
  font-size: 1.75rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .tag-cloud {
    gap: 0.75rem 1rem;
    margin: 1.5rem 0;
  }
  
  .tag-size-1 {
    font-size: 0.8rem;
  }
  
  .tag-size-2 {
    font-size: 0.9rem;
  }
  
  .tag-size-3 {
    font-size: 1.1rem;
  }
  
  .tag-size-4 {
    font-size: 1.3rem;
  }
  
  .tag-size-5 {
    font-size: 1.5rem;
  }
}

/* ==================================================================
    YouTube Embed Styling
================================================================== */

.youtube-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin: 2rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.youtube-placeholder {
  background-color: #f8fafc;
  border: 1px dashed var(--border-color);
  border-radius: 0.75rem;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.youtube-placeholder p {
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .youtube-container {
    margin: 1.5rem 0;
    border-radius: 0.5rem;
  }
  
  .youtube-placeholder {
    margin: 1.5rem 0;
    padding: 1.5rem;
    border-radius: 0.5rem;
  }
}

/* ==================================================================
    About Cards Styling
================================================================== */

.cards-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.card-column {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.card-column:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.card-body {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
}

.card-body img {
  width: 160px !important;
  height: 160px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
  border-radius: 1rem !important;
  padding-left: 0 !important;
}

.card-container {
  padding: 0 1.5rem 1.5rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-container h2 {
  margin: 0 0 0.5rem 0 !important;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.card-container h2 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-container h2 a:hover {
  color: var(--accent-primary);
}

.card-title {
  color: var(--accent-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1.25rem;
  background-color: #f8fafc;
  border: 1px solid #e5e7eb;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link:hover {
  background-color: #f3f4f6;
}

.social-link .fa-linkedin {
  color: #0077b5;
}

.social-link:hover .fa-linkedin {
  color: #005885;
}

.social-link .fa-bluesky {
  color: #00bcd4;
}

.social-link:hover .fa-bluesky {
  color: #0097a7;
}

.card-content {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-content p {
  margin: 0 0 1rem 0;
}

.card-content p:last-child {
  margin-bottom: 0;
}

.card-container > p {
  margin: 0;
  display: flex;
  align-items: flex-end;
}

.card-button {
  background-color: var(--accent-primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.card-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.card-container a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .cards-row {
    gap: 1.5rem;
  }
  
  .card-body {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .card-body img {
    width: 120px;
    height: 120px;
  }
  
  .card-container {
    padding: 0 1.5rem 1.5rem 1.5rem;
    text-align: center;
  }
  
  .card-container h2 {
    font-size: 1.25rem;
  }
  
  .card-title {
    font-size: 0.9rem;
  }
}

/* ==================================================================
    Latest Episode Box Styling
================================================================== */

.latest-episode-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  margin: 3rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.latest-episode-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.latest-episode-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f3f4f6;
}

.latest-episode-header h3 {
  margin: 0;
  color: var(--accent-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.latest-episode-header .episode-date {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #f3f4f6;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

.latest-episode-content h4.episode-title {
  margin: 0 0 1rem 0;
  font-size: 1.375rem;
  line-height: 1.4;
}

.latest-episode-content h4.episode-title a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.latest-episode-content h4.episode-title a:hover {
  color: var(--accent-primary);
}

.latest-episode-content .episode-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.latest-episode-content .episode-meta {
  margin-bottom: 1.5rem;
}

.latest-episode-content .duration {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

.episode-player {
  margin: 1.5rem 0;
}

.episode-player audio {
  width: 100%;
  margin: 0;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.episode-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-listen,
.btn-all-episodes {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-listen {
  background-color: var(--accent-primary);
  color: white !important;
  box-shadow: 0 2px 4px rgba(51, 104, 132, 0.2);
}

.btn-listen:hover {
  background-color: var(--accent-hover);
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(51, 104, 132, 0.3);
}

.btn-all-episodes {
  background-color: #f3f4f6;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-all-episodes:hover {
  background-color: #e5e7eb;
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .latest-episode-box {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .latest-episode-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .latest-episode-content h4.episode-title {
    font-size: 1.25rem;
  }
  
  .episode-actions {
    flex-direction: column;
  }
  
  .btn-listen,
  .btn-all-episodes {
    text-align: center;
  }
}

