.block-podcast {
  container-type: inline-size;
  margin: 3rem 0;
}

.block-podcast a {
  text-decoration: none;
}

.block-podcast h2 {
  color: var(--blue-30);
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: .25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.block-podcast .podcast-featured {
  margin-bottom: 3rem;
}
.block-podcast .podcast-intro {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 1.5rem;
}

.block-podcast .podcast-episode--content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
}
.block-podcast .podcast-episode--cover-art img {
  max-width: 100%;
  height: auto;
}
.block-podcast .podcast-date {
  color: var(--gray-70);
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: .75rem;
  text-transform: uppercase;
}
.block-podcast h3 {
  margin: 0;
  margin-bottom: .75rem;
}
.block-podcast h3 a {
  color: var(--body-color);
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .25s ease-out;
}
.block-podcast h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--blue-30);
  color: var(--blue-30);
}

.block-podcast .podcast-excerpt {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.block-podcast .soundcloud {
  background: var(--gray-20);
  margin-top: 1.5rem;
  padding: 1rem;
  padding-bottom: .75rem;
}
.block-podcast .soundcloud div {
  display: none;
}

.block-podcast .podcast-recent-header {
  display: flex;
  gap: 1rem;
  margin: 0;
}

.block-podcast .podcast-recent-header h3 {
  color: var(--body-color);
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.block-podcast .view-link {
  color: var(--gray-70);
  display: block;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.block-podcast .podcast-recent-episode-list {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.block-podcast .podcast-recent-episode {
  border-bottom: 1px solid var(--gray-30);
  margin-bottom: 0;
  padding-bottom: 1.5rem;
}
.block-podcast .podcast-recent-episode a {
  text-decoration: none;
}
.block-podcast .podcast-recent-episode a:hover h4 {
  color: var(--blue-30);
  text-decoration-color: var(--blue-30);
}

.block-podcast .podcast-recent-episode .podcast-date {
  color: var(--gray-70);
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: .25rem;
  text-transform: uppercase;
}
.block-podcast .podcast-recent-episode h4 {
  color: var(--body-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .25s ease-out;
}

@container (min-width: 500px) {
  .block-podcast .podcast-recent-episode-list {
    grid-template-columns: 1fr 1fr;
  }
  .block-podcast .podcast-recent-episode {
    border: none;
  }
}

@container (min-width: 900px) {
  .block-podcast .podcast-inner {
    display: grid;
    gap: 3rem;
    grid-template-columns: 2fr 1fr;
  }
  .block-podcast .podcast-recent-episode-list {
    grid-template-columns: 1fr;
  }
  .block-podcast .podcast-recent-episode {
    border-bottom: 1px solid var(--gray-30);
    margin-bottom: 0;
    padding-bottom: 1.5rem;
  }
}

/* Prevent Clicks in the Editor */
.editor-styles-wrapper .block-podcast a {
  pointer-events: none;
  cursor: default;
}

.editor-styles-wrapper .block-podcast h2 {
  color: var(--blue-30);
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: .25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.editor-styles-wrapper .block-podcast h3 {
  margin: 0 0 .75rem;
  line-height: 1.2;
}

.editor-styles-wrapper .block-podcast h3 a {
  color: var(--body-color);
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .25s ease-out;
  display: block;
}

