#podcasts-box-content {
  display: none;
  max-width: 1100px;
  margin: auto;
  padding: 20px 8px;
}

.podcasts-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-bottom: 20px;
}

.podcasts-heading h4 {
  margin: 0 0 10px;
  padding-top: 0;
}

.podcasts-heading p,
.podcasts-help {
  margin: 0;
  color: #52646a;
  font-size: 14px;
  line-height: 1.7;
}

.podcasts-heading > a {
  color: #0b4852;
  font-size: 14px;
  font-weight: 600;
}

.podcasts-heading > a:focus-visible {
  outline: 3px solid #237a89;
  outline-offset: 4px;
}

.podcasts-player {
  overflow: hidden;
  border: 1px solid #dbe6e7;
  border-radius: 12px;
  background: #102b31;
}

.podcasts-player iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 200px;
  border: 0;
}

.podcasts-help {
  margin-top: 14px;
}

.podcasts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.podcast-card {
  display: grid;
  grid-template-columns: minmax(240px, 36%) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid #dbe6e7;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 20px -12px #0b485240;
}

.podcast-card-button,
.podcast-card-title-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #173b42;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.podcast-card-body { min-width: 0; }
.podcast-card-body h5 { margin: 0 0 12px; }

.podcast-card-preview {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #dfeceb;
  overflow: hidden;
  border-radius: 8px;
}

.podcast-card-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-card-play {
  position: absolute;
  display: grid;
  place-items: center;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  padding-left: 3px;
  border: 1px solid #ffffffb3;
  border-radius: 50%;
  background: #0b4852e6;
  color: #fff;
  font-size: 18px;
}

.podcast-card-button:hover .podcast-card-play { background: #073740; }
.podcast-card-title-button:hover .podcast-card-title { text-decoration: underline; }
.podcast-card-title {
  display: block;
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.podcast-card-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0 0 16px;
  color: #52646a;
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.podcast-card-link {
  display: inline-block;
  color: #0b4852;
  font-size: 13px;
  font-weight: 600;
}

.podcast-card-button:focus-visible { outline: 3px solid #237a89; outline-offset: -3px; }
.podcast-card-title-button:focus-visible,
.podcast-card-link:focus-visible,
#podcasts-close:focus-visible,
#podcasts-retry:focus-visible { outline: 3px solid #237a89; outline-offset: 3px; }
.podcasts-viewer { margin-bottom: 24px; }
.podcasts-viewer-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.podcasts-viewer-heading h5 { margin: 0; font-size: 18px; line-height: 1.5; }
#podcasts-close,
#podcasts-retry { padding: 8px 12px; border: 1px solid #bad0d3; border-radius: 6px; background: #fff; color: #0b4852; font: inherit; font-size: 13px; }
#podcasts-close { flex-shrink: 0; }
#podcasts-retry { margin-top: 12px; }

@media (max-width: 800px) {
  .podcast-card { grid-template-columns: minmax(170px, 36%) minmax(0, 1fr); gap: 20px; padding: 16px; }
  .podcast-card-title { font-size: 18px; }
}
@media (max-width: 600px) {
  .podcast-card { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .podcasts-viewer-heading { align-items: start; flex-direction: column; }
}
