/**
 * Pill Text Widget Styles
 */

.pill-wrapper {
    display: flex;
}

.pill {
    border-radius: 10px;
    border-style: solid;
    border-color: #cba465;
    border-width: 1px;
    padding: 15px 26px;
    display: inline-flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.pill-text {
    color: #cba465;
    text-align: left;
    font-family: var(--font-body, 'Poppins', sans-serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}