.podcast-subscribe {
  padding-top: 0rem;
}
.podcast-bottom-links {
  margin-top: 2rem; font-size: 0.8em;
}
.podcast-description {
  font-family: 'DepartureMono', monospace; text-transform: uppercase; font-size: 22px;
}
.episode-info {text-transform: uppercase;}

.podcast-timestamp {
  appearance: none;
  padding: 0;
  border: 0;
  border-bottom: 1px dotted currentColor;
  border-bottom-color: color-mix(in srgb, currentColor 55%, transparent);
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  line-height: inherit;
  cursor: pointer;
}

.podcast-timestamp:hover {
  border-bottom-style: solid;
}

.podcast-timestamp:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

@keyframes blink {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  .blinking-cursor {
    animation: blink 1s step-end infinite;
  }

/* Кнопки подписки */
.podcast-subscribe-button {
  border-radius: 30px;
  display: -webkit-inline-box;
  background: #ebebeb;
  color: #000000;
  margin: 0px 4px 4px 0px;
}
.podcast-subscribe-button .iconbox {
  width: 25px;
  height: 25px;
  margin: 10px;
}
.podcast-subscribe-button .iconimg {
  width: 25px;
  height: 25px;
}
.podcast-subscribe-button .textbox {
  font-size: 0.8em;
  margin: 10px 15px 10px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Обложка подкаста */
.imginsrt {
  width: 100%;
  height: auto;
}

@media (max-width: 600px) {
  .desktop-image {
    display: none;
  }

  .mobile-image {
    display: block;
  }
}

@media (min-width: 601px) {
  .desktop-image {
    display: block;
  }

  .mobile-image {
    display: none;
  }
}
