.relationList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
    grid-gap: var(--gap-hor);
    margin: 0;
    padding: 0;
    list-style-type: '';
}

.relationList__item {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    justify-content: flex-end;
    margin-bottom: var(--gap-vert);
    box-shadow: 0 6px 23px rgba(0,0,0,.16);
    border-bottom: 5px solid var(--clr3-normal);
    transition: box-shadow .25s cubic-bezier(0, 0, 0.3, 1), transform .25s cubic-bezier(0, 0, 0.3, 1);
}

.relationList__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px 10px rgba(0,0,0,.05), 0 10px 25px -20px rgba(0,0,0,.1);
}

.relationList__header {
    padding: 1.5rem;
}

.relationList__image {
    display: block;
    aspect-ratio: 1/1;
}

.relationList__name {
    text-align: center;
    margin-bottom: 0;
    font-size: 1rem;
}

.relationList__bio {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: 1rem;
    font-size: 1rem;
    line-height: var(--lnHeight-sm);
    overflow: clip;
}

.relationList__detailPageUrl {
    position: absolute;
    inset: 0;
}
