.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;}

@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;
  }
}
