/* ─────────────────────────────────────────────
   Continent Filter Widget — Frontend Styles
   ───────────────────────────────────────────── */

.tf-wrap {
    width: 100%;
}

/* Flex row, wraps to next line */
.tf-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* overridden by Elementor alignment control */
    gap: 10px;               /* overridden by Elementor gap control */
}

.tf-list li {
    margin: 0;
    padding: 0;
	line-height: 0;
}

/* Each pill/button item */
.tf-item {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 0;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-decoration: none;
    line-height: 1;
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.tf-item:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

/* Active / current term */
.tf-item.is-active {
    color: #ffffff;
    background-color: transparent;
    border-color: #ffffff;
    font-weight: 400;
}
