.artists {
    position: relative;
    width: 100%;
    padding: 110px 0 130px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 25% 45%,
            rgba(157, 0, 255, 0.12),
            transparent 38%
        ),
        #030006;
}

.artists::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: 80%;
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(157, 0, 255, 0.7),
        transparent
    );
}

.artists-container {
    position: relative;

    width: min(1080px, 86%);

    margin: 0 auto;

    z-index: 2;
}


/* =========================
   HEADING
========================= */

.artists-heading {
    margin-bottom: 42px;
}

.artists-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: #9d00ff;

    font-family: "Montserrat", sans-serif;

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 4px;
}

.artists-heading h2 {
    margin: 0;

    color: #ffffff;

    font-family: "Rajdhani", sans-serif;

    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 700;

    line-height: 0.95;
}

.artists-heading h2 span {
    color: #9d00ff;

    text-shadow:
        0 0 25px rgba(157, 0, 255, 0.45);
}

.artists-heading p {
    max-width: 650px;

    margin: 18px 0 0;

    color: #d8d2df;

    font-family: "Montserrat", sans-serif;

    font-size: 0.82rem;

    line-height: 1.8;
}


/* =========================
   ARTIST CARD
========================= */

.artist-card {
    position: relative;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    min-height: 560px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(157, 0, 255, 0.08),
            rgba(7, 2, 14, 0.97) 50%
        );

    border: 1px solid rgba(157, 0, 255, 0.28);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(157, 0, 255, 0.08);
}


/* =========================
   IMAGE
========================= */

.artist-image {
    position: relative;

    min-width: 0;
    min-height: 560px;

    overflow: hidden;

    background: #050008;
}

.artist-image-photo {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}

.artist-card:hover .artist-image-photo {
    transform: scale(1.025);
}

.artist-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 50%,
            rgba(3, 0, 6, 0.75) 100%
        ),
        linear-gradient(
            0deg,
            rgba(3, 0, 6, 0.7) 0%,
            transparent 40%
        );

    pointer-events: none;
}

.artist-image-label {
    position: absolute;

    left: 30px;
    bottom: 28px;

    padding: 7px 13px;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size: 0.6rem;
    font-weight: 700;

    letter-spacing: 2px;

    border: 1px solid rgba(157, 0, 255, 0.5);

    background: rgba(3, 0, 6, 0.55);

    backdrop-filter: blur(8px);
}


/* =========================
   CONTENT
========================= */

.artist-content {
    padding: 65px 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artist-status {
    width: fit-content;

    margin-bottom: 20px;
    padding: 7px 13px;

    color: #b84cff;

    font-family: "Montserrat", sans-serif;

    font-size: 0.6rem;
    font-weight: 700;

    letter-spacing: 2px;

    border: 1px solid rgba(157, 0, 255, 0.45);
}

.artist-content h3 {
    margin: 0;

    color: #ffffff;

    font-family: "Rajdhani", sans-serif;

    font-size: clamp(5rem, 9vw, 8rem);
    font-weight: 700;

    line-height: 0.8;

    text-shadow:
        0 0 35px rgba(157, 0, 255, 0.25);
}

.artist-code {
    display: block;

    margin-top: 20px;
    margin-bottom: 28px;

    color: #9d00ff;

    font-family: "Montserrat", sans-serif;

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 5px;
}

.artist-description {
    max-width: 480px;

    margin: 0 0 35px;

    color: #d8d2df;

    font-family: "Montserrat", sans-serif;

    font-size: 0.82rem;

    line-height: 1.8;
}


/* =========================
   META
========================= */

.artist-meta {
    display: flex;

    gap: 50px;

    margin-bottom: 38px;
}

.artist-meta div {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.artist-meta strong {
    color: #ffffff;

    font-family: "Rajdhani", sans-serif;

    font-size: 1.1rem;
}

.artist-meta span {
    color: #aaa2b5;

    font-family: "Montserrat", sans-serif;

    font-size: 0.55rem;

    letter-spacing: 1px;
}


/* =========================
   BUTTON
========================= */

.artist-actions {
    display: flex;
}

.artist-button {
    min-width: 190px;

    padding: 14px 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: #9d00ff;

    border: 1px solid #9d00ff;

    box-shadow:
        0 0 25px rgba(157, 0, 255, 0.25);

    font-family: "Montserrat", sans-serif;

    font-size: 0.7rem;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.artist-button:hover {
    background: #b52cff;

    box-shadow:
        0 0 35px rgba(157, 0, 255, 0.5);

    transform: translateY(-2px);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .artists {
        padding: 80px 0;
    }

    .artists-container {
        width: min(92%, 600px);
    }

    .artist-card {
        grid-template-columns: 1fr;
    }

    .artist-image {
        min-height: 500px;
    }

    .artist-image-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(3, 0, 6, 0.9) 0%,
                transparent 50%
            );
    }

    .artist-content {
        padding: 45px 30px;
    }

    .artist-meta {
        gap: 30px;
    }

    .artist-button {
        width: 100%;
    }
}