/* Tag cloud on cover */
.mm-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.mm-tag {
    display: inline-block;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 20px;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary-text-color);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.02em;
}

.mm-tag:hover {
    background: #fff;
    transform: translateY(-1px);
}
