/* ─── Trigger Button ─────────────────────────────────────────────────────── */
.gbist-agl-nav-item {
    display: inline-flex;
    align-items: center;
    flex: 0 0 118px;
    width: 118px;
    min-width: 118px;
    max-width: 118px;
    justify-content: center;
    box-sizing: border-box;
}
.gbist-agl-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 0 0 118px;
    width: 118px;
    min-width: 118px;
    max-width: 118px;
    height: 34px;
    min-height: 34px;
    padding: 5px 10px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    border-radius: 7px;
    background: #fff;
    color: #1d2327;
    font: inherit;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.gbist-agl-trigger:hover {
    border-color: rgba(0, 0, 0, 0.28);
    background: #fafafa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
}
.gbist-agl-trigger:focus-visible {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
}
.gbist-agl-country {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 20px;
    border-radius: 5px;
    background: #f2f4f7;
    font-size: 17px;
    line-height: 1;
}
.gbist-agl-trigger-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 12px;
    flex: 0 0 18px;
}
.gbist-agl-trigger .gbist-agl-flag-img {
    width: 18px;
    height: 12px;
    flex: 0 0 18px;
}
.gbist-agl-flag-img {
    display: block;
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}
.gbist-agl-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 48px;
    white-space: nowrap;
    font-weight:700;
    letter-spacing: 0.01em;
}
.gbist-agl-text span {
    color: #9ca3af;
    font-weight: 400;
}
.gbist-agl-gtranslate-source,
.gbist-agl-aelia-source {
    display: none !important;
}
.gbist-agl-caret {
    display: inline-block;
    width: 14px;
    height: 14px;
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform 0.2s;
    border: none;
    background: none;
    position: relative;
}
.gbist-agl-caret::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translate(-1px, -2px);
    margin: auto;
    margin-top: 2px;
}
[aria-expanded="true"] .gbist-agl-caret::before {
    transform: rotate(-135deg) translate(-1px, -3px);
}

@media screen and (max-width: 849px) {
    .gbist-agl-nav-item,
    .gbist-agl-trigger {
        flex-basis: 118px;
        width: 118px;
        min-width: 118px;
        max-width: 118px;
    }
}
