/* Player apenas em tablet (excluindo mobile) */
@media (min-width: 768px) and (max-width: 1199px) {
  .podcast-topbar-player {
    left: var(--sidebar-width-tablet);
    width: calc(100% - var(--sidebar-width-tablet));
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .podcasts-sidebar-left {
    width: var(--sidebar-width-tablet);
    padding: 12px;
  }

  .podcasts-main-content {
    margin-left: var(--sidebar-width-tablet);
    margin-top: var(--topbar-height-tablet);
    width: calc(100% - var(--sidebar-width-tablet));
  }

  .featured-banner {
    min-height: 500px;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: local;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 50px 60px;
    margin-bottom: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background-color: var(--pod-bg-dark);
    margin-left: 0;
  }

  .featured-content {
    padding-left: 0;
    padding-right: 30px;
    gap: 20px;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin-right: auto;
  }

  .featured-text {
    min-width: 0;
    flex: 1 1 60%;
    max-width: 100%;
    padding-right: 20px;
  }

  .featured-image {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    margin-left: 0;
  }

  .featured-title {
    font-size: 2.4rem;
  }

  .featured-label {
    font-size: 0.6rem;
    padding: 5px 10px;
    gap: 5px;
    width: 190px;
  }

  .podcasts-section {
    padding-left: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .featured-banner {
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: local;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px 40px 60px 40px;
    margin-left: 0;
  }

  .featured-content {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 800px;
    margin-right: auto;
  }

  .featured-text {
    flex: 1 1 60%;
    min-width: 0;
    padding-right: 20px;
  }

  .featured-image {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    margin-left: 0;
  }

  .featured-title {
    font-size: 2.2rem;
  }

  .featured-label {
    font-size: 0.58rem;
    padding: 5px 10px;
    gap: 5px;
  }

  .podcasts-section {
    padding: 32px 24px;
  }

  .podcasts-grid {
    gap: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1119px) {
  .volume-slider {
    display: none;
  }

  .volume-control {
    display: flex;
    min-width: auto;
    gap: 0;
    align-items: center;
    justify-content: center;
  }

  .volume-control i {
    font-size: 1.1rem;
    padding: 8px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .podcasts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .card-image {
    aspect-ratio: 16 / 9;
  }

  .featured-banner {
    min-height: 420px;
    padding: 130px 16px 130px 46px;
    align-items: center;
    justify-content: center;
  }

  .featured-content {
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin-right: auto;
  }

  .featured-text {
    flex: 1 1 60%;
    padding-right: 16px;
    text-align: left;
    align-items: flex-start;
  }

  .featured-image {
    width: 130px;
    height: 130px;
    margin-left: 0;
  }

  .featured-title {
    font-size: 2rem;
    text-align: left;
  }

  .featured-subtitle {
    text-align: left;
  }

  .featured-desc {
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .featured-label {
    font-size: 0.58rem;
    padding: 5px 10px;
    gap: 5px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .player-center {
    max-width: 500px;
  }

  .player-content-section {
    max-width: 350px;
    padding: 0 12px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .player-progress-bar::-webkit-slider-thumb {
    width: 14px;
    height: 14px;
  }

  .player-progress-bar::-moz-range-thumb {
    width: 14px;
    height: 14px;
  }

  .player-episode-header {
    font-size: 10px;
  }

  .player-episode-title {
    font-size: 12px;
  }

  .player-podcast-info {
    font-size: 10px;
  }

  .player-time-display {
    font-size: 0.6rem;
  }
}