:root {
  --pp-bg: #ffffff;
  --pp-accent: #003375;
  --pp-track: #e9ecef;
  --pp-text: #212529;
  --pp-muted: #6c757d;
  --pp-radius: 16px;
  --pp-hero-height: 42vh;
}

.bootstrap-container.podcast.single-podcast .podcast-hero {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: var(--pp-hero-height);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bootstrap-container.podcast.single-podcast .podcast-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
}
.bootstrap-container.podcast.single-podcast .podcast-hero__content {
  margin: 0 auto 1rem;
  padding: 0;
}
.bootstrap-container.podcast.single-podcast .podcast-hero__title {
  color: #003375;
  font-size: 30px !important;
  font-weight: 800;
  margin: 0;
  text-wrap: pretty;
}
.bootstrap-container.podcast.single-podcast .podcast-hero__subtitle {
  color: var(--pp-text);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  margin: 0.5rem 0 1.25rem 0;
  text-wrap: pretty;
  line-height: 30px;
}
@media (min-width: 768px) {
  .bootstrap-container.podcast.single-podcast .podcast-content {
    max-width: 570px;
  }
}
@media (min-width: 1200px) {
  .bootstrap-container.podcast.single-podcast .podcast-content {
    max-width: 600px;
  }
}
@media (min-width: 1400px) {
  .bootstrap-container.podcast.single-podcast .podcast-content {
    max-width: 640px;
  }
}
.bootstrap-container.podcast.single-podcast .podcast-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--pp-text);
  margin: 0 0 2.5rem;
  text-align: justify;
}
.bootstrap-container.podcast.single-podcast .podcast-speakers__heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pp-text);
  margin: 0 0 1.25rem;
}
.bootstrap-container.podcast.single-podcast .podcast-speakers__list {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bootstrap-container.podcast.single-podcast .podcast-speaker {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bootstrap-container.podcast.single-podcast .podcast-speaker__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}
.bootstrap-container.podcast.single-podcast .podcast-speaker__meta {
  display: flex;
  flex-direction: column;
}
.bootstrap-container.podcast.single-podcast .podcast-speaker__name {
  font-size: 1rem;
  font-weight: 700;
  color: #003375;
}
.bootstrap-container.podcast.single-podcast .podcast-speaker__title {
  font-size: 0.875rem;
  color: #E30613;
}
.bootstrap-container.podcast.single-podcast {
  /*
   * Stage holds the player and pulls it upward so the TOP half overlaps the
   * banner and the BOTTOM half sits below it. The negative margin equals half
   * the player's height (approximated; player stays horizontally centered).
   */
}
.bootstrap-container.podcast.single-podcast .podcast-stage {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0 1rem 2rem;
  margin-top: calc(-1 * var(--pp-player-half, 160px));
}
.bootstrap-container.podcast.single-podcast .podcast-player {
  position: relative;
  z-index: 3;
  width: 100%;
  background: var(--pp-bg);
  border: 1px solid #e9ecef;
  border-radius: var(--pp-radius);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .bootstrap-container.podcast.single-podcast .podcast-player {
    max-width: 570px;
  }
}
@media (min-width: 1200px) {
  .bootstrap-container.podcast.single-podcast .podcast-player {
    max-width: 600px;
  }
}
@media (min-width: 1400px) {
  .bootstrap-container.podcast.single-podcast .podcast-player {
    max-width: 640px;
  }
}
.bootstrap-container.podcast.single-podcast .podcast-player__media {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.bootstrap-container.podcast.single-podcast .podcast-player__thumb {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
  flex: 0 0 auto;
}
.bootstrap-container.podcast.single-podcast .podcast-player__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--pp-accent);
  text-wrap: pretty;
}
.bootstrap-container.podcast.single-podcast .podcast-player__desc {
  font-size: 0.9rem;
  color: var(--pp-muted);
  margin: 0;
  line-height: 1.45;
  text-wrap: pretty;
}
.bootstrap-container.podcast.single-podcast .podcast-player__controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.bootstrap-container.podcast.single-podcast .podcast-player__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: none;
  border-radius: 50%;
  background: var(--pp-accent);
  color: #fff;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}
.bootstrap-container.podcast.single-podcast .podcast-player__btn:hover {
  background: #0b5ed7;
}
.bootstrap-container.podcast.single-podcast .podcast-player__btn:active {
  transform: scale(0.94);
}
.bootstrap-container.podcast.single-podcast .podcast-player__btn:focus-visible {
  outline: 3px solid rgba(13, 110, 253, 0.4);
  outline-offset: 2px;
}
.bootstrap-container.podcast.single-podcast .podcast-player__btn--sm {
  width: 36px;
  height: 36px;
  background: transparent;
  color: var(--pp-muted);
}
.bootstrap-container.podcast.single-podcast .podcast-player__btn--sm:hover {
  background: var(--pp-track);
  color: var(--pp-text);
}
.bootstrap-container.podcast.single-podcast .podcast-player__timeline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1 1 auto;
  min-width: 0;
}
.bootstrap-container.podcast.single-podcast .podcast-player__time {
  font-size: 0.8rem;
  color: var(--pp-muted);
  font-variant-numeric: tabular-nums;
  flex: 0 0 auto;
  min-width: 2.6em;
  text-align: center;
}
.bootstrap-container.podcast.single-podcast .podcast-player__progress {
  position: relative;
  flex: 1 1 auto;
  height: 6px;
  border-radius: 999px;
  background: var(--pp-track);
  cursor: pointer;
}
.bootstrap-container.podcast.single-podcast .podcast-player__progress:focus-visible {
  outline: 3px solid rgba(13, 110, 253, 0.4);
  outline-offset: 4px;
}
.bootstrap-container.podcast.single-podcast .podcast-player__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: var(--pp-accent);
}
.bootstrap-container.podcast.single-podcast .podcast-player__progress-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--pp-accent);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.12s ease;
}
.bootstrap-container.podcast.single-podcast .podcast-player__progress:hover .podcast-player__progress-handle, .bootstrap-container.podcast.single-podcast .podcast-player__progress:focus-visible .podcast-player__progress-handle {
  opacity: 1;
}
.bootstrap-container.podcast.single-podcast .podcast-player__volume {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
}
.bootstrap-container.podcast.single-podcast .podcast-player__volume-slider {
  width: 80px;
  accent-color: var(--pp-accent);
  cursor: pointer;
}
.bootstrap-container.podcast.single-podcast .podcast-player__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f3f5;
}
.bootstrap-container.podcast.single-podcast .podcast-player__action-wrap {
  position: relative;
}
.bootstrap-container.podcast.single-podcast .podcast-player__action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pp-accent);
  text-decoration: none;
  background: var(--pp-track);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}
.bootstrap-container.podcast.single-podcast .podcast-player__action:hover {
  background: #dee2e6;
  color: var(--pp-accent);
}
.bootstrap-container.podcast.single-podcast .podcast-player__action:focus-visible {
  outline: 3px solid rgba(13, 110, 253, 0.4);
  outline-offset: 2px;
}
.bootstrap-container.podcast.single-podcast .podcast-player__action[aria-expanded=true] {
  background: var(--pp-accent);
  color: #fff;
}
.bootstrap-container.podcast.single-podcast .podcast-player__action[aria-expanded=true] svg path {
  fill: #fff;
}
.bootstrap-container.podcast.single-podcast .podcast-player__popover {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  z-index: 20;
  min-width: 180px;
  padding: 0.4rem;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.bootstrap-container.podcast.single-podcast .podcast-player__popover[hidden] {
  display: none;
}
.bootstrap-container.podcast.single-podcast .podcast-player__share-link {
  display: block;
  width: 100%;
  padding: 0.5rem 0.65rem;
  font-size: 0.85rem;
  text-align: left;
  color: var(--pp-text);
  text-decoration: none;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.bootstrap-container.podcast.single-podcast .podcast-player__share-link:hover {
  background: var(--pp-track);
}
.bootstrap-container.podcast.single-podcast .podcast-player__share-link:focus-visible {
  outline: 2px solid rgba(13, 110, 253, 0.45);
  outline-offset: -2px;
}
@media (max-width: 575.98px) {
  .bootstrap-container.podcast.single-podcast .podcast-player__controls {
    flex-wrap: wrap;
  }
  .bootstrap-container.podcast.single-podcast .podcast-player__timeline {
    order: 3;
    flex: 1 1 100%;
    margin-top: 0.5rem;
  }
  .bootstrap-container.podcast.single-podcast .podcast-player__volume-slider {
    width: 64px;
  }
}
.bootstrap-container .related-resources a {
  text-decoration: none;
}
.bootstrap-container .related-resources .related-resources__heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pp-text);
  margin: 0 0 1.25rem;
}
.bootstrap-container .related-resources .card img {
  width: auto;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.bootstrap-container .related-resources .card .card-body {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: rgb(3, 72, 162);
  background: linear-gradient(180deg, rgb(3, 72, 162) 0%, rgb(0, 26, 59) 100%);
}
.bootstrap-container .related-resources .card .card-body .card-title {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: calc(1.3rem + 0.6vw);
  font-weight: 700;
  color: #fff;
  text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.7);
}
.bootstrap-container .related-resources .card .card-body .card-text {
  font-size: 0.96rem;
  line-height: 1.25rem;
  color: #fff;
  text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.7);
  text-wrap: pretty;
}

/*
 * Transcript offcanvas. Bootstrap renders the panel + backdrop at <body> level,
 * outside the jailed .bootstrap-container styles, so define them here.
 */
#transcriptPanel {
  position: fixed;
  top: 114px;
  bottom: 0;
  right: 0;
  height: calc(100vh - 114px);
  z-index: 1045;
  width: 400px;
  max-width: 100%;
  background: var(--pp-bg, #fff);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease-in-out, visibility 0s linear 0.3s;
}
#transcriptPanel.showing, #transcriptPanel.show {
  transform: none;
  visibility: visible;
  transition: transform 0.3s ease-in-out, visibility 0s linear 0s;
}
#transcriptPanel .offcanvas-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
}
#transcriptPanel .offcanvas-header .offcanvas-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pp-text, #212529);
}
#transcriptPanel .offcanvas-body {
  flex: 1 1 auto;
  height: calc(88vh - 114px - 4rem);
  padding: 1.25rem;
  overflow-y: auto !important;
}
#transcriptPanel .offcanvas-body .form-heading > h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #003375;
}
#transcriptPanel .offcanvas-body > .transcript > p {
  padding-block-end: 1rem;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.96rem;
}
#transcriptPanel .offcanvas-body > .transcript > p > strong {
  font-weight: 600;
  font-size: 1rem;
}
#transcriptPanel .offcanvas-footer {
  flex: 0 0 auto;
  padding: 1rem 1.25rem;
  border: 0;
}
#transcriptPanel .offcanvas-footer .podcast-transcript__download {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  background: #E30613;
  border: none;
  border-radius: 8px;
}

.podcast-transcript__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 160px;
  color: #555;
  font-size: 0.95rem;
}

.podcast-transcript__spinner {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 3px solid rgba(0, 0, 0, 0.12);
  border-top-color: var(--pp-accent, #0d6efd);
  border-radius: 50%;
  animation: podcastTranscriptSpin 0.7s linear infinite;
}

@keyframes podcastTranscriptSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .podcast-transcript__spinner {
    animation-duration: 1.6s;
  }
}
.podcast-transcript__error {
  padding: 1rem 0;
  color: #b02a37;
  font-size: 0.95rem;
}

.offcanvas-backdrop + .offcanvas-backdrop {
  display: none;
}

.podcast-transcript-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1044;
  background: rgba(0, 0, 0, 0.5);
}
.podcast-transcript-backdrop[hidden] {
  display: none;
}

.podcast-transcript__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: none;
  border-radius: 50%;
  background: var(--pp-track, #e9ecef);
  color: var(--pp-text, #212529);
  cursor: pointer;
  transition: background 0.12s ease;
}
.podcast-transcript__close:hover {
  background: #dee2e6;
}
.podcast-transcript__close:focus-visible {
  outline: 3px solid rgba(13, 110, 253, 0.4);
  outline-offset: 2px;
}

/*# sourceMappingURL=single-podcast.css.map */
