

/* Start:/local/templates/RadioVos/components/bitrix/catalog.section/archive_detail/style.css?177745478912924*/
.background_detail {
    font-family: "Etelka Medium Pro", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    /*background: #121212;*/
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
	z-index: auto;
}

.background_detail::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, #1a2a24 0%, #0a0a0c 100%);
    pointer-events: none;
    z-index: -1;
}

.background_detail::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, rgba(159, 202, 111, 0.02) 0px, rgba(159, 202, 111, 0.02) 2px, transparent 2px, transparent 8px);
    pointer-events: none;
    z-index: -1;
}

/* ===== ОСНОВНОЙ КОНТЕЙНЕР ===== */
#podcast-detail {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1 !important;
    padding: 1rem;
}

/* кнопка назад */
#podcast-detail .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c8f08f;
    text-decoration: none;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    border: 1px solid rgba(159, 202, 111, 0.3);
    transition: all 0.3s ease;
}

#podcast-detail .back-link:hover {
    border-color: #faaf40;
    color: #faaf40;
    transform: translateX(-4px);
}

/* хедер подкаста */
#podcast-detail .podcast-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

#podcast-detail .podcast-cover {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a3a33, #1e2a26);
    border: 2px solid rgba(159, 202, 111, 0.3);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.5);
}

#podcast-detail .podcast-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#podcast-detail .podcast-info {
    flex: 1;
}

#podcast-detail .podcast-info h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f4d03f, #faaf40);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}
/* Добавляем в style.css после стилей .play-latest-btn */

#podcast-detail .podcast-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

#podcast-detail .copy-link-btn {
    background: rgba(159, 202, 111, 0.15);
    border: 1px solid rgba(159, 202, 111, 0.4);
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    color: #c8f08f;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
}

#podcast-detail .copy-link-btn:hover {
    background: rgba(159, 202, 111, 0.25);
    border-color: #faaf40;
    color: #faaf40;
    transform: translateY(-2px);
}

#podcast-detail .copy-link-btn.copied {
    background: #9fca6f;
    border-color: #9fca6f;
    color: #121212;
}

/* Анимация для уведомления */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #9fca6f, #7fa856);
    color: #121212;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10000;
    animation: slideIn 0.3s ease forwards;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-notification.hide {
    animation: slideOut 0.3s ease forwards;
}

.copy-notification svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .copy-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        animation: slideIn 0.3s ease forwards;
        text-align: center;
        justify-content: center;
    }
    
    .copy-notification.hide {
        animation: slideOut 0.3s ease forwards;
    }
    
    @keyframes slideIn {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    @keyframes slideOut {
        from {
            transform: translateY(0);
            opacity: 1;
        }
        to {
            transform: translateY(-100%);
            opacity: 0;
        }
    }
}
#podcast-detail .podcast-authors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

#podcast-detail .podcast-authors span {
    background: rgba(159, 202, 111, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #c8f08f;
}

#podcast-detail .play-latest-btn {
    background: linear-gradient(135deg, #9fca6f, #7fa856);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    color: #121212;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 0.9rem;
}

#podcast-detail .play-latest-btn:hover {
    transform: scale(1.02);
    background: linear-gradient(135deg, #b0da7a, #8fc65e);
    box-shadow: 0 4px 12px rgba(159, 202, 111, 0.4);
}

#podcast-detail .play-latest-btn.playing {
    background: linear-gradient(135deg, #faaf40, #f89c22);
    color: #121212;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

#podcast-detail .play-latest-btn.playing .btn-icon {
    animation: pulse 1s ease infinite;
}
#podcast-detail .visually-hidden {
    color: rgb(250, 175, 64);
	position: absolute;
    width: auto;
    height: auto;
    padding: 0;
    margin: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* описание подкаста (статический блок) */
#podcast-detail .about-description {
    background: rgba(26, 28, 31, 0.8);
    border-radius: 24px;
    padding: 1.2rem;
    border: 1px solid rgba(159, 202, 111, 0.2);
    margin-bottom: 2rem;
}

#podcast-detail .description {
    background: rgba(26, 28, 31, 0.8);
    border-radius: 24px;
    padding: 10px 18px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.7;
    color: #e0e0e0;
    transition: all 0.3s ease;
    text-align: justify;
}

#podcast-detail .age-rating {
    display: inline-block;
    background: rgba(250, 175, 64, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    color: #faaf40;
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

/* переключатели выпусков (кнопки рядом) */
#podcast-detail .episodes-toggle {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(159, 202, 111, 0.2);
    padding-bottom: 0.5rem;
}

#podcast-detail .toggle-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: #c8f08f;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    border-radius: 40px;
}

#podcast-detail .toggle-btn.active {
    color: #faaf40;
    background: rgba(250, 175, 64, 0.1);
}

/* контейнеры для списков */
#podcast-detail .episodes-container {
    background: rgba(26, 28, 31, 0.6);
    border-radius: 24px;
    padding: 1.2rem;
    border: 1px solid rgba(159, 202, 111, 0.2);
}

#podcast-detail .episodes-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* карточка эпизода */
#podcast-detail .episode-item {
    background: rgba(26, 28, 31, 0.8);
    border-radius: 16px;
    padding: 0.8rem;
    border: 1px solid rgba(159, 202, 111, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

#podcast-detail .episode-item:hover {
    border-color: rgba(250, 175, 64, 0.4);
    transform: translateX(4px);
}

#podcast-detail .episode-item.active-playing {
    border-color: #faaf40;
    background: rgba(250, 175, 64, 0.1);
    box-shadow: 0 0 12px rgba(250, 175, 64, 0.2);
}

#podcast-detail .episode-item.active-playing .episode-title {
    color: #faaf40;
}

#podcast-detail .episode-cover {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a3a33, #1e2a26);
    position: relative;
}

#podcast-detail .episode-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#podcast-detail .play-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: none;
    color: #faaf40;
    font-size: 18px;
}

#podcast-detail .episode-cover:hover .play-btn {
    opacity: 1;
}

#podcast-detail .episode-item.active-playing .play-btn {
    opacity: 1;
    background: rgba(250, 175, 64, 0.8);
    color: #121212;
}

#podcast-detail .episode-info {
    flex: 2;
    min-width: 0;
    overflow: hidden;
}

#podcast-detail .episode-title {
    font-weight: 600;
    color: #f4d03f;
    margin-bottom: 0.2rem;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#podcast-detail .episode-date {
    font-size: 0.7rem;
    color: #fff;
    white-space: nowrap;
}

#podcast-detail .episode-duration {
    flex-shrink: 0;
    width: 60px;
    font-size: 0.75rem;
    color: #c8f08f;
    background: rgba(159, 202, 111, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-align: center;
    white-space: nowrap;
}

#podcast-detail .episode-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
    justify-content: flex-end;
}

#podcast-detail .download-btn {
    background: transparent;
    border: 1px solid #9fca6f;
    padding: 0.4rem 0.8rem;
    border-radius: 40px;
    color: #c8f08f;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: inherit;
    white-space: nowrap;
    flex-shrink: 0;
}

#podcast-detail .download-btn:hover {
    background: rgba(159, 202, 111, 0.2);
    border-color: #faaf40;
    color: #faaf40;
}

#podcast-detail .download-count {
    font-size: 0.65rem;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 105px;
    text-align: left;
}



/* Skip link (глобальный) */
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    width: auto;
    height: auto;
    padding: 12px 20px;
    margin: 0;
    clip: auto;
    white-space: normal;
    position: fixed;
    top: 0;
    left: 0;
    background: #f89c22;
    color: #000;
    z-index: 9999;
}

button:focus-visible {
    outline: 3px solid #faaf40;
    outline-offset: 3px;
    border-radius: 40px;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (min-width: 576px) {
    #podcast-detail {
        max-width: 540px;
    }
}

@media (max-width: 768px) {
    #podcast-detail .episode-item {
        flex-wrap: wrap;
    }

    #podcast-detail .episode-info {
        flex: 1;
    }

    #podcast-detail .episode-actions {
        width: 100%;
        justify-content: flex-start;
    }


    #podcast-detail .episodes-toggle {
        justify-content: center;
    }
}

@media (min-width: 768px) {
    #podcast-detail {
        max-width: 720px;
        margin: 0 auto;
        padding: 1.5rem;
    }

    #podcast-detail .podcast-cover {
        width: 160px;
        height: 160px;
    }
}

@media (min-width: 992px) {
    #podcast-detail {
        max-width: 960px;
    }

    #podcast-detail .podcast-cover {
        width: 200px;
        height: 200px;
    }
}

@media (min-width: 1200px) {
    #podcast-detail {
        max-width: 1140px;
    }

    #audio-player .progress-bar {
        width: 70%;
    }
}

@media (min-width: 1400px) {
    #podcast-detail {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {
    #podcast-detail {
        max-width: 1500px;
    }
}
/* End */


/* Start:/local/templates/RadioVos/components/bitrix/news.list/page_archive/style.css?177737102015603*/
main {
	margin: 0px !important;
}
@media (min-width: 992px) {
    main {
		margin-top: 0px !important;
    }
}
@media (min-width: 1200px) {
    main {
		margin-top: 0px !important;
    }
}
@media (min-width: 1400px) {
    main {
		margin-top: 0px !important;
    }
}
@media (min-width: 1600px) {
    main {
		margin-top: 0px !important;
    }
}
/* ===== ПЕРЕКЛЮЧАТЕЛИ ВЫПУСКОВ ===== */
.content_audio {
	margin: 0px auto;
	width: 100%;
}
.episodes-toggle {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.toggle-btn {
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #c8f08f;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    border-radius: 40px;
}

.toggle-btn.active {
    color: #faaf40;
    background: rgba(250, 175, 64, 0.1);
}

/* ===== КОНТЕЙНЕРЫ ДЛЯ СПИСКОВ ===== */
.episodes-container {
    background: rgba(26, 28, 31, 0.6);
    border-radius: 24px;
    padding: 1.2rem;
    border: 1px solid rgba(159, 202, 111, 0.2);
}

.episodes-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* ===== КАРТОЧКА ЭПИЗОДА ===== */
.episode-item {
    background: rgba(26, 28, 31, 0.8);
    border-radius: 16px;
    padding: 0.8rem;
    border: 1px solid rgba(159, 202, 111, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.episode-item:hover {
    border-color: rgba(250, 175, 64, 0.4);
    transform: translateX(4px);
}

.episode-item.active-playing {
    border-color: #faaf40;
    background: rgba(250, 175, 64, 0.1);
    box-shadow: 0 0 12px rgba(250, 175, 64, 0.2);
}

.episode-item.active-playing .episode-title {
    color: #faaf40;
}

/* ===== ОБЛОЖКА И КНОПКА ПЛЕЯ ===== */
.episode-cover {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a3a33, #1e2a26);
    position: relative;
}

.episode-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: none;
    color: #faaf40;
    font-size: 18px;
    border-radius: 12px;
}

.episode-cover:hover .play-btn {
    opacity: 1;
}

.episode-item.active-playing .play-btn {
    opacity: 1;
    background: rgba(250, 175, 64, 0.8);
    color: #121212;
}

/* ===== ИНФОРМАЦИЯ О ВЫПУСКЕ ===== */
.episode-info {
    flex: 2;
    min-width: 0;
    overflow: hidden;
}

.episode-title {
    font-weight: 600;
    color: #f4d03f;
    margin-bottom: 0.2rem;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.episode-date {
    font-size: 0.7rem;
    color: #fff;
    white-space: nowrap;
}

.episode-duration {
    flex-shrink: 0;
    width: 60px;
    font-size: 0.75rem;
    color: #c8f08f;
    background: rgba(159, 202, 111, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-align: center;
    white-space: nowrap;
}

/* ===== ДЕЙСТВИЯ С ВЫПУСКОМ ===== */
.episode-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
    justify-content: flex-end;
}

.download-btn {
    background: transparent;
    border: 1px solid #9fca6f;
    padding: 0.4rem 0.8rem;
    border-radius: 40px;
    color: #c8f08f;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: inherit;
    white-space: nowrap;
    flex-shrink: 0;
}

.download-btn:hover {
    background: rgba(159, 202, 111, 0.2);
    border-color: #faaf40;
    color: #faaf40;
}

.download-count {
    font-size: 0.65rem;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 105px;
    text-align: left;
}

/* ===== АУДИОПЛЕЕР С ПЛАВНОЙ АНИМАЦИЕЙ ===== */
.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(145deg, #1a1c1f, #23262b);
    border-top: 2px solid rgba(159, 202, 111, 0.3);
    padding: 0.8rem 1rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
    
    /* Анимация */
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Тень для глубины */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

/* Показываем плеер */
.audio-player.active {
    transform: translateY(0);
}

/* Анимация при закрытии */
.audio-player.closing {
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1);
}

/* Анимация для элементов внутри плеера при появлении */
.audio-player.active .player-controls > * {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

/* Задержки для каждого элемента */
.audio-player.active .player-controls > *:nth-child(1) { animation-delay: 0.05s; }
.audio-player.active .player-controls > *:nth-child(2) { animation-delay: 0.10s; }
.audio-player.active .player-controls > *:nth-child(3) { animation-delay: 0.15s; }
.audio-player.active .player-controls > *:nth-child(4) { animation-delay: 0.20s; }
.audio-player.active .player-controls > *:nth-child(5) { animation-delay: 0.25s; }
.audio-player.active .player-controls > *:nth-child(6) { animation-delay: 0.30s; }
.audio-player.active .player-controls > *:nth-child(7) { animation-delay: 0.35s; }

/* Ключевые кадры анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Индикатор загрузки */
.audio-player.loading .player-play-pause {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.audio-player.loading .player-play-pause::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #faaf40;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Полоска-индикатор вверху плеера (для визуального отклика) */
.audio-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audio-player.active::before {
    opacity: 1;
}

/* ===== КОНТРОЛЛЫ ПЛЕЕРА ===== */
.player-controls {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.player-prev,
.player-next {
    background: transparent;
    border: none;
    color: #c8f08f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.player-prev:hover,
.player-next:hover {
    color: #faaf40;
    transform: scale(1.1);
    background: rgba(159, 202, 111, 0.1);
}

.player-prev:active,
.player-next:active {
    transform: scale(0.95);
}

.player-play-pause {
    background: #faaf40;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.player-play-pause:hover {
    transform: scale(1.05);
    background: #f89c22;
}

.player-play-pause:active {
    transform: scale(0.98);
}

.player-info {
    flex: 1;
    min-width: 150px;
}

.player-title {
    font-weight: 600;
    color: #f4d03f;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-progress {
    /*flex: 2;*/
    min-width: 140px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    transition: height 0.2s ease;
}

.progress-bar:hover {
    height: 6px;
}

.progress-filled {
    height: 100%;
    background: linear-gradient(90deg, #9fca6f, #faaf40);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.progress-filled::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #faaf40;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.progress-bar:hover .progress-filled::after {
    opacity: 1;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #9aa2b0;
    margin-top: 4px;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 12px;
    border-radius: 40px;
    transition: all 0.2s ease;
}

.player-volume:hover {
    background: rgba(0, 0, 0, 0.5);
}

.volume-mute {
    background: transparent;
    border: none;
    color: #c8f08f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: all 0.2s ease;
    border-radius: 50%;
}

.volume-mute:hover {
    color: #faaf40;
    transform: scale(1.1);
}

.volume-mute:active {
    transform: scale(0.95);
}

.volume-slider {
    -webkit-appearance: none;
    width: 80px;
    height: 4px;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    transition: background 0.05s ease;
    background: rgba(255, 255, 255, 0.2);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #faaf40;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #c8f08f;
    transition: transform 0.1s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.volume-slider::-webkit-slider-thumb:active {
    transform: scale(1);
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #faaf40;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #c8f08f;
}

.volume-slider::-moz-range-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.close-player {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #9aa2b0;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-player:hover {
    background: rgba(250, 175, 64, 0.2);
    color: #faaf40;
    transform: rotate(90deg);
}

.close-player:active {
    transform: rotate(90deg) scale(0.95);
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 767px) {
    .episode-item {
        flex-wrap: wrap;
    }

    .episode-info {
        flex: 1;
    }

    .episode-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .player-volume {
        width: 60%;
        justify-content: center;
        margin-top: 8px;
    }

    .episodes-toggle {
        justify-content: center;
    }
    
    /* Адаптация плеера на мобильных */
    .audio-player {
        padding: 0.6rem 0.8rem;
    }
    
    .player-controls {
        gap: 0.5rem;
    }
    
    .player-info {
        min-width: 100px;
    }
    
    .player-progress {
        min-width: 100px;
    }
    
    .player-title {
        font-size: 0.7rem;
    }
    
    .volume-slider {
        width: 100px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .player-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .player-info {
        width: 100%;
        /*order: -1;*/
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .player-progress {
        width: 100%;
        order: 0;
    }
    
    .player-volume {
        order: 1;
    }
    
    .close-player {
        order: 2;
    }
}

/* ===== ФОКУС ДЛЯ ДОСТУПНОСТИ ===== */
.audio-player button:focus-visible {
    outline: 2px solid #faaf40;
    outline-offset: 2px;
    border-radius: 50%;
}

/* Стиль для скрытого статуса (для скринридеров) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    width: auto;
    height: auto;
    padding: 12px 20px;
    margin: 0;
    clip: auto;
    white-space: normal;
    position: fixed;
    top: 0;
    left: 0;
    background: #f89c22;
    color: #000;
    z-index: 9999;
}

button:focus-visible {
    outline: 3px solid #faaf40;
    outline-offset: 3px;
    border-radius: 40px;
}
@media (min-width: 576px) {
    .content_audio {
		max-width: 540px;
	}
}
@media (min-width: 768px) {
    .content_audio {
		max-width: 720px;
	}
	.player-progress {
		flex: 1;
        min-width: 150px;
    }
	.toggle-btn {
		font-size: 1.2rem;
	}
	.episodes-toggle {
		border-bottom: 1px solid rgba(159, 202, 111, 0.2);
	}
}
@media (min-width: 992px) {
    .content_audio {
		max-width: 960px;
	}
}
@media (min-width: 1200px) {
    .content_audio {
		max-width: 1140px;
	}
}
@media (min-width: 1400px) {
    .content_audio {
		max-width: 1320px;
	}
}
@media (min-width: 1600px) {
    .content_audio {
		max-width: 1500px;
	}
}
/* ===== ОПИСАНИЕ ВЫПУСКА ===== */
.episode-description {
    width: 100%;
    font-size: 0.95rem;
    color: #d6d9df;
    line-height: 1.6;
    margin-top: 0.75rem;
    padding: 0.75rem 0.9rem;

    /* Визуал */
    background: linear-gradient(145deg, rgba(159, 202, 111, 0.08), rgba(0, 0, 0, 0.2));
    
    border-radius: 8px;

    /* Тень */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

    /* Анимация появления */
    opacity: 0;
    transform: translateY(5px);
    animation: fadeInDesc 0.4s ease forwards;

    display: block;
    clear: both;
}

/* Плавное появление */
@keyframes fadeInDesc {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Немного форматирования текста */
.episode-description p {
    margin: 0.3rem 0;
}

.episode-description br {
    content: "";
    display: block;
    margin-bottom: 0.3rem;
}

/* Можно выделять ключевые слова */
.episode-description strong {
    color: #9fca6f;
    font-weight: 600;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .episode-description {
        font-size: 0.8rem;
        padding: 0.6rem 0.7rem;
        border-radius: 6px;
    }
}
/* End */
/* /local/templates/RadioVos/components/bitrix/catalog.section/archive_detail/style.css?177745478912924 */
/* /local/templates/RadioVos/components/bitrix/news.list/page_archive/style.css?177737102015603 */
