/*
|--------------------------------------------------------------------------
| Artist Single
|--------------------------------------------------------------------------
*/

.artist-single-page {
    width: 100%;
    background: #f5f5f6;
}


/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.artist-profile-hero {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    background: #111216;
}


.artist-profile-backdrop {
    position: absolute;
    inset: -35px;
    background-image:
        linear-gradient(
            90deg,
            rgba(10, 10, 12, .96) 0%,
            rgba(10, 10, 12, .86) 40%,
            rgba(10, 10, 12, .66) 100%
        ),
        var(--artist-cover);
    background-position: center;
    background-size: cover;
    filter: blur(16px);
    transform: scale(1.08);
}


.artist-profile-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(17, 18, 22, .62),
            transparent 55%
        );
}


.artist-profile-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        230px
        minmax(0, 1fr);
    align-items: center;
    gap: 38px;
    min-height: 390px;
    padding-top: 48px;
    padding-bottom: 48px;
}


/*
|--------------------------------------------------------------------------
| Avatar
|--------------------------------------------------------------------------
*/

.artist-profile-avatar {
    overflow: hidden;
    width: 230px;
    height: 230px;
    border: 4px solid rgba(255, 255, 255, .92);
    border-radius: 18px;
    background: #25262b;
    box-shadow:
        0 20px 55px
        rgba(0, 0, 0, .28);
}


.artist-profile-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*
|--------------------------------------------------------------------------
| Hero Details
|--------------------------------------------------------------------------
*/

.artist-profile-details {
    min-width: 0;
    color: #ffffff;
}


.artist-profile-label {
    display: block;
    margin-bottom: 7px;
    color: #a877ff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.6px;
}


.artist-profile-details h1 {
    margin: 0;
    max-width: 850px;
    color: #ffffff;
    font-size: clamp(
        38px,
        5vw,
        64px
    );
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -2px;
}


/*
|--------------------------------------------------------------------------
| Hero Stats
|--------------------------------------------------------------------------
*/

.artist-profile-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}


.artist-profile-stats a {
    display: flex;
    align-items: baseline;
    gap: 7px;
    min-height: 43px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 7px;
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    text-decoration: none;
    backdrop-filter: blur(5px);
}


.artist-profile-stats a:hover {
    background: rgba(255, 255, 255, .14);
}


.artist-profile-stats strong {
    font-size: 15px;
}


.artist-profile-stats span {
    color: #c7c8ce;
    font-size: 10px;
}


/*
|--------------------------------------------------------------------------
| Social Links
|--------------------------------------------------------------------------
*/

.artist-profile-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
}


.artist-profile-socials a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 5px;
    background: #ffffff;
    color: #1c1d21;
    font-size: 9px;
    font-weight: 750;
    text-decoration: none;
}


.artist-profile-socials a:hover {
    background: var(--primary);
    color: #ffffff;
}


/*
|--------------------------------------------------------------------------
| Content Layout
|--------------------------------------------------------------------------
*/

.artist-profile-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        320px;
    align-items: start;
    gap: 30px;
    padding-top: 38px;
    padding-bottom: 70px;
}


.artist-profile-main {
    min-width: 0;
}


/*
|--------------------------------------------------------------------------
| About
|--------------------------------------------------------------------------
*/

.artist-about-card {
    margin-bottom: 25px;
    padding: 25px;
    border: 1px solid #e2e3e6;
    border-radius: 10px;
    background: #ffffff;
}


.artist-about-text {
    max-width: 850px;
    color: #65686f;
    font-size: 13px;
    line-height: 1.8;
}


/*
|--------------------------------------------------------------------------
| Sections
|--------------------------------------------------------------------------
*/

.artist-content-section {
    margin-bottom: 25px;
    padding: 25px;
    border: 1px solid #e2e3e6;
    border-radius: 10px;
    background: #ffffff;
}


.artist-content-section:last-child {
    margin-bottom: 0;
}


.artist-section-heading {
    margin-bottom: 20px;
}


.artist-section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
}


.artist-section-heading span {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.3px;
}


.artist-section-heading h2 {
    margin: 0;
    color: #191a1e;
    font-size: 24px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: -.6px;
}


.artist-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 30px;
    padding: 0 8px;
    border-radius: 20px;
    background: #f0ebff;
    color: var(--primary);
    font-size: 10px;
}


/*
|--------------------------------------------------------------------------
| Song List
|--------------------------------------------------------------------------
*/

.artist-song-list {
    border-top: 1px solid #eeeeef;
}


.artist-song-row {
    display: grid;
    grid-template-columns:
        68px
        minmax(0, 1fr)
        34px;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 12px 0;
    border-bottom: 1px solid #eeeeef;
}


.artist-song-image {
    position: relative;
    display: block;
    overflow: hidden;
    width: 68px;
    height: 68px;
    border-radius: 7px;
    background: #ececee;
}


.artist-song-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.artist-song-image span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    padding-left: 2px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .72);
    color: #ffffff;
    font-size: 9px;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity .2s ease;
}


.artist-song-row:hover
.artist-song-image span {
    opacity: 1;
}


.artist-song-info {
    overflow: hidden;
    min-width: 0;
}


.artist-song-info h3 {
    overflow: hidden;
    margin: 0;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.artist-song-info h3 a:hover {
    color: var(--primary);
}


.artist-item-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 5px;
    color: #96989e;
    font-size: 9px;
}


.artist-item-meta
span + span::before {
    content: "•";
    margin-right: 7px;
}


.artist-item-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #696c72;
    font-size: 16px;
    text-decoration: none;
}


.artist-item-arrow:hover {
    background: #f0ebff;
    color: var(--primary);
}


/*
|--------------------------------------------------------------------------
| Albums
|--------------------------------------------------------------------------
*/

.artist-album-grid {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );
    gap: 18px;
}


.artist-album-card {
    min-width: 0;
}


.artist-album-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    background: #ececee;
}


.artist-album-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}


.artist-album-card:hover
.artist-album-image img {
    transform: scale(1.035);
}


.artist-album-type {
    display: block;
    margin-top: 10px;
    color: var(--primary);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .7px;
}


.artist-album-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 4px 0 0;
    color: #222328;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


.artist-album-card h3 a:hover {
    color: var(--primary);
}


.artist-album-year {
    display: block;
    margin-top: 5px;
    color: #999ba0;
    font-size: 9px;
}


/*
|--------------------------------------------------------------------------
| Music Videos
|--------------------------------------------------------------------------
*/

.artist-video-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
    gap: 18px;
}


.artist-video-card {
    min-width: 0;
}


.artist-video-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    background: #16171a;
}


.artist-video-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .28s ease,
        filter .28s ease;
}


.artist-video-card:hover
.artist-video-image img {
    transform: scale(1.035);
    filter: brightness(.76);
}


.artist-video-image span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    padding-left: 3px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .74);
    color: #ffffff;
    transform: translate(-50%, -50%);
}


.artist-video-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 9px 0 0;
    color: #222328;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


.artist-video-card h3 a:hover {
    color: var(--primary);
}


/*
|--------------------------------------------------------------------------
| Pagination
|--------------------------------------------------------------------------
*/

.artist-single-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}


.artist-single-pagination a,
.artist-single-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 0 11px;
    border: 1px solid #dedfe3;
    border-radius: 5px;
    background: #ffffff;
    color: #666970;
    font-size: 9px;
    font-weight: 700;
}


.artist-single-pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
}


/*
|--------------------------------------------------------------------------
| No Content
|--------------------------------------------------------------------------
*/

.artist-no-content {
    padding: 55px 25px;
    border: 1px solid #e2e3e6;
    border-radius: 10px;
    background: #ffffff;
    text-align: center;
}


.artist-no-content > span {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.2px;
}


.artist-no-content h2 {
    margin: 0;
    color: #222328;
    font-size: 22px;
}


.artist-no-content p {
    max-width: 520px;
    margin: 10px auto 0;
    color: #85888f;
    font-size: 11px;
    line-height: 1.65;
}


/*
|--------------------------------------------------------------------------
| Sidebar
|--------------------------------------------------------------------------
*/

.artist-profile-layout
> .archive-sidebar {
    min-width: 0;
}


/*
|--------------------------------------------------------------------------
| Medium Desktop
|--------------------------------------------------------------------------
*/

@media (
    min-width: 901px
)
and (
    max-width: 1150px
) {

    .artist-profile-layout {
        grid-template-columns:
            minmax(0, 1fr)
            285px;
        gap: 22px;
    }


    .artist-profile-avatar {
        width: 200px;
        height: 200px;
    }


    .artist-profile-hero-inner {
        grid-template-columns:
            200px
            minmax(0, 1fr);
    }

}


/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (
    min-width: 601px
)
and (
    max-width: 900px
) {

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


    .artist-profile-layout
    > .archive-sidebar {
        display: none;
    }


    .artist-profile-avatar {
        width: 180px;
        height: 180px;
    }


    .artist-profile-hero-inner {
        grid-template-columns:
            180px
            minmax(0, 1fr);
    }

}


/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 600px) {

    .artist-profile-hero {
        min-height: auto;
    }


    .artist-profile-hero-inner {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: auto;
        padding-top: 30px;
        padding-bottom: 30px;
        text-align: center;
    }


    .artist-profile-avatar {
        width: 135px;
        height: 135px;
        margin: 0 auto;
        border-width: 3px;
        border-radius: 14px;
    }


    .artist-profile-details h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }


    .artist-profile-stats {
        justify-content: center;
        margin-top: 18px;
    }


    .artist-profile-stats a {
        min-height: 38px;
        padding: 0 11px;
    }


    .artist-profile-socials {
        justify-content: center;
    }


    .artist-profile-layout {
        display: block;
        padding-top: 18px;
        padding-bottom: 45px;
    }


    .artist-profile-layout
    > .archive-sidebar {
        display: none;
    }


    .artist-about-card,
    .artist-content-section {
        margin-bottom: 15px;
        padding: 17px 14px;
        border-radius: 8px;
    }


    .artist-section-heading {
        margin-bottom: 15px;
    }


    .artist-section-heading h2 {
        font-size: 20px;
    }


    /*
    |--------------------------------------------------------------------------
    | Songs Mobile List
    |--------------------------------------------------------------------------
    */

    .artist-song-row {
        grid-template-columns:
            58px
            minmax(0, 1fr)
            28px;
        gap: 10px;
        padding: 10px 0;
    }


    .artist-song-image {
        width: 58px;
        height: 58px;
    }


    .artist-song-image span {
        width: 25px;
        height: 25px;
        opacity: 1;
    }


    .artist-song-info h3 {
        font-size: 12px;
    }


    .artist-item-meta {
        gap: 5px;
        font-size: 8px;
    }


    /*
    |--------------------------------------------------------------------------
    | Albums Mobile
    |--------------------------------------------------------------------------
    */

    .artist-album-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
        gap: 17px 11px;
    }


    /*
    |--------------------------------------------------------------------------
    | Videos Mobile
    |--------------------------------------------------------------------------
    */

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


    /*
    |--------------------------------------------------------------------------
    | Pagination Mobile
    |--------------------------------------------------------------------------
    */

    .artist-single-pagination {
        gap: 5px;
    }


    .artist-single-pagination a,
    .artist-single-pagination span {
        min-height: 33px;
        padding: 0 8px;
        font-size: 8px;
    }

}


/* =========================================================
   ARCHIVE HERO
========================================================= */

.archive-hero {
    padding: 46px 0;

    border-bottom: 1px solid var(--border);

    background: #f8f8f9;
}

.archive-hero h1 {
    margin: 0;

    color: var(--black);

    font-size: 34px;
    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -1.2px;
}

.archive-hero p {
    max-width: 650px;

    margin: 10px 0 0;

    color: #777777;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   ARCHIVE PAGE
========================================================= */

.archive-page {
    padding: 48px 0 70px;
}


/* =========================================================
   TWO COLUMN LAYOUT
========================================================= */

.archive-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        310px;

    gap: 42px;

    align-items: start;
}

.archive-main {
    min-width: 0;
}

.archive-sidebar {
    min-width: 0;
}


/* =========================================================
   SIDEBAR
========================================================= */

.sidebar-widget {
    margin-bottom: 28px;

    padding: 20px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: #ffffff;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SIDEBAR TITLE
========================================================= */

.sidebar-widget-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 17px;

    padding-bottom: 12px;

    border-bottom: 1px solid var(--border);
}

.sidebar-widget-title h2 {
    margin: 0;

    color: var(--black);

    font-size: 15px;
    font-weight: 800;
}

.sidebar-widget-title > a {
    color: var(--primary);

    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   SIDEBAR MEDIA LIST
========================================================= */

.sidebar-list {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.sidebar-media-item {
    display: grid;

    grid-template-columns:
        58px
        minmax(0, 1fr);

    gap: 11px;

    align-items: center;
}

.sidebar-media-image {
    width: 58px;
    height: 58px;

    overflow: hidden;

    border-radius: 6px;

    background: #eeeeef;
}

.sidebar-media-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.sidebar-media-content {
    min-width: 0;
}

.sidebar-media-content h3 {
    margin: 0 0 5px;

    color: var(--black);

    font-size: 11px;
    font-weight: 700;

    line-height: 1.4;

    display: -webkit-box;

    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.sidebar-media-content h3 a:hover {
    color: var(--primary);
}

.sidebar-media-content span {
    display: block;

    color: #888888;

    font-size: 10px;

    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
}


/* =========================================================
   SIDEBAR ARTISTS
========================================================= */

.sidebar-artists {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px 10px;
}

.sidebar-artist {
    min-width: 0;

    text-align: center;
}

.sidebar-artist-image {
    width: 100%;

    aspect-ratio: 1 / 1;

    margin-bottom: 6px;

    overflow: hidden;

    border-radius: 50%;

    background: #eeeeef;
}

.sidebar-artist-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.sidebar-artist span {
    display: block;

    overflow: hidden;

    color: #333333;

    font-size: 9px;
    font-weight: 700;

    white-space: nowrap;

    text-overflow: ellipsis;
}

.sidebar-artist:hover span {
    color: var(--primary);
}


/* =========================================================
   SIDEBAR NEWS
========================================================= */

.sidebar-news-list {
    display: flex;

    flex-direction: column;
}

.sidebar-news-item {
    padding: 12px 0;

    border-bottom: 1px solid var(--border);
}

.sidebar-news-item:first-child {
    padding-top: 0;
}

.sidebar-news-item:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}

.sidebar-news-item h3 {
    margin: 0 0 6px;

    color: var(--black);

    font-size: 11px;
    font-weight: 700;

    line-height: 1.45;
}

.sidebar-news-item h3 a:hover {
    color: var(--primary);
}

.sidebar-news-item span {
    color: #999999;

    font-size: 9px;
}


/* =========================================================
   EMPTY
========================================================= */

.archive-empty {
    grid-column: 1 / -1;

    padding: 60px 25px;

    border: 1px dashed #dddddf;
    border-radius: 8px;

    background: #fafafa;

    text-align: center;
}

.archive-empty h2 {
    margin: 0 0 7px;

    font-size: 18px;
}

.archive-empty p {
    margin: 0;

    color: #888888;

    font-size: 12px;
}


/* =========================================================
   PAGINATION
========================================================= */

.archive-pagination {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-top: 48px;
}

.pagination-pages {
    display: flex;
    align-items: center;

    gap: 6px;
}

.pagination-pages a,
.pagination-pages .current {
    min-width: 38px;
    height: 38px;

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

    padding: 0 8px;

    border: 1px solid var(--border);
    border-radius: 5px;

    background: #ffffff;

    color: #333333;

    font-size: 11px;
    font-weight: 700;
}

.pagination-pages a:hover {
    border-color: var(--primary);

    color: var(--primary);
}

.pagination-pages .current {
    border-color: var(--primary);

    background: var(--primary);

    color: #ffffff;
}

.pagination-dots {
    padding: 0 4px;

    color: #999999;
}

.pagination-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding: 0 13px;

    border: 1px solid var(--border);
    border-radius: 5px;

    background: #ffffff;

    color: #333333;

    font-size: 11px;
    font-weight: 700;
}

.pagination-arrow:hover {
    border-color: var(--primary);

    color: var(--primary);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .archive-layout {
        grid-template-columns:
            minmax(0, 1fr)
            280px;

        gap: 30px;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 850px) {

    .archive-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .archive-sidebar {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .sidebar-widget {
        margin-bottom: 0;
    }

}


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

@media (max-width: 600px) {

    .archive-hero {
        padding: 32px 0;
    }

    .archive-hero h1 {
        font-size: 28px;
    }

    .archive-page {
        padding: 35px 0 50px;
    }

    .archive-sidebar {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .archive-pagination {
        gap: 8px;

        margin-top: 36px;
    }

    .pagination-arrow {
        padding: 0 9px;

        font-size: 10px;
    }

    .pagination-pages a,
    .pagination-pages .current {
        min-width: 34px;
        height: 34px;

        font-size: 10px;
    }

}


/* =========================================================
   VERY SMALL
========================================================= */

@media (max-width: 420px) {

    .pagination-pages {
        gap: 4px;
    }

    .archive-pagination {
        flex-wrap: wrap;
    }

}