.cp-podcast-thumb-button {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 10px solid rgba(190, 178, 148, 0.45);
  background: #17130f;
  box-shadow: 0 18px 48px rgba(54, 44, 28, 0.10);
  overflow: hidden;
  cursor: pointer;
}

.cp-podcast-thumb-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.cp-podcast-thumb-button:hover img {
  transform: scale(1.025);
  filter: brightness(0.88);
}

.cp-podcast-play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border: 1px solid rgba(242, 234, 215, 0.72);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(17, 16, 12, 0.72);
  color: #f2c35b;
  font-size: 22px;
  line-height: 1;
  padding-left: 3px;
}

.cp-podcast-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 56px);
}

.cp-podcast-lightbox.is-open {
  display: flex;
}

.cp-podcast-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 7, 0.86);
  backdrop-filter: blur(4px);
}

.cp-podcast-lightbox-panel {
  position: relative;
  width: min(1100px, 100%);
  z-index: 2;
}

.cp-podcast-lightbox-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.cp-podcast-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cp-podcast-lightbox-close {
  position: absolute;
  right: -12px;
  top: -52px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(242, 234, 215, 0.45);
  border-radius: 50%;
  background: rgba(17, 16, 12, 0.8);
  color: #f2c35b;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.cp-lightbox-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .cp-podcast-thumb-button {
    border-width: 7px;
  }

  .cp-podcast-play-button {
    width: 52px;
    height: 52px;
    font-size: 18px;
  }

  .cp-podcast-lightbox-close {
    right: 0;
    top: -48px;
  }
}