.elementor-10313 .elementor-element.elementor-element-141e21c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}.elementor-10313 .elementor-element.elementor-element-141e21c:not(.elementor-motion-effects-element-type-background), .elementor-10313 .elementor-element.elementor-element-141e21c > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#E3D6C0;}.elementor-10313 .elementor-element.elementor-element-0f1cc8e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-10313 .elementor-element.elementor-element-141e21c{--content-width:1316px;}.elementor-10313 .elementor-element.elementor-element-0f1cc8e{--content-width:1316px;}}/* Start custom CSS for shortcode, class: .elementor-element-894391a */#teamSearchInput {
    width: 100%;
    max-width: 1300px;
    padding: 14px 0;
    font-size: 30px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    color: #fff;
    outline: none;
    text-align: center;
}

/* =========================
   TABLET
   ========================= */
@media only screen and (max-width: 1024px) {
    #teamSearchInput {
        font-size: 22px;
        padding: 12px 0;
    }
}

/* =========================
   MOBILE
   ========================= */
@media only screen and (max-width: 680px) {
    #teamSearchInput {
        font-size: 18px;
        padding: 10px 0;
        max-width: 100%;
    }
}

/* =========================
   SMALL MOBILE
   ========================= */
@media only screen and (max-width: 480px) {
    #teamSearchInput {
        font-size: 16px;
        padding: 8px 0;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-15441fb *//* =========================
   FILTER BAR WRAPPER
   ========================= */

.team-filter-bar {
    width: 100%;
    max-width: 1300px; /* UPDATED */
    margin: 0 auto 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px 0;

    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: #fff;
}

/* =========================
   LABEL
   ========================= */

.team-filter-label {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #111;
    opacity: 0.85;
}

.team-filter-label svg {
    width: 16px;
    height: 16px;
    stroke: #12212d;
    stroke-width: 2;
    fill: none;
}

/* =========================
   CONTROLS
   ========================= */

.team-filter-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* =========================
   RESET BUTTON (kept strong)
   ========================= */

.filter-reset {
    background: #13203b;
    color: #fff;

    border: 1px solid #13203b;

    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    padding: 10px 14px;

    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-reset:hover {
    background: #0f1a22;
}

/* =========================
   DROPDOWNS (CLEAN / NO UNDERLINE FEEL)
   ========================= */

.team-filter-controls select {
    width: 180px;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background: #fff;

    border: 1px solid rgba(0,0,0,0.12); /* softer box instead of underline */
    border-radius: 2px;

    padding: 10px 12px;

    font-size: 14px;
    color: #111;

    cursor: pointer;
    outline: none;

    transition: all 0.2s ease;
}

/* hover */
.team-filter-controls select:hover {
    border-color: rgba(0,0,0,0.3);
}

/* focus */
.team-filter-controls select:focus {
    border-color: #13203b;
}

/* remove ugly native underline feel in some browsers */
.team-filter-controls select:focus-visible {
    outline: none;
}

/* =========================
   ACTIVE STATE
   ========================= */

.team-filter-controls select.active {
    border-color: #13203b;
}

/* =========================
   TEAM ITEMS
   ========================= */

.team.type-team {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.team-hidden {
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

    .team-filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;

        position: sticky;
        top: 0;
        z-index: 50;

        background: #fff;
    }

    .team-filter-controls {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .team-filter-controls select,
    .filter-reset {
        width: 100%;
    }
}/* End custom CSS */