/* ============================================================
   TRENDYSONGZ SIDEBAR
   aside.css

   RESPONSIBILITY:
   - Sidebar itself
   - Sidebar sections
   - Sidebar links
   - Artist lists
   - Address

   DO NOT STYLE:
   - Main page layout
   - Homepage
   - Header
   - Navigation
   - Footer
============================================================ */


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

.ts-sidebar {
    width: 100%;
    max-width: 300px;

    margin: 0;

    color: #151515;
}


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

.ts-sidebar-section {
    margin-bottom: 32px;

    padding-bottom: 28px;

    border-bottom: 1px solid #eeeeee;
}


.ts-sidebar-section:last-child {
    border-bottom: none;
}


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

.ts-sidebar-heading {
    margin-bottom: 15px;
}


.ts-sidebar-kicker {
    display: block;

    margin-bottom: 4px;

    color: #999999;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.ts-sidebar-heading h3 {
    margin: 0;

    color: #111111;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;

    font-weight: 800;

    line-height: 1.2;
}


/* ============================================================
   TOP PAGE LINKS
============================================================ */

.ts-sidebar-links {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.ts-sidebar-link {
    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 42px;

    padding: 0 10px;

    color: #333333;

    border-radius: 6px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.ts-sidebar-link i {
    color: #aaaaaa;

    font-size: 9px;

    transition:
        transform 0.2s ease,
        color 0.2s ease;
}


.ts-sidebar-link:hover {
    background: #f7f7f7;

    color: #111111;
}


.ts-sidebar-link:hover i {
    color: #111111;

    transform: translateX(3px);
}


/* ============================================================
   ARTIST LIST
============================================================ */

.ts-artist-list {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}


/* ============================================================
   ARTIST LINK
============================================================ */

.ts-artist-list a {
    display: inline-flex;

    align-items: center;

    min-height: 32px;

    padding: 0 11px;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 18px;

    color: #444444;

    text-decoration: none;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;

    font-weight: 600;

    line-height: 1;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.ts-artist-list a:hover {
    background: #111111;

    border-color: #111111;

    color: #ffffff;

    transform: translateY(-1px);
}


/* ============================================================
   ADDRESS
============================================================ */

.ts-sidebar-address p {
    margin: 0;

    color: #777777;

    font-size: 13px;

    line-height: 1.7;
}


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

@media screen and (max-width: 991px) {

    .ts-sidebar {
        max-width: none;
    }


    .ts-sidebar-section {
        margin-bottom: 28px;

        padding-bottom: 24px;
    }
}


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

@media screen and (max-width: 767px) {

    .ts-sidebar {
        width: 100%;

        max-width: none;
    }


    .ts-sidebar-heading h3 {
        font-size: 19px;
    }


    .ts-sidebar-kicker {
        font-size: 8px;
    }


    .ts-sidebar-link {
        min-height: 40px;

        padding: 0 9px;

        font-size: 13px;
    }


    .ts-artist-list {
        gap: 6px;
    }


    .ts-artist-list a {
        min-height: 30px;

        padding: 0 10px;

        font-size: 10px;
    }


    .ts-sidebar-address p {
        font-size: 12px;
    }
}