.region-filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px !important;
    justify-content: center;
}

.pb-100 {
    padding-bottom: 100px;
}

.nav-pills.region-filter-container .nav-link {
    background-color: #B62879;
    color: white;
    border: 2px solid #B62879;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    gap: 10px;
    padding: 10px;
    transition: all 0.2s ease-in-out;
}

.nav-pills.region-filter-container .nav-link:hover,
.nav-pills.region-filter-container .nav-link.active {
    background-color: transparent;
    color: #c42b85;
}

.map-container {
    margin-bottom: 30px;
}

path.region {
    fill: #07AAC6;
    fill-opacity: 0.2;
    stroke: white;
    cursor: pointer;
    transition: fill 0.3s, stroke 0.3s;
}

path.region.active {
    fill: #B62879;
    fill-opacity: 0.8;
    stroke: #B62879;
}

.picto {
    position: absolute;
    width: 36px;
    height: 40px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.wp-list {
    max-height: 600px;
    overflow-y: auto;
    direction: rtl;
    padding-left: 15px;
}

.wp-list > * {
    direction: ltr;
}

.wp-list::-webkit-scrollbar {
    width: 6px;
}

.wp-list::-webkit-scrollbar-track {
    background: #B5E8F2;
}

.wp-list::-webkit-scrollbar-thumb {
    background-color: #B62879;
}

.club-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border: 3px solid #05AAC6;
    overflow: hidden;
    display: flex;
    min-height: 150px;

    .img-container {
        width: 30%;
        min-width: 30%;
        height: auto;
        position: relative;

        .club-image {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .club-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
    }

    .club-datas {
        width: 70%;
        padding: 20px;

        .club-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #05AAC6;
            text-transform: uppercase;
        }

        .club-title a {
            color: #05AAC6;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .club-info {
            display: flex;
            flex-direction: column;
        }

        .club-address {
            font-size: 14px;
            color: black;
            margin-bottom: 10px;
        }

        .club-address, .club-phone, .club-hours {
            font-size: 14px;
            align-items: flex-start !important;

            span {
                margin-left: 5px;
            }
        }

        .club-button-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
    }
}

.club-card:hover {
    background-color: #05AAC6;

    .club-title a,
    .club-hours,
    .club-phone,
    .club-address,
    .see-more {
        color: white;
    }
}

.club-card:hover .location-svg,
.club-card:hover .phone-svg {
    filter: brightness(0) invert(1);
}

.btn {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.see-more {
    color: black;
    text-decoration: underline !important;
}

.btn-primary.club-subscribe-button {
    background-color: #c42b85;
    border-color: #c42b85;
    color: white;
    text-transform: uppercase;
    padding: 8px 20px;
}

.btn-primary.club-subscribe-button:hover {
    background-color: #a22370;
    border-color: #a22370;
}

.club-hours {
    text-transform: uppercase;
    margin-top: 15px;
}

.acf-map-allclubs {
    height: 600px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.marker {
    display: none;
}

.wrapper-text {
    padding: 15px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .wp-list {
        padding-left: 0;
        max-height: inherit;
    }

    .region-filter-container {
        justify-content: center;
    }

    .club-card {
        flex-direction: column;

        .club-title {
            text-align: center;
        }

        .club-info .d-flex {
            flex-direction: column;

            .club-address,
            .club-phone {
                flex-direction: row;
            }
        }

        .img-container {
            display: none;
            width: 100%;
            margin-right: 0;
        }

        .club-datas {
            width: 100%;
        }

        .club-button-container {
            margin-left: 0;
            margin-top: 15px;
            display: flex;
            flex-direction: column;
        }
    }

    .btn {
        margin-right: 10px;
    }
}