.mm-home-artist-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px 22px;
}

.mm-home-artist-card {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 6px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.mm-home-artist-card:hover,
.mm-home-artist-card:focus {
    color: #0f172a;
    transform: translateY(-4px);
}

.mm-home-artist-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.mm-home-artist-image {
    display: block;
    width: min(168px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    background-color: #e2e8f0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 4px solid rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.mm-home-artist-name {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.08rem;
    line-height: 1.2;
}

.mm-home-artist-count {
    color: #64748b;
    font-size: 0.9rem;
}

.mm-home-difficulty-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mm-home-difficulty-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    color: #0f172a;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(241,245,249,0.95));
    border: 1px solid #dbe4ee;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.mm-home-difficulty-name {
    font-weight: 700;
}

.mm-home-difficulty-count {
    color: #64748b;
    font-size: 0.92rem;
}

.mm-home-difficulty-asan {
    border-color: rgba(34, 197, 94, 0.32);
}

.mm-home-difficulty-orta {
    border-color: rgba(245, 158, 11, 0.32);
}

.mm-home-difficulty-cetin,
.mm-home-difficulty-çətin {
    border-color: rgba(239, 68, 68, 0.28);
}

@media (max-width: 991px) {
    .mm-home-artist-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px 18px;
    }

    .mm-home-artist-image {
        width: min(148px, 100%);
    }

    .mm-home-difficulty-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .mm-home-artist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 16px;
    }

    .mm-home-artist-image {
        width: min(132px, 100%);
        border-width: 3px;
    }

    .mm-home-artist-name {
        font-size: 0.98rem;
    }

    .mm-home-artist-count {
        font-size: 0.84rem;
    }

    .mm-home-difficulty-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .mm-home-artist-grid {
        gap: 20px 14px;
    }

    .mm-home-artist-image {
        width: min(116px, 100%);
    }
}
