.shh-discovery {
    margin: 40px 0;
    color: #fff;
}

.shh-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.shh-section-head h2 {
    margin: 0;
    font-size: 30px;
}

.shh-section-head p {
    margin: 5px 0 0;
    color: #aaa;
}

.shh-toggle {
    display: flex;
    background: #161616;
    padding: 4px;
    border-radius: 12px;
}

.shh-toggle button {
    border: 0;
    background: transparent;
    color: #888;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
}

.shh-toggle button.active {
    background: #ff3b3b;
    color: #fff;
}

.shh-slider {
    display: none;
}

.shh-slider.active {
    display: grid;
}

.shh-slider {
    grid-auto-flow: column;
    grid-auto-columns: minmax(160px, 1fr);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.shh-slider::-webkit-scrollbar {
    display: none;
}

.shh-top-card {
    background: linear-gradient(
        180deg,
        rgba(255,255,255,.06),
        rgba(255,255,255,.02)
    );

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 20px;

    padding: 12px;

    scroll-snap-align: start;

    min-width: 160px;
}

.shh-card-image {
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 14px;
}

.shh-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shh-card-content {
    margin-top: 12px;
}

.shh-card-content h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.3;
}

.shh-card-content h3 a {
    color: #fff;
    text-decoration: none;
}

.shh-card-content .artist {
    display: block;
    margin-top: 6px;
    color: #b5b5b5;
    font-size: 13px;
}

.shh-card-content .rating {
    display: block;
    margin-top: 8px;
    color: #ffcc00;
    font-size: 13px;
    font-weight: 700;
}

.shh-new-music {
    margin-top: 50px;
}

.shh-new-list {
    display: grid;
    gap: 14px;
}

.shh-new-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255,255,255,.03);
}

.shh-new-thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 14px;
}

.shh-new-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shh-new-info h3 {
    margin: 0;
    font-size: 16px;
}

.shh-new-info h3 a {
    color: #fff;
    text-decoration: none;
}

.shh-new-info .artist {
    display: block;
    margin-top: 5px;
    color: #b7b7b7;
    font-size: 13px;
}

.shh-new-info .category {
    display: inline-block;
    margin-top: 8px;
    color: #ff3b3b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

@media(min-width:1024px){

    .shh-slider.active {
        grid-template-columns: repeat(6, 1fr);
        overflow: visible;
    }

}

@media(max-width:768px){

    .shh-section-head h2 {
        font-size: 24px;
    }

    .shh-slider {
        grid-auto-columns: 42%;
    }

}