.cane_header__nav .menu {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
    margin-right: 60px;   
}

.cane_header__nav .menu a {
    color: #c0c0c0;
}

.header__action {
    color: #fff;
}



.row {
    margin-left: 0;
    margin-right: 0;
   
}

.home .row {
    margin-bottom: 60px;
}


.home .cr_schedule {
    background-color: #222227;
    border-radius: 12px;
    padding-bottom: 20px;
}

.ad-network-area-1 {
    /* background-color:rgb(190, 190, 190); */
    margin-top:30px;
    padding: 0;
    
    h6 {
        padding-left: 10px;
    }

    .ad-network-area {
        background-position: top center;
        background-repeat: no-repeat; 
        background-size:auto;
        
        img {
            width: 160px;
            height: 630px;
        }

    }
}


.calendar-container {
    display: grid;
    grid-template-columns: repeat(7, minmax(200px, 1fr));
    grid-template-rows: auto, 1fr;
    column-gap: 1rem;
    color:white;
}

.show-days {
    display: flex;
    overflow-x: scroll;
    gap: 20px;

    h3 {
        margin-top: 15px;
        margin-bottom: 0;
        color: white;
        border-bottom: 1px solid white;
    }
}

.show-day {
    margin-bottom:40px;
}

.owl-stage {
    display: flex;
    align-items:center ;
}

#showhosts .owl-stage {
    align-items:start;
}

.showhost {
    color: #c0c0c0;
    margin-top: 40px;
}

.showhost__cover {
    max-width: 400px;
    float:left;
    margin-right: 40px;
    margin-bottom: 40px;

    img {
        width: 100%;
        border-radius: 10px;
    }
}

.showhost__title h3 {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.showhost__title h3 a
 {
    color: #fff;
}

.showhost__title span {
    display: block;
    width: 100%;
    color: #c0c0c0;
    font-size: 14px;
    font-weight: 400;
    white-space: normal;
    overflow:auto;
    text-overflow: ellipsis;
    word-wrap: break-word;
}


.section-line {
    margin-top: 60px;
    margin-bottom: 60px;
    border: 0.01rem solid #373737;;
}

.live__time {
    font-size: 0.9rem;
    color: #c0c0c0;
}

.radio-shows {

    .main__filter {
        display: none;
    }
}

.cr-event {
    padding:20px;
}

.cr-event:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0) 100%);
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 1;
}

:-moz-any
.footer__logo img {
    width: 300px;
    height: auto;
}



.slider-container {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #000;
}

.slider {
  display: flex;
  position: relative;
  height: 500px; /* Adjust height based on your design */
}

.slide {
  position: absolute;
  border-radius: 12px;;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  position: relative; /* Brings active slide to the structural flow */
}

.slide img, .slide video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures media fills container cleanly */
}


.slide__text {
    position: absolute;
    color:white;
    top:35%;
    left: 5%;
}

.slide__btns {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.slide__btn {
    display: block;
    background-color: rgb(6, 149, 49);
    padding: 15px 38px;
    border-radius: 12px;
    color: white;
}
 
/* Navigation Buttons */
.nav-btn {
  position: absolute;
  bottom: 0;
  transform: translateY(-20%);
  background-color: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  padding: 16px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  z-index: 10;
  transition: background-color 0.3s;
}

.nav-btn svg {
    fill: #fff;
    width: 40px;
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn { right: 90px; }
.next-btn { right: 15px; }






