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

.artist-carousel-wrapper {
    position: relative;
    width: 100%;
}

.artist-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

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

.artist-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);
}

.artist-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;
}

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

.artist-carousel-prev {
    left: -50px;
}

.artist-carousel-next {
    right: -50px;
}

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

.artist-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;
}

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

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

.artist-news-link:hover .artist-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%);
}

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

.artist-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);
}

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

@media (max-width: 768px) {
    .artist-carousel-item, .artist-news-grid-item {
        flex: 0 0 calc(100% - 20px);
    }
    
    .artist-carousel-prev {
        left: -15px;
    }
    
    .artist-carousel-next {
        right: -15px;
    }
}