<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
.podcast-container {
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.podcast-header {
  margin-bottom: 24px;
}
.podcast-header h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #333;
  margin: 0;
  padding-bottom: 8px;
  position: relative;
}
.podcast-header h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2261cf, rgb(67.755186722, 124.7427385892, 224.244813278));
  border-radius: 3px;
}

.podcast-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.podcast-item {
  display: flex;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 24px;
}
.podcast-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .podcast-item {
    flex-direction: column;
    padding: 20px;
  }
}

.podcast-image {
  width: 140px;
  height: 140px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  flex-shrink: 0;
  position: relative;
  margin: 0 24px 0 0;
}
.podcast-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  border-radius: 12px;
}
@media (max-width: 768px) {
  .podcast-image {
    width: 100%;
    height: 200px;
    margin: 0 0 24px 0;
    border-radius: 12px;
  }
  .podcast-image::after {
    border-radius: 12px;
  }
}

.podcast-content {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 140px;
}

.podcast-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.podcast-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #333;
  line-height: 1.4;
  letter-spacing: -0.2px;
  flex: 1;
  padding-right: 16px;
}

.podcast-date {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}

.podcast-controls {
  display: flex;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 16px;
}

.podcast-play-button {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgb(92.2011952191, 184.2988047809, 95.922310757), #388e3c);
  border: none;
  color: white;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 12px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(76, 175, 80, 0.15), 0 6px 15px -2px rgba(76, 175, 80, 0.12);
  position: relative;
  padding: 0;
  line-height: 1;
}
.podcast-play-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: 10px;
}
.podcast-play-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2), 0 8px 20px -4px rgba(76, 175, 80, 0.15);
}
.podcast-play-button:hover::after {
  opacity: 1;
}
.podcast-play-button:active {
  transform: translateY(1px);
  box-shadow: 0 1px 6px rgba(76, 175, 80, 0.2);
}
.podcast-play-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3), 0 2px 6px rgba(76, 175, 80, 0.15), 0 6px 15px -2px rgba(76, 175, 80, 0.12);
}
.podcast-play-button.error {
  background: linear-gradient(135deg, rgb(243.2061320755, 53.4320754717, 39.4938679245), #d32f2f);
  box-shadow: 0 2px 6px rgba(244, 67, 54, 0.15), 0 6px 15px -2px rgba(244, 67, 54, 0.12);
}
.podcast-play-button.error:hover {
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.2), 0 8px 20px -4px rgba(244, 67, 54, 0.15);
}
.podcast-play-button.error:active {
  box-shadow: 0 1px 6px rgba(244, 67, 54, 0.2);
}

.podcast-duration {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
}
.podcast-duration::before {
  content: "•";
  margin: 0 8px;
  opacity: 0.5;
}

.podcast-description {
  font-size: 15px;
  color: #666;
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.6;
  position: relative;
  padding-bottom: 48px;
}
.podcast-description .description-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 3.2em;
}
.podcast-description .description-full {
  display: none;
}
.podcast-description.expanded {
  margin-bottom: 16px;
}
.podcast-description.expanded .description-text {
  display: none;
}
.podcast-description.expanded .description-full {
  display: block;
}

.podcast-email-link {
  color: #4caf50;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.2s ease;
  border-bottom: 1px dashed rgba(76, 175, 80, 0.4);
}
.podcast-email-link:hover {
  color: #388e3c;
  border-bottom-color: #388e3c;
}
.podcast-email-link:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
  border-radius: 2px;
}
.podcast-email-link::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234caf50'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 4px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.podcast-show-more {
  background: linear-gradient(135deg, rgb(92.2011952191, 184.2988047809, 95.922310757), #4caf50);
  border: none;
  border-radius: 20px;
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  line-height: 1.2;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(76, 175, 80, 0.15), 0 6px 15px -2px rgba(76, 175, 80, 0.12);
  position: absolute;
  bottom: 20px;
  right: 0;
  min-width: 0;
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  z-index: 2;
}
.podcast-show-more::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: 20px;
}
.podcast-show-more:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2), 0 8px 20px -4px rgba(76, 175, 80, 0.15);
}
.podcast-show-more:hover::after {
  opacity: 1;
}
.podcast-show-more:active {
  transform: translateY(1px);
  box-shadow: 0 1px 6px rgba(76, 175, 80, 0.2);
}
.podcast-show-more:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3), 0 2px 6px rgba(76, 175, 80, 0.15), 0 6px 15px -2px rgba(76, 175, 80, 0.12);
}

.podcast-audio {
  display: none;
}

.all-episodes {
  margin-top: 24px;
  text-align: center;
}
.all-episodes .btn-primary {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgb(45.8526970954, 109.5062240664, 220.6473029046), #1a4aa6);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(34, 97, 207, 0.15), 0 6px 15px -2px rgba(34, 97, 207, 0.12);
}
.all-episodes .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 97, 207, 0.2), 0 8px 20px -4px rgba(34, 97, 207, 0.15);
}
.all-episodes .btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 1px 6px rgba(34, 97, 207, 0.2);
}

.no-episodes {
  padding: 40px 20px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  color: #666;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .podcast-item {
    padding: 16px;
  }
  .podcast-image {
    width: 80px;
    height: 80px;
    margin-right: 16px;
  }
  .podcast-title {
    font-size: 16px;
  }
  .podcast-description {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
  .podcast-play-button {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 480px) {
  .podcast-meta {
    flex-direction: column;
  }
  .podcast-date {
    margin-left: 0;
    margin-top: 4px;
    text-align: left;
  }
}

/*# sourceMappingURL=podcast.css.map */
</pre></body></html>