.fund-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem 1.25rem;
    align-items: stretch;
}

.fund-team-grid > .box,
.fund-team-grid > .box33,
.fund-team-grid > .box22,
.fund-team-grid > .box11 {
    display: contents;
}

#content1 .fund-team-grid .organ {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    height: auto;
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 60, 131, 0.12);
}

.fund-team-grid .organ > a {
    display: block;
    width: 100%;
}

.fund-team-grid .organ__item,
.fund-team-grid .organ > img {
    width: 100%;
    aspect-ratio: 4 / 5;
    margin: 0;
    overflow: hidden;
}

.fund-team-grid .organ__item {
    height: auto;
}

.fund-team-grid .organ__img,
.fund-team-grid .organ > img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

#content1 .fund-team-grid .organ .box2 {
    display: flex;
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    min-height: 17rem;
    padding: 1rem;
    overflow: visible;
    box-shadow: none;
}

.fund-team-grid .box2__table {
    width: 100%;
    height: auto;
    table-layout: fixed;
}

.fund-team-grid .box2__table td {
    height: auto;
    padding: .35rem 0;
    line-height: 1.35;
    vertical-align: middle;
    overflow-wrap: anywhere;
}

.fund-team-grid .box2__table td.caption {
    height: auto;
}

.fund-team-grid .box2__table td.position {
    height: auto;
}

.fund-team-grid .box2__table a {
    font-size: .88rem;
    overflow-wrap: anywhere;
}

.fund-team-grid .team-card--employee {
    order: 30;
}

@media (max-width: 1200px) {
    .fund-team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

@media (max-width: 560px) {
    .fund-team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    #content1 .fund-team-grid .organ .box2 {
        min-height: 0;
    }
}
