:root {
    --group-color-1: #006bb6;
}
.group {
	max-width:45rem;
	margin:0 auto 2rem;
}
.group h1 {
    color: var(--group-color-1);
    font-weight: bold;
}
.group-find {
    background: #fbfbfb;
    border: 1px solid #e3e3e3;
    position: relative;
}
.group-header {
    background: #F0F0F0;
    padding: 1.5rem;
}
#group_zip_search {
    display: flex;
}
#group_zip_search input {
    height: 2.5rem;
    box-shadow: none;
    padding: .5em 1em;
    margin: 0;
    font-size: .875rem;
    border: 1px solid #ccc;
}
#group_zip_search input#zip_search {
    flex: 0 1 11rem;
    margin: 0;
}
#group_zip_search input[type="submit"] {
    background: var(--group-color-1);
    border-radius: 0;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    font-size: 1em;
    line-height: 1;
}
#group_zip_search input[type="submit"]:hover {
    background: #000;
}
ul.group-members {
    display: block;
	background: #fbfbfb;
    list-style: none;
    padding: 1.25rem !important;
    margin: 0 !important;
    max-height: 25rem;
    overflow-y: auto;
}
.group-members::after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background-image: linear-gradient(to bottom, rgb(251 251 251 / 0%), rgb(251 251 251) 90%);
    width: 100%;
    height: 4em;
}
.group-members .group-member {
    padding: 1.25rem;
    background: #fff;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.group-members .group-member + .group-member {
    margin-top: 1.25rem;
}
.group-member > div + div {
    margin-top: 1rem;
}
.group-member--header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.group-member--name {
    font-size: 1rem;
    color: var(--group-color-1);
    font-weight: bold;
}
.group-member--distance {
    font-size: .875em;
}
.group-member--distance svg {
    display: inline-block;
    width: 1em;
    height: auto;
    vertical-align: -.125em;
    color: var(--group-color-1);
}
.group-member--description p {
    margin-bottom: 0 !important;
}
.group-member--address {
    font-size: 1rem;
    margin-bottom: .5em;
}
.group-find .no-members {
    padding: 1.25rem;
}
