/* TES Styled Heading – Frontend Styles */

.tes-sh-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.tes-sh-heading .tes-sh-normal {
    font-weight: inherit;
}

.tes-sh-heading .tes-sh-bold {
    font-weight: 700;
}

.tes-sh-heading .tes-sh-sep {
    display: inline-block;
}

/* ── Pill Tags ── */

.tes-pt-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

/*
 * Color comes from --tes-c (set inline per tag).
 * All other styles (font, padding, radius, border-width)
 * are controlled via Elementor selectors — no inline override.
 */
.tes-pt-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-style: solid;
    border-width: 1.5px;
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    box-sizing: border-box;
    cursor: default;
}

a.tes-pt-tag {
    cursor: pointer;
}

/* Outline style */
.tes-pt-tag.tes-pt-outline {
    color: var(--tes-c);
    border-color: var(--tes-c);
    background-color: transparent;
}

/* Filled style */
.tes-pt-tag.tes-pt-filled {
    background-color: var(--tes-c);
    border-color: var(--tes-c);
    color: #fff;
}

/* Hover – outline fills */
.tes-pt-tag.tes-pt-outline.tes-pt-hover:hover {
    background-color: var(--tes-c);
    color: #fff;
}

/* Hover – filled goes outline */
.tes-pt-tag.tes-pt-filled.tes-pt-hover:hover {
    background-color: transparent;
    color: var(--tes-c);
}


