/* Post Tags Widget — public.css
   Structural styles only. Colors/sizing are injected dynamically from plugin settings. */

.ptw-tags {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.ptw-tag {
    display: inline-block;
    text-decoration: none;
    border-style: solid;
    white-space: nowrap;
    line-height: 1;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    cursor: pointer;
}

.ptw-tag:hover,
.ptw-tag:focus {
    outline: none;
    text-decoration: none;
}
