/* ===== Jooy Top 10 ===== */
.jooy-top10 {
    width: 100%;
    box-sizing: border-box;
}

.jooy-top10__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #E5E5E5;
}

.jooy-top10__item:last-child {
    border-bottom: none;
}

.jooy-top10__position {
    flex: 0 0 48px;
    font-family: "Montserrat", Sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #1E2D8F;
    line-height: 1;
    text-align: center;
    min-width: 48px;
}

.jooy-top10__image {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: #1A1A1A;
}

.jooy-top10__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jooy-top10__info {
    flex: 1 1 auto;
    min-width: 0;
}

.jooy-top10__artist {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jooy-top10__song {
    font-size: 13px;
    font-weight: 500;
    color: #777777;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jooy-top10__youtube {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E8A020;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s;
    line-height: 1;
}

.jooy-top10__youtube:hover {
    background: #c98a10;
}

@media (max-width: 767px) {
    .jooy-top10__position {
        flex: 0 0 36px;
        font-size: 28px;
        min-width: 36px;
    }

    .jooy-top10__image {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        border-radius: 6px;
    }

    .jooy-top10__artist {
        font-size: 13px;
    }

    .jooy-top10__song {
        font-size: 11px;
    }

    .jooy-top10__item {
        gap: 10px;
        padding: 12px 0;
    }
}
