/* PlayerPodcast - Velocidad Cuchara v0.6 */
.playerpodcast-card,
.entry-content .playerpodcast-card {
  width: 100%;
  max-width: 100%;
  margin: 22px 0;
  padding: 0;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
  box-sizing: border-box;
  font-family: "League Spartan", sans-serif !important;
}

.playerpodcast-card *,
.entry-content .playerpodcast-card * {
  box-sizing: border-box;
}

.playerpodcast-content {
  width: 100%;
  min-width: 0;
}

.playerpodcast-box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #fbf7f8 0%, #f6edf0 100%);
  border: 1px solid #eadbe0;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}

.playerpodcast-play {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #c68899;
  color: #fff;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

.playerpodcast-play:hover,
.playerpodcast-play:focus {
  transform: scale(1.03);
  background: #b87588;
  outline: none;
}

.playerpodcast-play-icon {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
}

.playerpodcast-card.is-playing .playerpodcast-play-icon {
  width: 16px;
  height: 20px;
  margin-left: 0;
  border: 0;
  position: relative;
}

.playerpodcast-card.is-playing .playerpodcast-play-icon::before,
.playerpodcast-card.is-playing .playerpodcast-play-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 5px;
  height: 20px;
  background: #fff;
  border-radius: 2px;
}

.playerpodcast-card.is-playing .playerpodcast-play-icon::before { left: 2px; }
.playerpodcast-card.is-playing .playerpodcast-play-icon::after { right: 2px; }

.playerpodcast-player-main {
  flex: 1;
  min-width: 0;
}

.playerpodcast-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.playerpodcast-status {
  color: #7a7074;
  font-family: "League Spartan", sans-serif !important;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 4px;
}

.playerpodcast-player-title {
  color: #2f2a2d;
  font-family: "League Spartan", sans-serif !important;
  font-size: clamp(14px, 1.55vw, 18px);
  line-height: 1.12;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.playerpodcast-time {
  color: #6d6468;
  font-family: "League Spartan", sans-serif !important;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
  padding-top: 12px;
}

.playerpodcast-progress {
  height: 5px;
  width: 100%;
  position: relative;
  border-radius: 999px;
  background: #e5d6dc;
  cursor: pointer;
}

.playerpodcast-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  border-radius: 999px;
  background: #c68899;
}

.playerpodcast-progress-handle {
  position: absolute;
  left: 0%;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  border: 3px solid #c68899;
  box-sizing: border-box;
}

.playerpodcast-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.playerpodcast-link,
.playerpodcast-link:visited,
.entry-content .playerpodcast-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 12px;
  background: #f1e7ea;
  color: #6b5b62 !important;
  border: 1px solid #e2d5da;
  border-radius: 8px;
  font-family: "League Spartan", sans-serif !important;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none !important;
  text-transform: none;
}

.playerpodcast-link:hover,
.playerpodcast-link:focus {
  background: #e9dce1;
  color: #2f292d !important;
  text-decoration: none !important;
}

.playerpodcast-error {
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff3f3;
  border: 1px solid #f1cccc;
  color: #9a2d2d;
}

@media (max-width: 620px) {
  .playerpodcast-card,
  .entry-content .playerpodcast-card {
    margin: 18px 0;
  }

  .playerpodcast-box {
    align-items: flex-start;
    gap: 11px;
    padding: 13px 12px;
    border-radius: 13px;
  }

  .playerpodcast-play {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .playerpodcast-meta-row {
    display: block;
    margin-bottom: 9px;
  }

  .playerpodcast-status {
    font-size: 12px;
  }

  .playerpodcast-player-title {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 1.15;
  }

  .playerpodcast-time {
    padding-top: 5px;
    font-size: 12px;
  }

  .playerpodcast-links {
    justify-content: flex-start;
    gap: 6px;
    margin-top: 9px;
  }

  .playerpodcast-link,
  .playerpodcast-link:visited,
  .entry-content .playerpodcast-link {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .playerpodcast-box {
    display: block;
  }

  .playerpodcast-play {
    margin-bottom: 10px;
  }
}


@media (max-width: 430px) {
  .playerpodcast-links {
    justify-content: flex-start;
  }

  .playerpodcast-link,
  .playerpodcast-link:visited,
  .entry-content .playerpodcast-link {
    min-height: 28px;
    padding: 0 9px;
    font-size: 11px;
  }
}
