.urlEndPart {
    font-weight: 700;
    color: #ec398b;
}

.search-artist-container {
    padding: 22px;
    margin-bottom: 32px;
    border: 1px solid grey;
    border-radius: 16px;
}

.search-artist-container button {
    margin-left: 8px;
}

.search-artist-container input {
    border-radius: 6px !important;
}

.artists-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.artist-banner {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.artist-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.banner-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.7)
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.banner-content {
    width: 100%;
    color: white;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-actions {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 1.8rem;
    }

    .banner-overlay {
        padding: 1rem;
    }

    .banner-image {
        height: 300px;
    }
}
