.equal-height-row {
    display: flex;
    flex-wrap: wrap;
}

.equal-height-row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.equal-height-row .team-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.equal-height-row .team-item h5 {
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.equal-height-row .team-item p {
    font-size: 0.9rem;
    flex-grow: 0;
}

.equal-height-row .team-item img {
    max-width: 80%;
    margin: 0 auto;
}

.equal-height-row .team-item .btn-square {
    width: 35px;
    height: 35px;
}

/* Media query for responsive design */
@media (max-width: 767px) {
    .equal-height-row .team-item {
        margin-bottom: 2rem;
    }
}