:root {
    --lecture-color: #232323;
    --headline-color: #000000;
    --blocktitle-color: #000000;

    --action-btn-bg: #000000;
    --action-btn-text: #ffffff;
    --action-btn-border: #000000;

    --action-btn-hover-bg: #333333;
    --action-btn-hover-text: #ffffff;
    --action-btn-hover-border: #666666;

    --category-pill-bg: #ffffff;
    --category-pill-text: #000000;
    --category-pill-border: #000000;

    --category-pill-hover-bg: #ffffff;
    --category-pill-hover-text: #000000;
    --category-pill-hover-border: #000000;

    --category-pill-active-bg: #ef0000;
    --category-pill-active-text: #ffffff;
    --category-pill-active-border: #ef0000;

    --pagination-btn-bg: #ffffff;
    --pagination-btn-text: #000000;
    --pagination-btn-border: #000000;

    --pagination-btn-active-bg: #ef0000;
    --pagination-btn-active-text: #ffffff;
    --pagination-btn-active-border: #ef0000;

    --playerBar-bg: #101010;
    --playerBar-height: 64px;
    --playerBar-playBtn: #ffffff;
    --playerBar-song-title: #ffffff;
    --playerBar-artist-name: #8f8f8f;
    --playerBar-icons: #ffffff;
    --playerBar-vol-bg: #666666;
    --playerBar-vol-thumb: #ffffff;
    --playerBar-vol-fill: #ffffff;

    --onAir-bg: #1f1f1f;
    --onAir-song-title: #ffffff;
    --onAir-artist-name: #8f8f8f;

    --onAir-btn-bg: #3f3f3f;
    --onAir-btn-text: #ffffff;
    --onAir-btn-dot: #ff0000;

    --onAir-menu-bg: #101010;
    --onAir-menu-text: #8f8f8f;
    --onAir-menu-active-text: #ffffff;
    --onAir-menu-active-border: #ef0000;

    --onAir-played-bg: #f2f2f2;
    --onAir-played-song-info: #232323;
    --onAir-played-album-name: #8f8f8f;
    --onAir-played-date-text: #232323;
    --onAir-played-date-border: #eeeeee;
    --onAir-played-btn-bg: #000000;
    --onAir-played-btn-text: #ffffff;
    --onAir-played-like-text: #d5d5d5;


}

body {
    background-color: var(--page-bg, #fff);
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: var(--lecture-color);
    padding: 0;
    margin: 0;
}

.song-list-s1 .wpr {
    display: flex;
    gap: 25px;
    margin-bottom: 32px;
} 
.song-list-s1 .time-wpr {
    width: 80px;
    position: relative;
    text-align: center;
}
.song-list-s1 .time-wpr::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    border-left: .3rem dotted var(--onAir-played-date-border);
    left: 50%;
    z-index: 2;
}
.song-list-s1.top .time-wpr::before  {
    border-left: 0rem dotted var(--onAir-played-date-border);
}
.song-list-s1 .time {
    background-color: #fff;
    color: var(--lecture-color);
    font-size: 17px;
    font-weight: 700;
    line-height: 17px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding-top: 5px;
    padding-bottom: 8px;
    z-index: 5;
}
.song-list-s1 .data {
    width: 100%;
    background-color: var(--onAir-played-bg);
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
}
.song-list-s1 .metadata-wpr {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.song-list-s1 .title {
    color: var(--onAir-played-song-info);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
}
.song-list-s1 .artist {
    color: var(--onAir-played-song-info);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
.song-list-s1 .album {
    color: var(--onAir-artist-name);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}
.song-list-s1 .artwork {
    min-width: 80px;
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}
.song-list-s1 .btns-wpr {
    display: flex;
    justify-content: end;
    align-items: center;
}
.song-list-s1 .btns {
    margin-right: 20px;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
}
.song-list-s1 .btn-like {
    width: 40px;
    height: 40px;
    color: var(--onAir-played-like-text);
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
}
.song-list-s1 .btn-like:hover {
    background-color: #ddd;
    color: #ef0000;
}
.song-list-s1 .votes-ppBtn {
    width: 42px;
    height: 42px;
    background-color: var(--onAir-played-btn-bg);
    color: var(--onAir-played-btn-text);
    font-size: 20px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(to left, var(--onAir-played-btn-bg) 50%, var(--onAir-played-btn-bg) 50%) right;
    background-size: 200%;
    transition: background-position;
    cursor: pointer;
}

.song-list-s1 .wpr:first-child .time-wpr::before {
    height: 50%;
    bottom: 0;
}
.song-list-s1 .wpr:last-child .time-wpr::before {
    height: 50%;
}


#content {
    margin-top: 80px;
}

.content-margin {
    margin-top: 129px !important;
}


a {
    color: var(--body-color);
    text-decoration: none;
}

a:hover {
    color: var(--body-color);
    text-decoration: underline;
}

.position-relative {
    position: relative;
    z-index: 10;
}

.listen-now-btn {
    font-family: 'Montserrat', sans-serif;
    background-color: rgba(0, 0, 0, .3);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 8px 10px 8px 22px;
    border-radius: 32px;
    text-transform: uppercase;
    border: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.listen-now-btn .arrow {
    width: 28px;
    height: 28px;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    margin-left: 18px;
    border-radius: 50%;
}



.logo-top {
    max-height: 55px;
}

.play::before {
    content: "\e037";
}

.pause::before {
    content: "\e034";
}

.btn-action {
    background-color: var(--action-btn-bg);
    color: var(--action-btn-text) !important;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 9px 48px;
    border-radius: 8px;
}
.btn-action:hover {
    background-color: var(--action-btn-hover-bg);
    color: var(--action-btn-hover-text);
}
.btn-action.dark-transparent {
    border: 1px solid #fff;
}
.btn-action.dark-transparent:hover {
    background-color: #fff;
    color: #000 !important;
}

.tag {
    height: 34px;
    background-color: var(--action-btn-bg);
    color: var(--action-btn-text);
    font-size: 13px;
    font-weight: 500;
    line-height: 34px;
    text-transform: uppercase;
    padding: 0 20px;
}

.tag:hover {
    background-color: var(--action-btn-hover-bg);
    color: var(--action-btn-hover-text);
}

.container {
    max-width: 1220px !important;
}

.filters-overlay-right {
    height: 36px;
    width: 50px;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(255,255,255,1) 100%);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5;
}
.filters-overlay-left {
    height: 36px;
    width: 50px;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(0,0,0,0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
}
.filters-arrow-next,
.filters-arrow-prev {
    width: 24px;
    height: 36px;
    color: #000;
    font-size: 36px;
    line-height: 36px;
    position: absolute;
    top: 0px;
    cursor: pointer;
    z-index: 999;
}
.filters-arrow-next {
    right: 0px;
    padding-left: 2px;
    text-align: right;
}
.filters-arrow-next::before {
    content: "\f105";
}
.filters-arrow-prev {
    left: 0px;
    padding-left: 0px;
    text-align: left;
}
.filters-arrow-prev::before {
    content: "\f104";
}
.filters-arrow-next:hover,
.filters-arrow-prev:hover {
    color: #555;
}
.filters-wpr {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 32px !important;
}
.filters {
    height: 36px;
    position: relative;
    display: flex;
    gap: 15px;
    overflow: hidden !important; 
    white-space: nowrap;
    overflow-x: scroll;
    scroll-behavior: smooth;
}
.filters .item {
    height: 36px !important;
    background-color: var(--category-pill-bg);
    color: var(--category-pill-text);
    font-size: 14px;
    line-height: 34px;
    padding: 0px 16px;
    border: 1px solid;
    border-color: var(--category-pill-border);
    border-radius: 32px;
}


.filters .item:hover {
    color: var(--category-pill-hover-text);
    background-color: var(--category-pill-hover-bg);
    border-color: var(--category-pill-hover-border);
}

.filters .item:hover {
    color: var(--category-pill-hover-text);
    text-decoration: none;
}

.filters .item.active {
    color: var(--category-pill-active-text);
    background-color: var(--category-pill-active-bg);
    border-color: var(--category-pill-active-border);
}









.page-link {
    height: 40px;
    width: 40px;
    background-color: var(--pagination-btn-bg) !important;
    color: var(--pagination-btn-text) !important;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 38px;
    padding: 0 !important;
    border-radius: 8px !important;
    border-color: var(--pagination-btn-border) !important;
    margin: 0 10px;
}

.page-link:hover {
    background-color: var(--pagination-btn-hover-bg) !important;
    color: var(--pagination-btn-hover-text) !important;
    border-color: var(--pagination-btn-hover-border) Im !important;
}

.page-item.active .page-link {
    background-color: var(--pagination-btn-active-bg) !important;
    color: var(--pagination-btn-active-text) !important;
    border-color: var(--pagination-btn-active-border) !important;
}

.page-title {
    padding-top: 80px;
    padding-bottom: 40px;
}
.page-title h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 46px !important;
    font-weight: 700;
    color: var(--headline-color);
    text-align: center;
    margin-bottom: 0;
}
.page-title p {
    font-size: 17px;
    text-align: center;
    margin-top: 5px;
}
.page-title.with-desc {
    padding-bottom: 20px;
}

.pb-15 {
    padding-bottom: 15px;
}


section {
    padding-top: 40px;
}

.section-header {
    padding-bottom: 30px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px !important;
    font-weight: 700;
    color: var(--headline-color);
    text-align: center;
}

section footer {
    padding-top: 10px;
    text-align: center;
}

/* Header & Footer */

.header {
    background-color: var(--header-bg);
}
.header .navbar {
    min-height: 70px !important;
    z-index: 999;
}
.header .navbar .nav-link {
    font-size: 17px !important;
    font-weight: 700 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}
.header .navbar .nav-link,
.header .navbar .nav-link:hover {
    color: var(--header-text);
}

@media (max-width: 767.98px) {
    .header .navbar-collapse.collapse:not(.show) {
        display: none !important;
        height: 0 !important;
        overflow: hidden;
        visibility: hidden;
    }

    .header .navbar-collapse.show {
        display: block;
    }
}

.footer {
    background-color: var(--footer-bg);
    padding: 60px 0;
    margin-top: 0;
}
.footer ul {
    list-style: none;
}
.footer li a,
.footer li a:hover {
    color: var(--footer-text);
}
.footer .apps img {
    max-height: 60px;
    display: block;
    margin-bottom: 5px;
}

.footer .footer-nav {
    padding-top: 30px;
    padding-bottom: 20px;
}

.footer .footer-nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer .footer-nav li {
    font-size: 17px;
    font-weight: 700;
}

.footer .footer-social ul {    
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer .footer-social .link {
    width: 44px;
    height: 44px;
    display: block;
    background-color: var(--footer-social-icon-bg);
    color: var(--footer-social-icon-text);
    font-size: 18px;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    text-decoration: none;
}
.footer .footer-social .link:hover {
    background-color: var(--footer-social-icon-hover-bg);
}
.footer .footer-apps {
    padding-top: 20px;
}
.footer .footer-apps ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer .footer-apps img {
    max-width: 140px;
}
.copyright {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    padding: 20px 0;
    background-color: #fff;
    color: #000;
}
.copyright a {
    color: inherit;
    text-decoration: underline;
}
.copyright a:hover {
    opacity: 0.85;
}

.slider-arrow-next,
.slider-arrow-prev {
    width: 44px;
    height: 44px;    
    background-color: rgba(255, 255, 255, 1);
    color: #000;
    font-size: 42px;
    line-height: 44px;
    position: absolute;
    border-radius: 50%;
    cursor: pointer;    
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.4rem 1rem, rgba(0, 0, 0, 0.1) 0px 0.4rem 0.4rem;
    z-index: 999;    
}

.slider-arrow-next:hover,
.slider-arrow-prev:hover {
    background-color: #fff;
    color: #ef0000;
}
.slider-arrow-next::before,
.slider-arrow-prev::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-style: normal;
    display: block;
    line-height: 44px;
    text-align: center;
}

.slider-arrow-next::before {
    content: "\f054";
}

.slider-arrow-prev::before {
    content: "\f053";
}

.slider-arrow-prev {
    left: -19px;
    padding-left: 0;
}

.slider-arrow-next {
    right: -19px;
    padding-left: 0;
}

.slick-disabled {
    display: none;
  }

.fa-play::before {
    content: "\f04b";
}

.facebook::before {
    content: "\f39e";
}
.twitter::before {
    content: "\f099";
}
.instagram::before {
    content: "\f16d";
}
.youtube::before {
    content: "\f167";
}
.tiktok::before {
    content: "\e07b";
}
.twitch::before {
    content: "\f1e8";
}


/* Body */

.footer-bc {
    background-color: var(--footer-bc-bg);
    padding: 17px;
    margin-top: 50px
}
.footer-bc .breadcrumb {
    margin-bottom: 0 !important;
}
.footer-bc .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--footer-bc-text);
}
.footer-bc .breadcrumb-item.active {
    color: var(--footer-bc-text);;
    font-weight: 700;
}





/* ARTISTS */

.artist-list {
    margin-bottom: 25px;
}
.artist-list img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    transition: all .3s ease;
}
.artist-list:hover img {
    filter: brightness(65%);
    transition: all .3s ease;
}
.artist-list .title {
    background-color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    margin-top: 5px;
}
.artist-list:hover .title {
    text-decoration: underline;
}

.artist-header {
    height: 340px;
    position: relative;
    overflow: hidden;
    margin-top: 102px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.artist-header .bg {
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-size: cover;
    background-position: center top;
    filter: none;
    transform: none;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.artistsPage-headerBg {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.15) 100%);
}

.artist-header .dataWpr {
    height: 100%;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 10;
}

.artist-header .data {
    padding-left: 28px;
}

.artist-header .name {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.artist-header .img {
    width: 220px;
    height: 220px;
    min-width: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.artist-navbar {
    padding: 0;
    background-color: #000;
}
.artist-navbar .wpr {
    max-width: 1180px;
    margin: 0 auto;
}
.artist-navbar .navbar {
    height: 48px;
}
.artist-navbar .navbar .nav-link {
    color: #fff;
    font-size: 15px !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    padding-left: 20px !important;
    padding-right: 20px !important;
    line-height: 26px !important;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}
.artist-navbar .navbar .nav-link.active {
    color: #fff;
    border-top: 3px solid #ef0000;
}
.artist-navbar .navbar .nav-link:hover {
    background-color: #333;
}

.artist-navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
} 
.artist-navbar li {
    color: #fff;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 50px;
    padding: 0 15px;
    text-transform: uppercase;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

.artist-navbar li:hover {
    background-color: #666;
}





/* NEWS */

.news-list {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-list > a {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.news-list-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    flex: 1 1 auto;
}
.news-list .title {
    width: 100%;
    flex: 1 1 auto;
    color: var(--list-item-title, #0f172a);
}
    font-size: 20px;
    font-weight: 900;
}
.news-list:hover .title {
    text-decoration: underline;
}
.news-list .date {
    flex: 0 0 auto;
    width: 100%;
    white-space: nowrap;
    margin-top: 0;
    color: var(--list-item-date, #64748b);
}
.news-list .date {
    font-size: 13px;
    font-weight: 500;
}
.news-list img {
    width: 100%;
    margin-bottom: 10px;
    transition: all .3s ease;
}
.news-list:hover img {
    filter: brightness(65%);
    transition: all .3s ease;
}

.list-item-copy,
.news-list-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.list-item-copy .title,
.list-item-copy .date,
.news-list-copy .title,
.news-list-copy .date {
    width: 100%;
}

.list-item-copy .title,
.news-list-copy .title {
    color: var(--list-item-title, #0f172a);
}

.list-item-copy .date,
.news-list-copy .date {
    color: var(--list-item-date, #64748b);
    flex: 0 0 auto;
    white-space: nowrap;
}

.news-article-page {
    padding-top: 32px;
    color: var(--news-article-text, #232323);
}

.news-article-header {
    margin-bottom: 24px;
    padding-bottom: 0;
}

.news-article-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--news-article-title, #0f172a);
    margin: 0 0 12px;
    text-align: left;
}

.news-article-meta {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--news-article-meta, #64748b);
}

.news-article-layout {
    padding-bottom: 48px;
}

.news-article-lead-image {
    margin: 0 0 28px;
    border-radius: 10px;
    overflow: hidden;
    background: #ececec;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.news-article-lead-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.news-article-body .details {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--news-article-text, #232323);
}

.news-article-body .details > p:first-child {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--news-article-text, #232323);
}

.news-article-sidebar {
    top: 96px;
}

.news-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-sidebar-link {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #e4e4e4;
    text-decoration: none;
    color: inherit;
}

.news-sidebar-link:first-child {
    padding-top: 0;
}

.news-sidebar-link:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-sidebar-link:hover {
    text-decoration: none;
}

.news-sidebar-link:hover .news-sidebar-link-title {
    color: var(--category-pill-active-bg, #ef0000);
}

.news-sidebar-link-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--news-article-sidebar-link, #0f172a);
    margin-bottom: 4px;
}

.news-sidebar-link-date {
    display: block;
    font-size: 0.8125rem;
    color: var(--news-article-sidebar-date, #64748b);
}

.content-hero {
    width: 100%;
    margin: 0 0 32px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    aspect-ratio: 16 / 9;
    max-height: 520px;
    background: linear-gradient(135deg, #ececec 0%, #d8d8d8 100%);
}

.content-hero--bleed {
    width: 100vw;
    max-width: 100vw;
    margin: 0 0 0 calc(50% - 50vw);
    border-radius: 0;
    max-height: min(56vh, 620px);
    aspect-ratio: 21 / 9;
    box-shadow: none;
}

.content-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.article-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.article-gallery-item {
    flex: 0 1 280px;
    max-width: 360px;
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.article-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

@media (max-width: 767px) {
    .article-gallery-item {
        flex: 0 1 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

@media (max-width: 479px) {
    .article-gallery-item {
        flex: 0 1 100%;
        max-width: 320px;
    }
}

.article-page-title {
    padding-top: 32px;
    padding-bottom: 28px;
    text-align: left;
}

.article-page-title h1 {
    text-align: left;
    font-size: 40px !important;
    line-height: 1.15;
    color: var(--news-article-title, #0f172a);
}

.article-page-title p {
    text-align: left;
    color: var(--news-article-meta, #64748b);
}

.article-layout {
    padding-bottom: 48px;
}

.article-sidebar {
    position: sticky;
    top: 110px;
    background: var(--news-article-sidebar-bg, #f7f7f7);
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.article-sidebar-block + .article-sidebar-block {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #e4e4e4;
}

.article-sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--news-article-sidebar-title, #0f172a);
    margin-bottom: 16px;
    line-height: 1.2;
}

.article-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-sidebar-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    text-decoration: none;
}

.article-sidebar-card img {
    width: 96px;
    min-width: 96px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    transition: filter 0.3s ease;
}

.article-sidebar-card-title {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--news-article-sidebar-link, #0f172a);
}

.article-sidebar-card:hover .article-sidebar-card-title {
    text-decoration: underline;
}

.article-sidebar-card:hover img {
    filter: brightness(75%);
}

.news-element .img-wpr,
.event-element .img-wpr {
    width: 100%;
    margin: 0 0 32px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    aspect-ratio: 16 / 9;
    max-height: 520px;
    background: linear-gradient(135deg, #ececec 0%, #d8d8d8 100%);
}

.news-element .img-ctr,
.event-element .img-ctr {
    display: none;
}

.news-element .img,
.news-element .img-wpr > img,
.event-element .img-wpr > img,
.event-element img.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: static;
    left: auto;
    transform: none;
}
.news-element .details {
    color: var(--lecture-color);
    text-align: justify;
}

.news-element.news-article-body .details,
.news-element.news-article-body .details p,
.news-element.news-article-body .details li {
    color: var(--news-article-text, #232323);
}

.event-element.event-article-body .details,
.event-element.event-article-body .details p,
.event-element.event-article-body .details li {
    color: var(--news-article-text, #232323);
}

.event-detail-page .news-article-header h1 {
    color: var(--news-article-title, #0f172a);
}

.event-detail-page .news-article-meta {
    color: var(--news-article-meta, #64748b);
}

.event-detail-page .article-sidebar-card-title {
    color: var(--news-article-sidebar-link, #0f172a);
}
.news-element .readAlso {
    margin-top: 40px;
    max-width: 600px;
}
.news-element .readAlso .read-also {
    font-size: 24px;
    font-weight: 900;
    color: var(--news-article-sidebar-title, var(--headline-color));
    line-height: 1.2;
    margin-bottom: 16px;
}
.news-element .readAlso .ctr {
    display: flex;
}
.news-element .readAlso img {
    width: auto;
    height: 75px;
    margin-right: 12px;
    transition: all .3s ease;
}
.news-element .readAlso .title {
    font-size: 20px;
    font-weight: 900;
    color: var(--headline-color);
}
.news-element .readAlso:hover .title {
    text-decoration: underline;
}
.news-element .readAlso:hover img {
    filter: brightness(65%);
}

.top-news {
    background: var(--featured-bg);
    color: var(--featured-text);
    padding-top: 38px;
    padding-bottom: 30px;
    margin-top: 40px;
    margin-bottom: 0;
}
.top-news .title {
    font-family: 'Montserrat';
    font-size: 34px;
    font-weight: 700;
    color: var(--featured-text);
    text-align: center;
    padding-bottom: 15px;
}
.top-news .item {
    height: 120px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--featured-text);
    padding: 15px 0;
    margin-bottom: 15px;
}
.top-news .number {
    font-size: 80px;
    font-weight: 900;
    line-height: 80px;
    color: var(--category-pill-active-bg);
    text-decoration: none !important;
}
.top-news a .number:hover {
    text-decoration: none !important;
}
.top-news .item .headline {
    font-size: 19px;
    line-height: 22px;
    font-weight: 600;
    color: var(--featured-text);
    text-align: left;
    padding-left: 40px;
}
.top-news a:hover .headline {
    color: var(--featured-text);
    opacity: 0.85;
}

/* VIDEOS*/

.video-list {
    text-align: left;
    position: relative;
    margin-bottom: 35px;
}
.video-list > a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.video-list .title {
    color: var(--list-item-title, #0f172a);
    font-size: 20px;
    font-weight: 900;
}
.video-list .date {
    font-size: 13px;
    color: var(--list-item-date, #64748b);
    font-weight: 700;
}
.video-list img {
    width: 100%;
    margin-bottom: 10px;
    transition: all .3s ease;
}
.video-list:hover img {
    filter: brightness(65%);
    transition: all .3s ease;
}
.video-list:hover .bg {
    filter: brightness(65%);
    transition: all .3s ease;
}
.video-list .play {
    width: 38px;
    height: 38px;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    line-height: 38px;
    text-align: center;
    position: absolute;
    top: 168px;
    left: 16px;
    border-radius: 50%;
    opacity: 0;
}
.video-list .playAlt {
    width: 48px;
    height: 48px;
    color: #fff;
    font-size: 48px;
    text-align: center;
    position: absolute;
    top: 93px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}
.video-list .play::before {
    content: "\f04b";
}
.video-list:hover .play {
    opacity: 1;
    transition: all .3s ease;
}

.more-videos-bg {
    background-color: #4d4d4d;
}
.more-videos-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.more-videos {
    height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0px 20px;
}
.more-videos .video {
    display: flex;
    padding-bottom: 16px;
    border-bottom: 1px solid #fff;
    margin-bottom: 16px;
}
.more-videos .video img {
    width: 132px;
    height: 74px;
    transition: all .3;
}
.more-videos .video:hover img {
    filter: brightness(65%);
}
.more-videos .title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding-left: 12px;
}
.more-videos .video:hover .title {
    text-decoration: underline;
}
.more-videos::-webkit-scrollbar {
    width: 5px;
}
.more-videos::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0px grey;
    border-radius: 10px;
}
.more-videos::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 10px;
}
.more-videos::-webkit-scrollbar-thumb:hover {
    background: #808080;
}

/* ALBUMS */

.album-list {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.album-list > a {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.album-list .title {
    font-size: 20px;
    font-weight: 900;
    color: var(--list-item-title, #0f172a);
}
.album-list .date {
    font-size: 15px;
    font-weight: 500;
    color: var(--list-item-date, #64748b);
    margin-bottom: 1px;
}
.album-list img {
    width: 100%;
    margin-bottom: 10px;
    transition: all .3s;
}
.album-list:hover img {
    filter: brightness(65%);
}

.album-element {
    width: 100%;
    display: flex;
    justify-content: start;
}
.album-element .cover {
    width: 250px;
    min-width: 250px;
}
.album-element img {
    width: 100%;
}
.album-element .wpr {
    width: 100%;
}
.album-element .details {
    height: 250px;
    padding-left: 20px;
    padding-top: 10px;
}
.album-element .title {
    color: var(--headline-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
}
.album-element .date {
    font-size: 20px;
    color: var(--lecture-color);
}
.album-element .desc {
    margin-top: 10px;
    color: var(--lecture-color);
}
.album-element .songs {
    margin-left: 20px;
}
.album-element .song {
    display: flex;
    font-size: 20px;
    font-weight: 900;
    line-height: 50px;
    border-top: 1px solid #999;
}
.album-element .song .number {
    width: 50px;
    height: 50px;
    text-align: center;
}

/* PROGRAMS */

.pills-style-1 {
    margin-bottom: 32px !important;
}

.pills-style-1 .nav-fill .nav-item, .nav-fill>.nav-link {
    flex: 0 0 auto;
    text-align: center;
}

.pills-style-1 .nav-item {    
    margin-right: 15px;
}

.pills-style-1 .nav-pills .nav-link {  
    height: 36px !important;  
    font-size: 14px;
    line-height: 34px;
    padding: 0px 16px;
    border: 1px solid;
    border-radius: 32px;
    background-color: var(--category-pill-bg);
    color: var(--category-pill-text);
    border-color: var(--category-pill-border);
}

.pills-style-1 .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--category-pill-active-text);
    background-color: var(--category-pill-active-bg);
    border-color: var(--category-pill-active-border);
}

.pills-style-1 .nav-pills .nav-link:hover {
    color: var(--category-pill-hover-text);
    background-color: var(--category-pill-hover-bg);
    border-color: var(--category-pill-hover-border);
    text-decoration: none;
}

.program-list-wpr {
    position: relative;
    margin-top: 15px;
}
.program-list-wpr .line {
    width: 4px;
    height: 100%;
    background-color: #000;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 10;
}
.program-list {
    width: 50%;
}
.program-list img {
    width: 100%;
    margin-bottom: 10px;
}
.program-list .title {
    font-size: 24px;
    font-weight: 900;
    color: #000;
}
.program-list .hours {
    font-size: 36px;
    font-weight: 700;
}
.program-list p {
    font-size: 16px;
}
.program-list:nth-child(odd) {
    padding-right: 20px;
}
.program-list:nth-child(even) {
    margin-left: 50%;
    padding-left: 20px;
}

.programme-page-title {
    margin-bottom: 28px;
}

.programme-day-nav {
    margin-bottom: 28px;
}

.programme-day-tabs .nav-link {
    font-weight: 600;
}

.programme-schedule {
    margin-top: 8px;
}

.programme-day-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.programme-card {
    display: grid;
    grid-template-columns: 120px 180px 1fr;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: var(--list-item-text, #232323);
}

.programme-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.programme-card-time {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-right: 12px;
    border-right: 3px solid var(--category-pill-active-bg, #ef0000);
}

.programme-card-start,
.programme-card-end {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--list-item-title, #0f172a);
    line-height: 1.2;
}

.programme-card-sep {
    display: none;
}

.programme-card-media {
    width: 180px;
    flex-shrink: 0;
}

.programme-card-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.programme-card-body {
    min-width: 0;
}

.programme-card-title {
    margin: 0 0 8px;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--list-item-title, #0f172a);
    line-height: 1.25;
}

.programme-card-details {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--list-item-text, #232323);
}

.programme-card-details p {
    margin: 0;
}

.programme-empty {
    margin: 24px 0 0;
    padding: 32px;
    text-align: center;
    border: 1px dashed #d8d8d8;
    border-radius: 12px;
    color: var(--lecture-color, #666);
    background: #fafafa;
}

.programme-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.programme-card-link:hover .programme-card-title {
    color: var(--category-pill-active-bg, #ef0000);
}

.programme-card-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--category-pill-active-bg, #ef0000);
}

.programme-detail-layout {
    margin-top: 24px;
    margin-bottom: 32px;
}

.programme-demo-block,
.programme-detail-block {
    margin-bottom: 28px;
    padding: 24px;
    border: 1px solid #ececec;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.programme-demo-block h2,
.programme-detail-block h2,
.programme-dj-sidebar h2 {
    margin: 0 0 16px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--list-item-title, #0f172a);
}

.programme-demo-player {
    width: 100%;
    max-width: 100%;
}

.programme-detail-text {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--list-item-text, #232323);
}

.programme-detail-text p,
.programme-detail-text li {
    color: var(--list-item-text, #232323);
}

.programme-social-links,
.programme-dj-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.programme-social-links a,
.programme-dj-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--category-pill-active-bg, #ef0000);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.programme-social-links a:hover,
.programme-dj-social a:hover {
    opacity: 0.85;
    color: #fff;
}

.programme-dj-sidebar {
    padding: 24px;
    border: 1px solid #ececec;
    border-radius: 14px;
    background: #fafafa;
}

.programme-dj-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.programme-dj-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.programme-dj-photo {
    flex-shrink: 0;
    width: 88px;
}

.programme-dj-photo img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.programme-dj-body h3 {
    margin: 0 0 4px;
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--list-item-title, #0f172a);
}

.programme-dj-role {
    margin: 0 0 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--category-pill-active-bg, #ef0000);
}

.programme-dj-bio {
    margin-bottom: 10px;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--list-item-text, #232323);
}

.programme-dj-bio p,
.programme-dj-bio li {
    color: var(--list-item-text, #232323);
}

.programme-back-link {
    margin: 8px 0 32px;
}

@media (max-width: 991px) {
    .programme-dj-sidebar {
        margin-top: 8px;
    }
}

@media (max-width: 767px) {
    .programme-dj-card {
        flex-direction: column;
    }

    .programme-dj-photo,
    .programme-dj-photo img {
        width: 100%;
        height: auto;
        max-height: 220px;
    }
}

@media (max-width: 991px) {
    .programme-card {
        grid-template-columns: 100px 140px 1fr;
        gap: 16px;
        padding: 16px;
    }

    .programme-card-media {
        width: 140px;
    }

    .programme-card-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .programme-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .programme-card-time {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding-right: 0;
        padding-bottom: 12px;
        border-right: none;
        border-bottom: 3px solid var(--category-pill-active-bg, #ef0000);
    }

    .programme-card-sep {
        display: inline;
        color: var(--lecture-color, #666);
        font-weight: 600;
    }

    .programme-card-media {
        width: 100%;
    }

    .programme-card-media img {
        aspect-ratio: 16 / 9;
    }
}

/* PODCASTS */

.podcast-list {
    min-height: 140px;
    height: auto;
    background-color: var(--list-item-card-bg, #f2f2f2);
    position: relative;
    display: flex;
    align-items: stretch;
    margin-bottom: 25px;
    border-radius: 10px;
}
.podcast-list img {
    height: 140px;
    width: 140px;
    min-width: 140px;
    border-radius: 10px 0 0 10px;
}
.podcast-list .data {
    padding: 16px 20px 16px 50px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.podcast-list .podcast-list-copy .title,
.podcast-list .list-item-copy .title {
    font-size: 22px;
    color: var(--list-item-title, #0f172a);
    font-weight: 700;
    display: block;
    width: 100%;
    line-height: 1.35;
}
.podcast-list .podcast-list-copy .date,
.podcast-list .list-item-copy .date {
    font-size: 14px;
    color: var(--list-item-date, #64748b);
    font-weight: 500;
}
.podcast-list .data .details {
    font-size: 14px;
    color: var(--list-item-text, #232323);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 10px;
}
.podcast-list .data p {
    margin: 0;
    padding: 0;;
}
.podcast-list .podcast-ppBtn {
    width: 48px;
    height: 48px;
    background-color: var(--action-btn-bg);
    color: var(--action-btn-text);
    text-align: center;
    line-height: 48px;
    position: absolute;
    top: 46px;
    left: 116px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
}

/* EVENTS */

.event-list {
    margin-bottom: 35px;
}
.event-list img {
    width: 100%;
    margin-bottom: 15px;
}
.event-list .title {
    font-size: 17px;
    color: var(--list-item-title, #0f172a);
    font-weight: 900;
    text-align: center;
}
.event-list:hover img {
    filter: brightness(65%);
    transition: all .3s ease;
}

.event-element .venue {
    background-color: #e6e6e6;
    color: #000;
    padding: 20px;
    margin-bottom: 25px;
}
.event-element .venue .title {
    font-size: 20px;
    font-weight: 900;
}
.event-element .venue .date {
    font-size: 17px;
}
.event-element .readAlso {
    margin-top: 40px;
    max-width: 600px;
}
.event-element .readAlso .read-also {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
    margin-bottom: 16px;
}
.event-element .readAlso .ctr {
    display: flex;
}
.event-element .readAlso img {
    width: auto;
    height: 75px;
    margin-right: 12px;
}
.event-element .readAlso .title {
    font-size: 20px;
    font-weight: 900;
    color: #000;
}
.event-element .readAlso:hover .title {
    text-decoration: underline;
}

/* HOME */



/* HOME VIDEOS */

.home-videos-list {
    background-color: var(--home-videos-bg, var(--featured-bg));
    position: relative;
    margin-top: 50px;
    padding-bottom: 45px;
}
.home-videos-list section footer{
    margin-top: 22px !important;
}
.home-videos-list .section-header h2 {    
    color: var(--home-videos-heading, var(--home-videos-text, var(--featured-text)));
}
.home-videos-list .item {
    position: relative;
    gap: 14px;
    display: flex;
}
.home-videos-list .item.first {
    display: block;
}
.home-videos-list .video-thumb {
    position: relative;
    flex-shrink: 0;
}
.home-videos-list .item.first .video-thumb {
    display: block;
    width: 100%;
}
.home-videos-list .item img {
    width: 200px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 6px;
}
.home-videos-list .item.first img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}
.home-videos-list .item .title {    
    color: var(--home-videos-item-title, var(--home-videos-text, var(--featured-text)));
    font-size: 18px;
    font-weight: 900;
    line-height: 26px;  
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-videos-list .item.first .title {
    font-size: 26px;
    line-height: 34px;
    margin-top: 12px;
}
.home-videos-list .item .date {
    color: var(--home-videos-item-date, var(--home-videos-text, var(--featured-text)));
    font-size: 13px;
    font-weight: 600;
    margin-top: 3px;
}
.home-videos-list .item .ppBtn {
    width: 32px;
    height: 32px;
    background-color: var(--action-btn-bg);
    color: var(--home-videos-play-btn, var(--action-btn-text));
    font-size: 16px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    bottom: 10px;
    opacity: 0;
    z-index: 5;
}
.home-videos-list .item.first .ppBtn {
    width: 48px;
    height: 48px;
    font-size: 24px;
    line-height: 48px;
    left: 16px;
    bottom: 16px;
}
.home-videos-list .item:hover .ppBtn {
    opacity: 1;
    transition: all .3s ease;
}

.home-videos-list .item:hover .video-thumb img {
    filter: brightness(50%);
    transition: all .3s ease;
}
.home-videos-list .item:hover .title {
    text-decoration: underline;
}
.home-videos-list .btn-action.dark-transparent {
    background: transparent;
    color: var(--home-videos-btn-text, var(--featured-text)) !important;
    border-color: var(--home-videos-btn-border, var(--featured-text)) !important;
}
.home-videos-list .btn-action.dark-transparent:hover {
    background: var(--home-videos-btn-hover-bg, var(--featured-text)) !important;
    color: var(--home-videos-btn-hover-text, var(--featured-bg)) !important;
    border-color: var(--home-videos-btn-hover-border, var(--featured-text)) !important;
}

.home-programs-list {
    position: relative;
}
.home-programs-list section footer {
    padding-top: 35px !important;
}
.home-color-block {
    background-color: var(--home-programs-bg, var(--featured-bg));
    color: var(--home-programs-text, var(--featured-text));
}
.home-color-block .section-header h2 {
    color: var(--home-programs-heading, var(--home-programs-text, var(--featured-text)));
}
.home-programs-list .title {
    color: var(--home-programs-item-title, var(--home-programs-text, var(--headline-color)));
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin-top: 5px;
}
.home-programs-list .time {
    font-size: 20px;
    font-weight: 700;
    color: var(--home-programs-item-time, var(--home-programs-text, var(--headline-color)));
    text-align: center;
    line-height: 21px;
    margin-bottom: 10px;
}
.home-color-block .btn-action {
    background-color: var(--home-programs-btn-bg, var(--action-btn-bg));
    color: var(--home-programs-btn-text, var(--action-btn-text));
    border-color: var(--home-programs-btn-border, var(--action-btn-border));
}
.home-color-block .btn-action:hover {
    background-color: var(--home-programs-btn-hover-bg, var(--action-btn-hover-bg));
    color: var(--home-programs-btn-hover-text, var(--action-btn-hover-text));
    border-color: var(--home-programs-btn-hover-border, var(--action-btn-hover-border));
}

.home .events-list {
    position: relative;
    background-color: var(--home-events-bg, transparent);
    padding-top: 24px;
    padding-bottom: 24px;
}
.home .events-list .section-header h2 {
    color: var(--home-events-heading, var(--home-events-text, var(--headline-color)));
}
.home .events-list .title {
    color: var(--home-events-item-title, var(--home-events-text, var(--headline-color)));
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 30px;
}
.home-programs-list .item:hover .home-grid-media img {
    filter: brightness(65%);
    transition: all .3s ease;
}
.home .events-list .btn-action {
    background-color: var(--home-events-btn-bg, var(--action-btn-bg));
    color: var(--home-events-btn-text, var(--action-btn-text));
    border-color: var(--home-events-btn-border, var(--action-btn-border));
}
.home .events-list .btn-action:hover {
    background-color: var(--home-events-btn-hover-bg, var(--action-btn-hover-bg));
    color: var(--home-events-btn-hover-text, var(--action-btn-hover-text));
    border-color: var(--home-events-btn-hover-border, var(--action-btn-hover-border));
}

.home-dynamic-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    width: 100%;
}

.home-grid-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, #ececec 0%, #d8d8d8 100%);
}

.home-grid-media--square {
    aspect-ratio: 1 / 1;
}

.home-grid-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-programs-grid .grid-item .item,
.home-events-grid .grid-item .item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-programs-grid .grid-item .title,
.home-events-grid .grid-item .title {
    margin-top: auto;
    padding-top: 8px;
}

.home-events-grid .grid-item,
.home-news-grid .grid-item,
.home-programs-grid .grid-item {
    flex: 0 1 300px;
    max-width: 360px;
    width: 100%;
}

.home-events-grid .grid-item {
    flex: 0 1 240px;
    max-width: 280px;
}

.home-dynamic-grid.home-news-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    justify-content: stretch;
    align-items: stretch;
}

.home-dynamic-grid.home-news-grid .grid-item {
    flex: unset;
    max-width: none;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.home-podcast-list .home-dynamic-grid.is-slider-disabled .item {
    flex: 0 1 220px;
    max-width: 240px;
    width: 100%;
    margin-right: 0;
}

.home-podcast-list .home-dynamic-grid.is-slider-disabled,
.home-sponsors-list .home-dynamic-grid.is-slider-disabled {
    gap: 28px;
}

.home-sponsors-list .home-dynamic-grid.is-slider-disabled .item {
    flex: 0 1 180px;
    max-width: 220px;
    width: 100%;
    margin-right: 0;
}

@media (max-width: 991px) {
    .home-dynamic-grid.home-news-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-dynamic-grid.home-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-events-grid .grid-item,
    .home-news-grid .grid-item,
    .home-programs-grid .grid-item,
    .home-podcast-list .home-dynamic-grid.is-slider-disabled .item,
    .home-sponsors-list .home-dynamic-grid.is-slider-disabled .item {
        flex: 0 1 calc(50% - 16px);
        max-width: calc(50% - 16px);
    }
}

@media (max-width: 479px) {
    .home-events-grid .grid-item,
    .home-news-grid .grid-item,
    .home-programs-grid .grid-item,
    .home-podcast-list .home-dynamic-grid.is-slider-disabled .item,
    .home-sponsors-list .home-dynamic-grid.is-slider-disabled .item {
        flex: 0 1 100%;
        max-width: 320px;
    }
}
.home .events-list section footer {
    padding-top: 5px !important;
}
.home .events-list .item:hover .home-grid-media img {
    filter: brightness(50%);
    transition: all .3s ease;
}

/* HOME LAST PLAYED */

.home-nowplaying {
    width: 100%;
    background-color: var(--onAir-bg);
    position: relative;
    z-index: 100;
    padding-top: 140px;
    box-sizing: border-box;
}
.home-nowplaying .ctr {
    max-width: 1196px;
    position: relative;
    padding: 40px 24px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    border: 2px solid var(--onAir-border, transparent);
}
.home-nowplaying .metadata {
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 0;
    padding-top: 0;
    position: relative;
    order: 1;
    z-index: 5;
}
.home-nowplaying .title {
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 900;
    line-height: 1.12;
    color: var(--onAir-song-title);
    text-transform: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    z-index: 2;
}
.home-nowplaying .album-info {
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 600;
    line-height: 1.35;
    color: var(--onAir-artist-name);
    text-transform: uppercase;
    margin-top: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-nowplaying .artwork {
    flex: 0 0 auto;
    min-width: 180px;
    width: clamp(180px, 18vw, 240px);
    height: clamp(180px, 18vw, 240px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 8px;
    order: 2;
    z-index: 5;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.home-nowplaying .badge {
    height: 28px;
    color: var(--onAir-btn-text);
    background-color: var(--onAir-btn-bg);
    font-size: 11px;
    font-weight: 700;
    line-height: 28px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
    padding: 0 14px 0 28px;
    border-radius: 32px;
    cursor: default;
}
.home-nowplaying .badge .stream-name {
    font-weight: 800;
}
.home-nowplaying.single-stream .badge {
    padding-right: 14px;
}
.home-nowplaying .badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--onAir-btn-dot);
    position: absolute;
    border-radius: 50%;
    left: 10px;
    top: 10px;
}
.home-nowplaying .badge::before {
    animation: blink-1 2s infinite;
}

.home-nowplaying .loader-wpr{
    width: 100%;
    height: 100%;
    background-color: var(--featured-bg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}
.home-nowplaying .loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: translate(-50%) translateY(-50%);
    border: 3px solid;
    border-color: #FFF #FFF transparent transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    z-index: 5;
}
.home-nowplaying .loader::after,
.home-nowplaying .loader::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent #FF3D00 #FF3D00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}
.home-nowplaying .loader::before {
    width: 32px;
    height: 32px;
    border-color: #FFF #FFF transparent transparent;
    animation: rotation 1.5s linear infinite;
}

.home-history {
    width: 100%;
    min-height: 0;
    box-sizing: border-box;
    background-color: var(--home-last-played-bg, var(--featured-bg));
    color: var(--home-last-played-text, var(--featured-text));
    position: relative;
    padding-top: 35px;
    padding-bottom: 24px;
}
.home-history .last-played {
    font-family: 'Montserrat', sans-serif;
    color: var(--home-last-played-text, var(--featured-text));
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}
.home-history .last-played::before {
    background: var(--home-last-played-heading-accent, var(--category-pill-active-bg));
}
.home-history .item {
    position: relative;
    border: 2px solid var(--home-last-played-card-border, transparent);
    box-sizing: border-box;
}
.home-history .item .top {
    position: relative;
}
.home-history .item img {
    width: 100%;
    max-width: 168px;
    margin: 0 auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid transparent;
    transition: border-color 0.25s ease, transform 0.25s ease;
    background-color: rgba(255, 255, 255, 0.08);
}
.home-history .item:hover img {
    border-color: #f5c518;
    transform: translateY(-2px);
}
.home-history .item .title {
    font-size: 17px;
    font-weight: 700;
    color: var(--onAir-played-song-info, var(--featured-text));
    text-align: center;
    text-transform: capitalize;
    margin-top: 8px;    
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-history .item .artist {
    font-size: 16px;
    color: var(--onAir-played-album-name, var(--onAir-played-song-info, var(--featured-text)));
    text-align: center;
    text-transform: capitalize;    
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 1;
}
.home-history .played-ppBtn {
    font-size: 64px;
    color: #fff;
    text-align: left;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    cursor: pointer;
    opacity: 0;
    z-index: 5;
}
.home-history .played-progress {
    width: 100%;
    height: 5px;    
    background: linear-gradient(to right, #ff0000 50%, #ff0000 50%) left;
    background-size: 0% 100%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 0 8px 8px;
    z-index: 5;
}
.home-history .item:hover img {
    width: 100%;
    border-radius: 8px;
    filter: brightness(45%);
    transition: all .3s ease;
}
.home-history .item:hover .played-ppBtn {
    opacity: 1;
    transition: all .3s ease;
}

/* HOME LATEST NEWS */

.home-latest-news {
    margin-top: 0;
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: var(--home-news-bg, transparent);
}
.home-latest-news .section-header h2 {
    color: var(--home-news-heading, var(--home-news-text, var(--headline-color)));
}
.home-latest-news .item {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
}
.home-latest-news .item a {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
}
.home-latest-news .item .headline {
    color: var(--home-news-item-title, var(--home-news-text, var(--headline-color)));
    font-size: 20px;
    font-weight: 900;
    line-height: 27px;
    flex: 1 1 auto;
    display: block;
    width: 100%;
}
.home-latest-news .item.first .headline {
    font-size: 26px;
    line-height: 33px;
}
.home-latest-news .news-item-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 auto;
    gap: 8px;
    margin-top: 10px;
}
.home-latest-news .item .date {
    font-size: 13px;
    font-weight: 600;
    color: var(--home-news-item-date, var(--lecture-color));
    opacity: 0.75;
    flex: 0 0 auto;
    display: block;
    width: 100%;
    margin-top: auto;
    white-space: nowrap;
}
.home-latest-news .btn-action {
    background-color: var(--home-news-btn-bg, var(--action-btn-bg));
    color: var(--home-news-btn-text, var(--action-btn-text));
    border-color: var(--home-news-btn-border, var(--action-btn-border));
}
.home-latest-news .btn-action:hover {
    background-color: var(--home-news-btn-hover-bg, var(--action-btn-hover-bg));
    color: var(--home-news-btn-hover-text, var(--action-btn-hover-text));
    border-color: var(--home-news-btn-hover-border, var(--action-btn-hover-border));
}
.home-latest-news .item:hover .home-grid-media img {
    filter: brightness(65%);
    transition: all .3s ease;
}
.home-latest-news section footer {
    padding-top: 30px !important;
}


.home ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
} 
.home .played-list {
    background: var(--featured-bg);    
    color: var(--featured-text);
    position: relative;
    margin-top: 452px;
    padding-bottom: 45px;
}
.home .played-list section footer{
    margin-top: 22px !important;
}
.home .played-list .section-header h2 {
    color: var(--featured-text);
}
.home .played-list .slider-wpr {
    position: relative;
}
.home .played-list .item {
    position: relative;
    margin-right: 20px;
}
.home .played-list .item:last-child {
    margin-right: 0px;
}
.glider-track li {
    color: red !important;
    list-style: none;
}
.home .played-list li::marker {
    list-style-type: none !important;    
    padding: 0;
    display: none;
}
.home .played-list .item .top {
    position: relative;
}
.home .played-list .item img {
    width: 100%;
    border-radius: 8px;
}
.home .played-list .item .title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    margin-top: 8px;    
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home .played-list .item .artist {
    font-size: 16px;
    color: #aaa;
    text-align: center;
    text-transform: capitalize;    
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home .played-list .played-ppBtn {
    font-size: 64px;
    color: #fff;
    text-align: left;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    cursor: pointer;
    opacity: 0;
    z-index: 5;
}
.home .played-list .progress {
    width: 100%;
    height: 5px;    
    background: linear-gradient(to right, #ff0000 50%, #ff0000 50%) left;
    background-size: 0% 100%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 0 8px 8px;
    z-index: 5;
}
.home .played-list .item:hover img {
    width: 100%;
    border-radius: 8px;
    filter: brightness(45%);
    transition: all .3s ease;
}
.home .played-list .item:hover .played-ppBtn {
    opacity: 1;
    transition: all .3s ease;
}
.home .played-list .slider-arrow-next,
.home .played-list .slider-arrow-prev {
    width: 44px;
    height: 44px;    
    font-size: 42px;
    line-height: 44px;
    top: 71px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.4rem 1rem, rgba(0, 0, 0, 0.1) 0px 0.4rem 0.4rem;
}
.home .played-list .slider-arrow-prev {
    left: -22px;
}
.home .played-list .slider-arrow-next {
    right: -22px;
}

/* HOME PODCASTS */

.home-podcast-list {
    position: relative;
    background-color: var(--home-podcasts-bg, transparent);
    padding-top: 24px;
    padding-bottom: 24px;
}
.home-podcast-list .section-header h2 {
    color: var(--home-podcasts-heading, var(--home-podcasts-text, var(--headline-color)));
}
.home-podcast-list .podcasts-slider-wpr {
    position: relative;
    padding: 0 34px;
}
.home-podcast-list .podcasts-slider.glider {
    display: block;
}
.home-podcast-list .podcasts-slider .glider-track {
    align-items: stretch;
}
.home-podcast-list .item {
    position: relative;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
}
.home-podcast-list .item .home-grid-media {
    flex: 0 0 auto;
}
.home-podcast-list .item .podcast-meta {
    padding: 10px 12px 14px;
    text-align: center;
}

.home-podcast-list .item .title {
    font-size: 16px;
    font-weight: 700;
    color: var(--home-podcasts-item-title, var(--home-podcasts-text, var(--headline-color)));
    margin-top: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-podcast-list .item .date {
    font-size: 13px;
    color: var(--home-podcasts-item-date, var(--lecture-color));
    margin-top: 6px;
    opacity: 0.75;
}
.home-podcast-list .btn-action {
    background-color: var(--home-podcasts-btn-bg, var(--action-btn-bg));
    color: var(--home-podcasts-btn-text, var(--action-btn-text));
    border-color: var(--home-podcasts-btn-border, var(--action-btn-border));
}
.home-podcast-list .btn-action:hover {
    background-color: var(--home-podcasts-btn-hover-bg, var(--action-btn-hover-bg));
    color: var(--home-podcasts-btn-hover-text, var(--action-btn-hover-text));
    border-color: var(--home-podcasts-btn-hover-border, var(--action-btn-hover-border));
}
.home-podcast-list .item:hover .home-grid-media img {
    filter: brightness(85%);
    transition: all .3s ease;
}
.home-podcast-list .item .ppBtn {
    width: 42px;
    height: 42px;
    background-color: var(--action-btn-bg);
    color: var(--home-podcasts-play-btn, var(--action-btn-text));
    font-size: 28px;
    text-align: center;
    line-height: 42px;
    border-radius: 50%;
    position: absolute;
    right: 16px;
    bottom: 72px;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
}
.home-podcast-list .item:hover .ppBtn {
    opacity: 1;
    transition: all .3s ease;
}
.home-podcast-list footer {
    padding-top: 30px !important;
}
.home-podcast-list .slider-arrow-prev,
.home-podcast-list .slider-arrow-next {
    width: 44px;
    height: 44px;    
    font-size: 42px;
    line-height: 44px;
    top: 71px;
    background-color: var(--home-podcasts-slider-arrow-bg, #ffffff);
    color: var(--home-podcasts-slider-arrow-text, #000000);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.4rem 1rem, rgba(0, 0, 0, 0.1) 0px 0.4rem 0.4rem;
}
.home-podcast-list .slider-arrow-prev:hover,
.home-podcast-list .slider-arrow-next:hover {
    background-color: var(--home-podcasts-slider-arrow-hover-bg, var(--home-podcasts-slider-arrow-bg, #ffffff));
    color: var(--home-podcasts-slider-arrow-hover-text, #ef0000);
}
.home-podcast-list .podcasts-slider-prev {
    left: 0;
}
.home-podcast-list .podcasts-slider-next {
    right: 0;
}
.home-podcast-list .slider-arrow-prev.disabled,
.home-podcast-list .slider-arrow-next.disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* Home Sponsors */

.home-sponsors-list {
    position: relative;
}
.home-sponsors-list .item {
    position: relative;
    margin-right: 20px;
}
.home-sponsors-list .item img {
    min-height: 120px;
    max-height: 120px;
}
.sponsors-slider .glider-track {
  justify-content: center; /* Align children to center */
  display: flex !important; /* Override internal styles */
}
.sponsors-slider .glider-slide {
  flex: 0 0 auto;
  width: auto !important;  /* override 50 % */
}

.home .news-style-1 {
    display: block;
    position: relative;
}
.home .news-style-1 img {
    width: 100%;
    position: relative;
    z-index: 2;
}
.home .news-style-1 .overlay {
    width: 100%;
    height: 50%;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 75%);
    position: absolute;
    bottom: 0;
    z-index: 3;
}
.home .news-style-1 .title {
    color: #fff;
    font-size: 21px;
    font-weight: 900;
    line-height: 25px;
    position: absolute;
    padding: 0 16px;
    bottom: 15px;
    z-index: 4;
}
.home .news-style-1.first .title {
    font-size: 29px;
    line-height: 33px;
    bottom: 19px;
}

.featured-block {
    background-color: var(--featured-bg) !important;
    color: var(--fatured-text) !important;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.featured-block .slider-wpr {
    position: relative;
}
.featured-block section h2 {
    font-family: 'Montserrat';
    font-size: 36px;
    color: var(--featured-text);
    text-align: center;
}
.featured-block .item {
    margin-right: 25px;
}
.featured-block .item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}
.featured-block .item a {
    display: block;
    text-decoration: none;
}
.featured-block .item:last-child {
    margin-right: 0px;
}
.featured-block .item:hover img {
    filter: brightness(65%);
}
.featured-block .title {
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}
.featured-block .slider-arrow-next,
.featured-block .slider-arrow-prev {
    top: 85px;
}
.featured-block.events .slider-arrow-next,
.featured-block.events .slider-arrow-prev {
    top: 57px;
}


.gradient-bg-1 {
    background: rgb(51, 51, 51);
    background: linear-gradient(180deg, rgba(51, 51, 51, 1) 0%, rgba(0, 0, 0, 1) 100%);
}


.angle-down {
    coior: red;
}
.angle-down::before {
    content: "\f107";
}
.angle-up::before {
    content: "\f106";
}



.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.dn {
    display: none;
}

.di {
    display: inline;
}


/* ON AIR */

.onAir-loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: translate(-50%) translateY(-50%);
    border: 3px solid;
    border-color: #FFF #FFF transparent transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    z-index: 5;
}

.onAir-loader::after,
.onAir-loader::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent #FF3D00 #FF3D00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}

.onAir-loader::before {
    width: 32px;
    height: 32px;
    border-color: #FFF #FFF transparent transparent;
    animation: rotation 1.5s linear infinite;
}

.onAir-wpr {
    width: 100%;
    background-color: var(--onAir-bg);
    position: absolute;
    top: 130px;
}
.onAir-ctr {
    max-width: 1196px;
    position: relative;
    padding: 50px 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.onAir-bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    filter: blur(50px);
    opacity: .1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.onAir-metadata {
    width: 100%;
    padding-right: 40px;
    padding-top: 0px;
    position: relative;
    order: 1;
    z-index: 5;
}
.onAir-title {
    font-size: 50px;
    font-weight: 900;
    line-height: 56px;
    color: var(--onAir-song-title);
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    z-index: 2;
}
.onAir-albumInfo {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: var(--onAir-artist-name);
    text-transform: uppercase;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.onAir-artwork {
    min-width: 250px;
    width: 250px;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
    order: 2;
    z-index: 5;
}
.onAir-ppBtn {
    height: 64px;
    width: 64px;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 500px;
    height: 64px;
    color: #fff;
    background-color: #ef0000;
    text-align: center;
    text-transform: uppercase;
    border-radius: 32px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 3px 5px 0px rgba(0,0,0,0.3);
    -webkit-box-shadow: 1px 3px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.onAir-badge {
    height: 26px;
    color: var(--onAir-btn-text);
    font-size: 12px;
    font-weight: 600;
    line-height: 26px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 8pxpx;
    padding: 0px 12px 0px 24px;
    border-radius: 32px;
    cursor: pointer;
}
.onAir-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--onAir-btn-dot);
    position: absolute;
    border-radius: 50%;
    left: 10px;
    top: 10px;
}
.onAir-badge::before {
    animation: blink-1 2s infinite;
}


.onAir-streams-wpr {
    height: 60px;
    width: 100%;
    background-color: var(--onAir-menu-bg);
    position: absolute;    
    display: flex;
    align-items: center;
    top: 80px;
    z-index: 999;
}

.onAir-streams-wpr.dn {
    display: none !important;
}
.onAir-streams-ctr {
    position: relative;
    max-width: 1196px;
    padding: 0;
    margin: 0 auto;
}
.onAir-streams {
    max-width: 1196px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    gap: 30px;

    overflow: hidden !important; 
    white-space: nowrap;
    overflow-x: scroll;
    scroll-behavior: smooth;
}
.onAir-streams .item {
    color: var(--onAir-menu-text);
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}
.onAir-streams .item img {
    height: 30px;
    border-radius: 5px;
}
.onAir-streams .item .title {
}
.onAir-streams .item.active .title {
    color: var(--onAir-menu-active-text);
}
.onAir-streams .item.active {
    border-color: var(--onAir-menu-active-border);
    color: var(--onAir-menu-active-text);
}
.onAir-streams-overlay-right {
    height: 60px;
    width: 50px;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(var(--onAir-overlay-bg)) 100%);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5;
}
.onAir-streams-overlay-left {
    height: 60px;
    width: 50px;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(var(--onAir-overlay-bg)) 0%, rgba(0,0,0,0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
}
.onAir-streams-arrow-next,
.onAir-streams-arrow-prev {
    width: 24px;
    height: 60px;
    color: var(--onAir-menu-text);
    font-size: 36px;
    line-height: 60px;
    position: absolute;
    top: 0px;
    cursor: pointer;
    z-index: 999;
}
.onAir-streams-arrow-next {
    right: 0px;
    padding-left: 2px;
    text-align: right;
}
.onAir-streams-arrow-next::before {
    content: "\f105";
}
.onAir-streams-arrow-prev {
    left: 0px;
    padding-left: 0px;
    text-align: left;
}
.onAir-streams-arrow-prev::before {
    content: "\f104";
}
.onAir-streams-arrow-next:hover,
.onAir-streams-arrow-prev:hover {
    color: #ddd;
}

















.onAir-played-wpr {
    margin-top: 10px;
}
.onAir-played-song-wpr {
    display: flex;
    gap: 25px;
    margin-bottom: 32px;
}
.onAir-played-time-wpr {
    width: 80px;
    position: relative;
    text-align: center;
}
.onAir-played-time-wpr::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    border-left: .3rem dotted var(--onAir-played-date-border);
    left: 50%;
    z-index: 2;
}
.onAir-played-time {
    background-color: #fff;
    color: var(--onAir-played-date-text);
    font-size: 17px;
    font-weight: 700;
    line-height: 17px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding-top: 5px;
    padding-bottom: 8px;
    z-index: 5;
}
.onAir-played-data {
    width: 100%;
    background-color: var(--onAir-played-bg);
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
}
.onAir-played-metadataWpr {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.onAir-played-title {
    color: var(--onAir-played-song-info);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
}
.onAir-played-artist {
    color: var(--onAir-played-song-info);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
.onAir-played-album {
    color: var(--onAir-played-album-name);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}
.onAir-played-artwork {
    min-width: 80px;
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}
.onAir-played-btns-wpr {
    display: flex;
    justify-content: end;
    align-items: center;
}
.onAir-played-btns {
    margin-right: 20px;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
}
.onAir-played-btn {
    width: 40px;
    height: 40px;
    color: var(--onAir-played-like-text);
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
}
.onAir-played-btn:hover {
    background-color: #ddd;
    color: #ef0000;
}
.onAir-played-ppBtn {
    width: 42px;
    height: 42px;
    background-color: var(--onAir-played-btn-bg);
    color: var(--onAir-played-btn-text);
    font-size: 20px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(to left, var(--onAir-played-btn-bg) 50%, var(--onAir-played-btn-bg) 50%) right;
    background-size: 200%;
    transition: background-position;
    cursor: pointer;
}
.onAir-played-song-wpr:first-child .onAir-played-time-wpr::before {
    height: 50%;
    bottom: 0;
}
.onAir-played-song-wpr:last-child .onAir-played-time-wpr::before {
    height: 50%;
}


/* PLAYER BAR */

.playerBar {
    height: var(--playerBar-height);
    width: 100%;
    background-color: var(--playerBar-bg);
    position: fixed;
    bottom: calc(-1 * var(--playerBar-height));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: bottom 0.28s ease, transform 0.28s ease;
    justify-content: space-between;
    z-index: 999;
}

.playerBar .actionBtns {
    width: 148px;
    height: var(--playerBar-height);
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: translateX(-50%);
    z-index: 10;
}

.playerBar .ppBtn {
    width: 38px;
    height: 38px;
    color: var(--playerBar-bg);
    background: var(--playerBar-playBtn);
    font-size: 22px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.playerBar .ppBtn:hover {
    transform: scale(1.06);
}

.playerBar .backwardBtn,
.playerBar .forwardBtn {
    width: 28px;
    height: 28px;
    color: var(--playerBar-playBtn);
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.72;
    transition: opacity 0.15s ease;
}

.playerBar .backwardBtn:hover,
.playerBar .forwardBtn:hover {
    opacity: 1;
}

.playerBar .backwardBtn::before {
    content: "\e059";
}

.playerBar .forwardBtn::before {
    content: "\e056";
}

.playerBar .play::before {
    content: "\e037";
}

.playerBar .pause::before {
    content: "\e034";
}

.playerBar .metadata {
    position: absolute;
    left: 0;
    top: 0;
    height: var(--playerBar-height);
    display: flex;
    align-items: center;
    max-width: calc(50% - 90px);
    min-width: 0;
    padding-right: 8px;
}

.playerBar .artwork {
    width: 48px;
    height: 48px;
    margin: 0 10px 0 12px;
    border-radius: 8px;
    background-position: center;
    background-size: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.playerBar .details {
    padding: 0 8px 0 0;
    margin-top: 0;
    min-width: 0;
    overflow: hidden;
}

.playerBar .details .active-stream {
    display: none;
}

.playerBar .details .now-playing {
    font-size: 10px;
    color: var(--playerBar-artist-name);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}

.playerBar .details .stream-name {
    font-size: 10px;
    color: var(--playerBar-artist-name);
    font-weight: 600;
}

.playerBar .details .angle-up {
    color: var(--playerBar-song-title);
    margin-left: 6px;
    cursor: pointer;
    vertical-align: middle;
    font-size: 12px;
}

.playerBar .details .song {
    font-size: 14px;
    line-height: 1.25;
    color: var(--playerBar-song-title);
    font-weight: 600;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.playerBar .details .album {
    font-size: 12px;
    line-height: 1.25;
    color: var(--playerBar-artist-name);
    font-weight: 500;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    margin-top: 2px;
}

.playerBar .metadata .icon.like {
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 30px;
    margin-left: 4px;
    flex-shrink: 0;
    opacity: 0.75;
}

.playerBar .metadata .icon.like:hover {
    opacity: 1;
}

.playerBar .stream-list {
    min-width: 220px;
    max-width: 320px;
    padding: 0;
    background-color: #1a1a1a;
    position: absolute;
    left: 72px;
    bottom: calc(var(--playerBar-height) - 6px);
    border-radius: 10px 10px 0 0;
    display: none;
    z-index: 9999;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.playerBar .stream-list .top {
    padding: 14px 16px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.playerBar .stream-list .angle-down {
    color: var(--playerBar-song-title);
    margin-right: 12px;
    cursor: pointer;
    font-size: 14px;
}

.playerBar .stream-list .stream-title {
    color: var(--playerBar-song-title) !important;
    font-size: 14px;
    font-weight: 700;
    padding-left: 16px;
}

.playerBar .stream-list .item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    cursor: pointer;
}

.playerBar .stream-list .item img {
    height: 34px;
    width: 34px;
    border-radius: 6px;
}

.playerBar .stream-list .item .title {
    font-size: 13px;
    font-weight: 600;
    color: var(--playerBar-artist-name);
    padding-left: 12px;
}

.playerBar .stream-list .item:hover,
.playerBar .stream-list .item.active {
    background-color: rgba(255, 255, 255, 0.08);
}

.playerBar .stream-list .item:hover .title,
.playerBar .stream-list .item.active .title {
    color: var(--playerBar-song-title) !important;
}

.playerBar .buttons {
    height: var(--playerBar-height);
    position: absolute;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 6px;
    z-index: 5;
}

.playerBar .icon {
    width: 32px;
    height: 32px;
    font-size: 20px;
    color: var(--playerBar-icons);
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.82;
    transition: opacity 0.15s ease, background-color 0.15s ease;
}

.playerBar .like {
    font-size: 16px;
}

.playerBar .icon:hover {
    color: var(--playerBar-icons);
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.08);
}

.playerBar .apple::before {
    content: "\e2c0";
}

.playerBar .list::before {
    content: "\e03b";
}

.playerBar .twitter::before {
    content: "\e80d";
}

.playerBar .like::before {
    content: "\e87d";
}

.playerBar .vol1::before {
    content: "\e04f";
}

.playerBar .vol2::before {
    content: "\e04d";
}

.playerBar .vol3::before {
    content: "\e050";
}

.playerBar .volWpr {
    height: var(--playerBar-height);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
}

.playerBar .volCtr {
    width: 88px;
    margin-right: 4px;
}

.playerBar input[type="range"] {
    -webkit-appearance: none;
    margin-right: 0;
    margin-bottom: 0;
    width: 88px;
    height: 3px;
    background: var(--playerBar-vol-bg);
    border-radius: 999px;
    background-image: linear-gradient(var(--playerBar-vol-fill), var(--playerBar-vol-fill));
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.playerBar .volWpr:hover input[type="range"],
.playerBar .volWpr:focus-within input[type="range"] {
    opacity: 1;
}

.playerBar input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--playerBar-vol-thumb);
    cursor: pointer;
    box-shadow: 0 0 2px 0 #000;
    transition: background 0.3s ease-in-out;
}

.playerBar input[type="range"]::-moz-range-thumb {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--playerBar-vol-thumb);
    cursor: pointer;
    box-shadow: 0 0 2px 0 #000;
    transition: background 0.3s ease-in-out;
}

.playerBar input[type="range"]::-ms-thumb {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--playerBar-vol-thumb);
    cursor: pointer;
    box-shadow: 0 0 2px 0 #000;
    transition: background 0.3s ease-in-out;
}

.playerBar input[type="range"]::-webkit-slider-thumb:hover {
    background: var(--playerBar-vol-thumb);
}

.playerBar input[type="range"]::-moz-range-thumb:hover {
    background: var(--playerBar-vol-thumb);
}

.playerBar input[type="range"]::-ms-thumb:hover {
    background: var(--playerBar-vol-thumb);
}

.playerBar input[type=range]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
    background: transparent;
}

.playerBar input[type=range]::-moz-range-track {
    box-shadow: none;
    border: none;
    background: transparent;
}

.playerBar input[type="range"]::-ms-track {
    box-shadow: none;
    border: none;
    background: transparent;
}

.playerBar .seekBarWpr {
    width: 100%;
    height: 3px;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}

.playerBar .seekBarWpr input[type="range"] {
    -webkit-appearance: none;
    margin: 0;
    padding: 0;
    width: 100% !important;
    height: 3px;
    background: var(--playerBar-seek-bg);
    border-radius: 0;
    background-image: linear-gradient(var(--playerBar-seek-fill), var(--playerBar-seek-fill));
    background-size: 0% 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: 1;
}

.playerBar .seekBarWpr input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--playerBar-seek-fill);
    cursor: pointer;
    box-shadow: 0 0 2px 0 #000;
    transition: background 0.3s ease-in-out;
    opacity: 0;
}

.playerBar .seekBarWpr:hover input[type="range"]::-webkit-slider-thumb,
.playerBar .seekBarWpr input[type="range"]:active::-webkit-slider-thumb {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    :root {
        --playerBar-height: 56px;
    }

    .playerBar .backwardBtn,
    .playerBar .forwardBtn {
        display: none;
    }

    .playerBar .actionBtns {
        width: auto;
        left: auto;
        right: 56px;
        transform: none;
    }

    .playerBar .metadata {
        max-width: calc(100% - 108px);
    }

    .playerBar .artwork {
        width: 40px;
        height: 40px;
        margin: 0 8px 0 10px;
        border-radius: 6px;
    }

    .playerBar .details .song {
        font-size: 13px;
    }

    .playerBar .details .album {
        font-size: 11px;
    }

    .playerBar .metadata .icon.like {
        display: none;
    }

    .playerBar .volCtr {
        display: none;
    }

    .playerBar .buttons {
        right: 8px;
        gap: 2px;
    }

    .playerBar .stream-list {
        left: 10px;
        right: 10px;
        min-width: 0;
        max-width: none;
    }
}


/* MOBILE */

@media only screen and (max-width: 600px) {
    body {
        font-size: 15px;
    }
    .page-title h1 {
        font-size: 34px !important;
    }
    .page-title p {
        font-size: 15px;
        margin-top: 5px;
    }
    .section-header h2 {
        font-size: 30px !important;
    }
    .footer {
        padding: 50px 0;
        margin-top: 0;
    }  

    .onAir-wpr {
        width: 100%;
        position: absolute;
        top: 130px;
    }
    .onAir-ctr {
        max-width: 1196px;
        position: relative;
        padding: 30px 0;
        margin: 0 auto;
        display: block;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;
    }
    .onAir-metadata {
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
        padding-top: 0px;
        text-align: center;
        order: 2;
    }
    .onAir-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 32px;
        -webkit-line-clamp: 1;
    }
    .onAir-albumInfo {
        font-size: 15px;
        font-weight: 500;
        line-height: 26px;
        margin-top: 8px;
        -webkit-line-clamp: 1;
    }
    .onAir-artwork {
        min-width: 180px;
        width: 180px;
        height: 180px;
        margin: 0 auto;
        order: 2;
    }    
    .onAir-badge {
        margin-bottom: 8px;
        margin-top: 10px;
    }

    .home-nowplaying {
        width: 100%;
        min-height: 380px;
        box-sizing: border-box;
        position: relative;
        top: auto;
        padding-top: 140px;
        z-index: 100;
    }
    .home-nowplaying .ctr {
        padding: 50px 0 30px 0;
        margin: 0 auto;
        display: block;
    }
    .home-nowplaying .metadata {
        padding-right: 20px;
        padding-left: 20px;
        padding-top: 10px;
        text-align: center;
        order: 2;
    }
    .home-nowplaying .title {
        font-size: 18px;
        font-weight: 900;
        line-height: 24px;
        padding-top: 5px;
        -webkit-line-clamp: 1;
    }
    .home-nowplaying .album-info {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        margin-top: 8px;
        -webkit-line-clamp: 1;
    }
    .home-nowplaying .artwork {
        min-width: 150px;
        width: 150px;
        height: 150px;
        margin: 0 auto;
        order: 1;
    }
    
    .home-history .item img {
        max-width: 120px;
    }

    .home-history {
        min-height: 0;
        position: relative;
        top: auto;
    }

    .home-history .last-played {
        font-size: 30px;
    }

    .home-latest-news {
        margin-top: 0;
    }

    .home .programs-list {
        position: relative;
    }
    .home .program-list .item {  
    }
    .home .programs-list section footer {
        padding-top: 5px !important;
    }
    .home .programs-list img {
        width: 100%;
    }
    .home .programs-list .title {
        font-size: 20px;
        font-weight: 900;
        margin-top: 5px;
        text-align: center;      
        margin-bottom: 30px;
    }
    .home .programs-list .time {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        text-align: center;
        line-height: 21px;
        margin-bottom: 10px;
    }

    .home-videos-list {
        position: relative;
        margin-top: 50px;
        padding-bottom: 45px;
    }
    .home-videos-list section footer{
        margin-top: 22px !important;
    }
    .home-videos-list .item {
        position: relative;
        gap: 14px;
        display: flex;
    }
    .home-videos-list .item img {
        width: 120px;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }
    .home-videos-list .item .title {    
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        line-height: 23px;
        -webkit-line-clamp: 2;
    }
    
    .home-videos-list .item.first {
        display: block;
        margin-bottom: 30px;
    }
    
    .home-videos-list .item.first img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }
    .home-videos-list .item.first .title {
        font-size: 20px;
        line-height: 34px;
        margin-top: 12px;
    }
    .home-videos-list .item .date {
        color: #8f8f8f;
        font-size: 13px;
        font-weight: 600;
        margin-top: 3px;
    }
    .home-videos-list .item .ppBtn {
        width: 32px;
        height: 32px;
        background-color: #000;
        color: #fff;
        font-size: 16px;
        text-align: center;
        line-height: 32px;
        border-radius: 50%;
        position: absolute;
        left: 10px;
        bottom: 10px;
        opacity: 0;
        z-index: 5;
    }
    .home-videos-list .item.first .ppBtn {
        width: 48px;
        height: 48px;
        font-size: 24px;
        line-height: 48px;
        left: 16px;
        bottom: 16px;
    }
    .home-videos-list .item:hover .ppBtn {
        opacity: 1;
        transition: all .3s ease;
    }
    
    .home-videos-list .item:hover .video-thumb img {
        filter: brightness(50%);
        transition: all .3s ease;
    }
    .home-videos-list .item:hover .title {
        text-decoration: underline;
    }
    .home-podcast-list .item .ppBtn {
        width: 38px;
        height: 38px;
        font-size: 24px;
        line-height: 38px;
        right: 12px;
        top: 93px;
        opacity: 1;
    }
    .home-podcast-list .item:hover .ppBtn {
        opacity: 1;
        transition: all .3s ease;
    }

    

    .onAir-streams-ctr {
        position: relative;
        max-width: 400px;
        padding: 0;
        margin: 0 auto;
    }

    .content-hero--bleed {
        max-height: 240px;
        aspect-ratio: 16 / 9;
    }

    .article-page-title {
        padding-top: 24px;
        padding-bottom: 20px;
    }

    .article-page-title h1 {
        font-size: 28px !important;
    }

    .article-sidebar {
        position: static;
        margin-top: 28px;
    }

    .news-article-page {
        padding-top: 20px;
    }

    .news-article-header {
        margin-bottom: 18px;
    }

    .news-article-lead-image {
        margin-bottom: 20px;
    }

    .news-article-lead-image img {
        max-height: 260px;
    }

    .news-article-sidebar {
        top: auto;
    }

    .news-element .img-ctr,
    .event-element .img-ctr {
        display: none;
    }

    .news-element .img,
    .news-element .img-wpr > img,
    .event-element .img-wpr > img {
        width: 100% !important;
        height: 100% !important;
        position: static !important;
        left: auto !important;
        transform: none !important;
        object-fit: cover;
    }

    .news-element .readAlso .read-also {
        font-size: 20px;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    .news-element .readAlso .ctr {
        display: flex;
    }
    .news-element .readAlso img {
        width: auto;
        height: 75px;
        margin-right: 12px;
    }
    .news-element .readAlso .title {
        font-size: 18px;
        font-weight: 900;
    }

    .podcast-list {
        min-height: 100px;
        display: flex;
    }
    .podcast-list img {
        height: 100px;
        width: 100px;
        min-width: 100px;
    }
    .podcast-list .data {
        padding-left: 15px;
    }
    .podcast-list .data .title {
        font-size: 18px;
        font-weight: 700;
        display: block;
    }
    .podcast-list .data .date {
        font-size: 14px;
    }
    .podcast-list .data .details {
        font-size: 13px;    
        -webkit-line-clamp: 2;
    }
    .podcast-list .data p {
        margin: 0;
        padding: 0;;
    }
    .podcast-list .podcast-ppBtn {
        width: 42px;
        height: 42px;
        line-height: 42px;
        top: 29px;
        left: 29px;
    }

    .artist-header {
        height: auto;
        margin-top: 70px;
    }

    .artist-header .bg {
        height: 220px;
        filter: none;
        transform: none;
    }

    .artistsPage-headerBg {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.75) 100%);
    }

    .artist-header .dataWpr {
        height: auto;
        display: block;
        text-align: center;
        padding: 24px 0 28px;
    }

    .artist-header .data {
        padding-left: 0;
        padding-top: 16px;
    }

    .artist-header .name {
        font-size: 28px;
        font-weight: 700;
    }

    .artist-header .img {
        width: 140px;
        height: 140px;
        min-width: 140px;
        margin: 0 auto;
    }

    .album-element {
        display: block;
        justify-content: center;
        text-align: center;
    }
    .album-element .cover {
        width: 200px;
        min-width: 200px;
        margin: 0 auto;
    }
    .album-element .details {
        height: auto;
        padding-left: 0px;
        padding-top: 10px;
    }
    .album-element .title {
        font-size: 24px;
        line-height: 32px;
    }
    .album-element .date {
        font-size: 18px;
    }
    .album-element .desc {
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .album-element .songs {
        margin-left: 0px;
    }
    .album-element .song {
        font-size: 17px;
    }

    .program-list-wpr {
        position: relative;
        margin-top: 15px;
    }
    .program-list-wpr .line {
        display: none;
    }
    .program-list {
        width: 100%;
        margin-bottom: 20px;
    }
    .program-list img {
        width: 100%;
        margin-bottom: 10px;
    }
    .program-list .title {
        font-size: 20px;
    }
    .program-list .hours {
        font-size: 26px;
        font-weight: 700;
    }
    .program-list p {
        font-size: 16px;
    }
    .program-list:nth-child(odd) {
        padding-right: 0px;
    }
    .program-list:nth-child(even) {
        margin-left: 0;
        padding-left: 0px;
    }

    .video-list .title {
        font-weight: 900;
    }

    .event-list .title {
        font-size: 18px !important;
    }
    .event-list img {
        margin-bottom: 10px;
    }
    .event-element .venue .title {
        font-size: 18px;
    }
    .event-element .venue .date {
        font-size: 15px;
    }
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.scrolled:hover {
    animation: scroll-rtl 15s linear forwards;
}

@keyframes scroll-rtl {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translate(-100%);
    }
}

.slide-in-blurred-top {
    -webkit-animation: slide-in-blurred-top 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
    animation: slide-in-blurred-top 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}

.slide-in-blurred-bottom {
    -webkit-animation: slide-in-blurred-bottom 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
    animation: slide-in-blurred-bottom 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}

.rotate-vert-center {
    -webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

.blink-1 {
    -webkit-animation: blink-1 0.6s both;
    animation: blink-1 0.6s both;
}

@-webkit-keyframes rotate-vert-center {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

@keyframes rotate-vert-center {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

@-webkit-keyframes slide-in-blurred-top {
    0% {
        -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        -webkit-transform-origin: 50% 0%;
        transform-origin: 50% 0%;
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes slide-in-blurred-top {
    0% {
        -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        -webkit-transform-origin: 50% 0%;
        transform-origin: 50% 0%;
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

@-webkit-keyframes slide-in-blurred-bottom {
    0% {
        -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
        transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes slide-in-blurred-bottom {
    0% {
        -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
        transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

@-webkit-keyframes blink-1 {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

@keyframes blink-1 {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.site-ad-space {
    width: 100%;
    box-sizing: border-box;
    margin: 24px auto;
    padding: 0 16px;
}

.site-ad-space__inner {
    max-width: 970px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.site-ad-space__inner img,
.site-ad-space__inner iframe,
.site-ad-space__inner ins {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.site-ad-space--home_top {
    margin-top: 16px;
}

.site-ad-space--home_middle,
.site-ad-space--home_bottom,
.site-ad-space--news_top,
.site-ad-space--news_bottom,
.site-ad-space--article_bottom {
    margin-top: 20px;
    margin-bottom: 20px;
}

.home .site-ad-space {
    max-width: 1320px;
}

@media (max-width: 767px) {
    .site-ad-space {
        margin: 16px auto;
        padding: 0 12px;
    }
}