.festival-news-section {
    margin: 40px 0;
    position: relative;
    width: 100%;
}

.festival-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 25px;
    box-sizing: border-box;
}

.festival-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.festival-carousel-inner {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.festival-carousel-item {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    min-height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.festival-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    border: none;
}

.festival-carousel-nav:hover {
    background-color: #0AF8C5;
}

.festival-carousel-prev {
    left: -15px;
}

.festival-carousel-next {
    right: -15px;
}

.festival-news-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    min-height: 300px;
}

.festival-news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0) 100%);
    color: white;
    transition: all 0.3s ease;
}

.festival-news-date {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
    font-weight: bold;
}

.festival-news-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    color: #ffffff;
}

.festival-news-link:hover .festival-news-overlay {
    background: linear-gradient(to top, rgba(10,248,197,0.9) 0%, rgba(10,248,197,0.7) 40%, rgba(0,0,0,0) 100%);
}

.festival-news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.festival-news-grid-item {
    flex: 0 0 calc(33.333% - 14px);
    min-height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.clubs-news-loading {
    text-align: center;
    padding: 40px 20px;
}

.clubs-news-loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(11, 248, 196, 0.3);
    border-radius: 50%;
    border-top-color: #0BF8C4;
    animation: clubs-gallery-spin 1s linear infinite;
    margin-bottom: 15px;
}

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

body.likhun-dark .festival-carousel-nav {
    background-color: rgba(0, 0, 0, 0.8);
}

body.likhun-dark .festival-carousel-nav:hover {
    background-color: #0AF8C5;
    color: #000;
}

body.likhun-dark .festival-news-link:hover .festival-news-overlay {
    background: linear-gradient(to top, rgba(10,248,197,0.9) 0%, rgba(10,248,197,0.7) 40%, rgba(0,0,0,0) 100%);
}

@media (max-width: 992px) {
    .festival-carousel-item, .festival-news-grid-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .festival-carousel-item, .festival-news-grid-item {
        flex: 0 0 calc(100% - 20px);
    }
    
    .festival-carousel-prev {
        left: -10px;
    }
    
    .festival-carousel-next {
        right: -10px;
    }
    
    .festival-carousel-wrapper {
        padding: 0 15px;
    }
    
    .festival-carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .festival-news-title {
        font-size: 18px;
    }
    
    .festival-news-date {
        font-size: 12px;
    }
    
    .festival-news-overlay {
        padding: 15px;
    }
}