.mpw-popular-search-words-widget {
    background: #f8f9fa;
    padding: 32px 16px;
    border-radius: 14px;
    margin-bottom: 24px;
    direction: rtl; /* لو أردت الكتابة من اليمين */
}

.mpw-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
}

.mpw-keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 18px;
}

.mpw-keyword-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    color: #222;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 22px;
    box-shadow: 0 2px 8px #0001;
    transition: box-shadow 0.2s, color 0.2s;
}
.mpw-keyword-card:hover {
    box-shadow: 0 6px 16px #0002;
    color: #d62424;
}