/* =========================================================
   LyricsGroove — Latest Tracks
   COMPLETE TRACK CARD STYLES
   ========================================================= */

/*
 * This file intentionally contains NO generic .lg-more-link
 * rules. The old generic selector collided with the Albums
 * section. Everything here is scoped to Latest Tracks.
 */

.lg-track-column {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.lg-track-column .lg-column-title {
    flex: 0 0 auto;
    margin: 0 0 20px;
}

.lg-track-column .lg-column-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lg-track-column .lg-column-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: #ffd447;
}

.lg-track-column .lg-column-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.lg-track-column .lg-column-title h3 {
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.01em;
}

.lg-track-column .lg-column-subtitle {
    display: block;
    margin: 6px 0 0 30px;
    color: #ffd447;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
}

/* =========================
   Seven large cards
   ========================= */

.lg-track-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
}

.lg-track-item {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
}

/* =========================
   Main card
   ========================= */

.lg-track-link {
    width: 100%;
    min-height: 110px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, .095);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-sizing: border-box;
    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.lg-track-link:hover {
    transform: translateX(5px);
    border-color: rgba(255, 46, 166, .65);
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .16);
}

/* =========================
   72px circular artwork
   ========================= */

.lg-track-thumb {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1493, #7c2cff);
}

.lg-track-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   Title + artist
   ========================= */

.lg-track-content {
    min-width: 0;
    flex: 1 1 auto;
    align-self: center;
}

.lg-track-title {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.28;
    font-weight: 800;
    letter-spacing: -.012em;
    overflow-wrap: anywhere;
}


.lg-track-album {
    margin: 7px 0 0;
    padding: 0;
    color: #d5dcf8;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
}

/* =========================
   Date + arrow
   ========================= */

.lg-track-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex: 0 0 auto;
    margin-left: auto;
}

.lg-track-date {
    color: #e8ddbc;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    white-space: nowrap;
}

.lg-track-arrow {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #8d32ff, #ff1493);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.lg-track-arrow svg {
    width: 19px;
    height: 19px;
    display: block;
}

.lg-track-link:hover .lg-track-arrow {
    transform: translateX(3px);
    box-shadow: 0 8px 20px rgba(255, 20, 147, .28);
}

/* =========================
   Non-clickable bottom cue
   ========================= */

.lg-tracks-more {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 212, 71, .45);
    border-radius: 12px;
    color: #ffd447;
    background: rgba(255, 255, 255, .035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
    user-select: none;
    pointer-events: none;
}

.lg-tracks-more-label {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 800;
    text-align: center;
}

.lg-tracks-more svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
}

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 1100px) {

    .lg-track-link {
        min-height: 106px;
        padding: 17px 19px;
    }

    .lg-track-title {
        font-size: 21px;
    }

}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 640px) {

    .lg-track-list {
        gap: 12px;
    }

    .lg-track-link {
        min-height: 92px;
        gap: 14px;
        padding: 13px 14px;
        border-radius: 17px;
    }

    .lg-track-thumb {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
    }

    .lg-track-title {
        font-size: 18px;
        line-height: 1.25;
    }

    .lg-track-album {
        margin-top: 5px;
        font-size: 14px;
    }

    .lg-track-right {
        gap: 10px;
    }

    .lg-track-date {
        display: none;
    }

    .lg-track-arrow {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .lg-track-arrow svg {
        width: 17px;
        height: 17px;
    }

}

@media (max-width: 430px) {

    .lg-track-link {
        min-height: 86px;
        gap: 12px;
        padding: 12px;
    }

    .lg-track-thumb {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .lg-track-title {
        font-size: 17px;
    }

    .lg-track-album {
        font-size: 13px;
    }

    .lg-track-arrow {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

}
















/* ==================================================
   Latest Tracks - Heading Icon Size
================================================== */

.lg-track-column .lg-column-title .lg-column-icon{

    width:36px;
    height:36px;

    flex:0 0 36px;

    display:flex;
    align-items:center;
    justify-content:center;

}

.lg-track-column .lg-column-title .lg-column-icon svg{

    display:block;

    width:34px;
    height:34px;

}









/* ==================================================
   Latest Tracks - Section Heading Size
================================================== */

.lg-track-column .lg-column-title h2{
    font-size:30px;
    line-height:1.2;
}




/* ==================================================
   LATEST TRACKS — SECTION HEADING ONLY
================================================== */

.lg-track-column .lg-column-title h3{

    font-size:26px !important;

    line-height:1.2 !important;

}