.pg-result {
    font-size: 1.125rem;
    letter-spacing: 0.03em;
    margin-top: 1.25rem;
    word-break: break-all;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.pg-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.pg-strength {
    margin-top: 0.75rem;
}

.pg-strength-bar {
    height: 6px;
    border-radius: 3px;
    background: var(--wpt-border, #e5e7eb);
    overflow: hidden;
}

.pg-strength-fill {
    height: 100%;
    width: 0;
    border-radius: 3px;
    transition: width 0.3s, background 0.3s;
}

.pg-strength-label {
    display: inline-block;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
}

@media (max-width: 480px) {
    .pg-options {
        grid-template-columns: 1fr;
    }

    .pg-result {
        font-size: 1rem;
    }
}
