.mpw-popular-search-words-widget {
    background: #f7f7f7;
    padding: 34px 18px;
    border-radius: 16px;
}
.mpw-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #191919;
    letter-spacing: -.5px;
}
.mpw-keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 22px;
}
.mpw-keyword-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    color: #222;
    font-size: 20px;
    font-weight: 500;
    padding: 12px 26px;
    box-shadow: 0 2px 12px #0001;
    transition: box-shadow 0.2s, color 0.2s;
    cursor: pointer;
    line-height: 1.2;
    text-decoration: none;
}
.mpw-keyword-card:hover {
    box-shadow: 0 6px 18px #0002;
    color: #e53935;
}
.mpw-keyword-card svg {
    color: #e53935;
    flex-shrink: 0;
}