/* LineUp Section - Fixed Image Dimensions */

/* LineUp Image Wrapper - Fixed Height */
.lineup-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 450px; /* Fixed height */
    width: 100%;
}

.lineup-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.lineup-image img {
    width: 100%;
    height: 450px; /* Fixed height */
    object-fit: cover; /* Ensures image covers the area without distortion */
    object-position: center; /* Centers the image */
    transition: transform 0.4s ease;
}

.lineup-image-wrapper:hover .lineup-image img {
    transform: scale(1.1);
}

/* LineUp Hover Overlay */
.lineup-image-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 10;
}

.lineup-image-wrapper:hover .lineup-image-hover {
    opacity: 1;
    visibility: visible;
}

.lineup-image-hover .author-name {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.line-up-hover-content h5 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.line-up-hover-content h5 span {
    color: #fff;
}

/* Social Icons */
.line-up-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.line-up-icons li a:hover {
    background: var(--bs-primary);
    transform: translateY(-3px);
}

.line-up-icons li a svg {
    fill: #fff;
}

/* Swiper Custom Progress */
.swiper-custom-progress {
    position: relative;
}

.lineup-swiper-pagination {
    position: absolute;
    bottom: -40px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    z-index: 10;
}

.lineup-swiper-pagination .swiper-pagination-progressbar-fill {
    background: var(--bs-primary);
    height: 100%;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

/* Navigation Buttons */
.swiper-button-progress {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.swiper-button-progress .swiper-button-next,
.swiper-button-progress .swiper-button-prev {
    position: relative;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    top: auto;
    left: auto;
    right: auto;
}

.swiper-button-progress .swiper-button-next:hover,
.swiper-button-progress .swiper-button-prev:hover {
    background: var(--bs-primary);
    transform: scale(1.1);
}

.swiper-button-progress .swiper-button-next.swiper-button-disabled,
.swiper-button-progress .swiper-button-prev.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.swiper-button-progress .swiper-button-next::after,
.swiper-button-progress .swiper-button-prev::after {
    display: none;
}

.chevron-right-icon svg,
.chevron-left-icon svg {
    fill: #fff;
}

/* Responsive - Tablet */
@media (max-width: 1199px) {
    .lineup-image-wrapper {
        height: 400px;
    }
    
    .lineup-image img {
        height: 400px;
    }
}

/* Responsive - Large Tablets */
@media (max-width: 991px) {
    .lineup-image-wrapper {
        height: 380px;
    }
    
    .lineup-image img {
        height: 380px;
    }
    
    .lineup-image-hover .author-name {
        font-size: 24px;
    }
    
    .lineup-swiper-pagination {
        bottom: -35px;
        left: 50px;
        right: 50px;
    }
    
    .swiper-button-progress {
        bottom: -45px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .lineup-image-wrapper {
        height: 320px;
    }
    
    .lineup-image img {
        height: 320px;
    }
    
    .lineup-image-hover {
        padding: 20px 15px;
    }
    
    .lineup-image-hover .author-name {
        font-size: 20px;
    }
    
    .line-up-hover-content h5 {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .line-up-icons li a {
        width: 30px;
        height: 30px;
    }
    
    .swiper-button-progress .swiper-button-next,
    .swiper-button-progress .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .lineup-swiper-pagination {
        bottom: -30px;
        left: 40px;
        right: 40px;
    }
    
    .swiper-button-progress {
        bottom: -40px;
    }
}

/* Responsive - Extra Small Mobile */
@media (max-width: 575px) {
    .lineup-image-wrapper {
        height: 280px;
    }
    
    .lineup-image img {
        height: 280px;
    }
    
    .lineup-image-hover .author-name {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .line-up-hover-content h5 {
        font-size: 11px;
    }
}
.youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.9;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image:hover .youtube-play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.9;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-player:hover .youtube-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 4;
}

.youtube-progress {
    height: 100%;
    background: #ff0000;
    transition: width 0.3s ease;
}

.blog-image img {
    transition: transform 0.3s ease;
}

.blog-content:hover .blog-image img {
    transform: scale(1.05);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: #000;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.badge i {
    font-size: 10px;
    margin-right: 2px;
}

.youtube-player {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.cursor-pointer {
    cursor: pointer;
}

.btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-primary svg {
    display: block;
    flex-shrink: 0;
}

.btn-primary span {
    display: inline-block;
}