
.rv-global-overview,
.rv-global-club-search,
.rv-global-region-grid {
    box-sizing: border-box;
}

.rv-global-club-search {
    width: 100%;
    max-width: 980px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 20;
    font-family: inherit;
}

.rv-global-club-search__title {
    margin: 0 0 14px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
}

.rv-global-club-search__box {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #d7ddd7;
    background: #fff;
    border-radius: 12px;
    min-height: 58px;
    box-shadow: 0 5px 18px rgba(0,0,0,.07);
}

.rv-global-club-search__box:focus-within {
    border-color: #34743a;
    box-shadow: 0 0 0 3px rgba(52,116,58,.13), 0 6px 20px rgba(0,0,0,.08);
}

.rv-global-club-search__icon {
    width: 20px;
    height: 20px;
    margin-left: 20px;
    flex: 0 0 20px;
    border: 2px solid #4e5b50;
    border-radius: 50%;
    position: relative;
}

.rv-global-club-search__icon::after {
    content: "";
    width: 8px;
    height: 2px;
    position: absolute;
    right: -6px;
    bottom: -3px;
    background: #4e5b50;
    transform: rotate(45deg);
    transform-origin: left center;
    border-radius: 2px;
}

.rv-global-club-search__input {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    padding: 0 48px 0 18px !important;
    background: transparent !important;
    color: #18201a;
    font: inherit;
    font-size: 17px;
}

.rv-global-club-search__input::-webkit-search-cancel-button {
    display: none;
}

.rv-global-club-search__clear {
    position: absolute;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #657067;
    font-size: 26px;
    line-height: 32px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
}

.rv-global-club-search.has-value .rv-global-club-search__clear {
    opacity: 1;
    pointer-events: auto;
}

.rv-global-club-search__panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    max-height: min(520px, 65vh);
    overflow: auto;
    background: #fff;
    border: 1px solid #dfe4df;
    border-radius: 12px;
    box-shadow: 0 16px 38px rgba(0,0,0,.16);
}

.rv-global-club-search__status {
    padding: 13px 16px;
    color: #657067;
    font-size: 14px;
}

.rv-global-club-search__results:not(:empty) + .rv-global-club-search__status {
    display: none;
}

.rv-global-club-search__result {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 76px;
    padding: 10px 16px;
    text-decoration: none !important;
    color: #162018 !important;
    border-top: 1px solid #edf0ed;
    transition: background-color .15s ease;
}

.rv-global-club-search__result:first-child {
    border-top: 0;
}

.rv-global-club-search__result:hover,
.rv-global-club-search__result.is-active {
    background: #f2f7f2;
}

.rv-global-club-search__logo {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border: 1px solid #e5e9e5;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.rv-global-club-search__logo img {
    display: block;
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.rv-global-club-search__fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: #eef4ee;
    color: #245d2b;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    padding: 4px;
}

.rv-global-club-search__name {
    display: block;
    font-weight: 750;
    font-size: 17px;
    line-height: 1.2;
}

.rv-global-club-search__meta {
    display: block;
    margin-top: 5px;
    color: #6d776f;
    font-size: 13px;
    line-height: 1.25;
}

.rv-global-region-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}

.rv-global-region-card {
    min-width: 0;
}

.rv-global-region-card img {
    width: 100%;
    height: auto;
    display: block;
}

.rv-global-region-card__fallback {
    min-height: 190px;
    display: grid;
    place-items: center;
    padding: 24px;
    border-radius: 10px;
    background: linear-gradient(145deg, #34743a, #183f1d);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 28px;
    text-align: center;
}

.rv-global-empty {
    padding: 16px;
    border-radius: 8px;
    background: #f6f7f6;
    color: #59625b;
}

@media (max-width: 900px) {
    .rv-global-region-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .rv-global-club-search {
        margin-bottom: 24px;
    }

    .rv-global-club-search__box {
        min-height: 54px;
        border-radius: 10px;
    }

    .rv-global-club-search__input {
        min-height: 52px;
        font-size: 16px;
    }

    .rv-global-club-search__panel {
        max-height: 62vh;
    }

    .rv-global-club-search__result {
        min-height: 70px;
        padding: 9px 12px;
        gap: 11px;
    }

    .rv-global-club-search__logo {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .rv-global-club-search__logo img {
        width: 41px;
        height: 41px;
    }

    .rv-global-club-search__name {
        font-size: 16px;
    }

    .rv-global-region-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.rv-club-directory{width:100%;margin:0 auto;font-family:inherit}
.rv-club-directory__title{margin:0 0 18px;font-size:clamp(26px,3vw,38px);line-height:1.15}
.rv-club-directory__letters{display:flex;flex-wrap:wrap;gap:7px;margin:0 0 30px}
.rv-club-directory__letters a{min-width:36px;height:36px;display:inline-grid;place-items:center;padding:0 8px;border:1px solid #d9dfda;border-radius:7px;background:#fff;color:#245d2b!important;text-decoration:none!important;font-weight:750}
.rv-club-directory__letters a:hover{background:#eef5ee;border-color:#aebcaf}
.rv-club-directory__groups{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:34px 42px;align-items:start}
.rv-club-directory__group{min-width:0;scroll-margin-top:110px}
.rv-club-directory__letter{margin:0 0 10px;padding-bottom:7px;border-bottom:2px solid #34743a;color:#1d5123;font-size:24px;line-height:1.1}
.rv-club-directory__list{list-style:none!important;margin:0!important;padding:0!important}
.rv-club-directory__list li{margin:0!important;padding:0!important;border-bottom:1px solid #edf0ed}
.rv-club-directory__list a{display:block;padding:8px 2px;color:#1b241d!important;text-decoration:none!important;font-size:15px;line-height:1.3}
.rv-club-directory__list a:hover{color:#2d7134!important;text-decoration:underline!important}
@media(max-width:900px){.rv-club-directory__groups{grid-template-columns:repeat(2,minmax(0,1fr));gap:28px 30px}}
@media(max-width:620px){.rv-club-directory__letters{gap:5px;margin-bottom:24px}.rv-club-directory__letters a{min-width:32px;height:32px;font-size:14px}.rv-club-directory__groups{grid-template-columns:1fr;gap:26px}.rv-club-directory__list a{padding:9px 2px;font-size:16px}}
