/* Portfolio Button Widget – frontend styles */

.pbw-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* ── Pill button ────────────────────────────────── */
.pbw-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 50px;
    letter-spacing: 0.01em;
    white-space: nowrap;
    line-height: 1;
    transition: background-color 0.22s ease, transform 0.22s ease;
}

.pbw-pill:hover {
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    transform: scale(1.02);
}

/* ── Icon circle ────────────────────────────────── */
.pbw-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-decoration: none;
    flex-shrink: 0;
    transition: background-color 0.22s ease, transform 0.22s ease;
}

.pbw-icon:hover {
    background-color: #333333;
    text-decoration: none;
    transform: scale(1.06);
}

.pbw-icon svg {
    display: block;
}
