.teams__empty {
    margin: 0;
    font-size: var(--fx-text-font-size-paragraph, 18px);
    color: var(--fx-text-paragraph-default, var(--text-color));
    text-align: center;
}

.teams--homepage {
    background: var(--light-orange);
}

.teams__top-content {
    margin-bottom: 25px;
}

.teams__listings .row {
    justify-content: center;
    gap: 32px 0;
}

.team-card {
    text-decoration: none;
    background: transparent;
    border: none;
    display: block;
    text-align: center;
}

.team-card .btn-tertiary::before {
    top: 0;
}

.team-card .btn-tertiary {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.team-card__image {
    width: 200px;
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    margin: 0 auto 15px;
}

.team-card__image img {
    display: block;
    transform-origin: center center;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card__image img,
.team-card:focus-within .team-card__image img {
    transform: scale(1.06);
}

.teams__top-content .sub-heading {
    color: var(--black-coffee);
}

@media (prefers-reduced-motion: reduce) {
    .team-card__image img {
        transition: none;
    }

    .team-card:hover .team-card__image img,
    .team-card:focus-within .team-card__image img {
        transform: none;
    }
}

.team-card__info h4 {
    margin: 0 0 15px;
    padding: 0;
    font-size: 22px;
    line-height: 1.2em;
    font-weight: 400;
    color: var(--black-coffee);
}

.team-card__info .btn-tertiary::before {
    background: var(--white);
}

@media (min-width: 768px) {
    .teams__top-content {
        margin-bottom: 30px;
    }

    .teams__listings {
        max-width: 548px;
        margin: 0 auto;
    }

    .team-card__image {
        width: 100%;
        height: 258px;
        border-radius: 40px;
        margin-bottom: 10px;
    }

    .team-card__info h4 {
        font-size: 30px;
        margin-bottom: 11px;
    }

}

@media (min-width: 1200px) {
    .teams--homepage {
        padding: 75px 0;
    }

    .teams__top-content {
        margin-bottom: 35px;
    }

    .teams__listings {
        max-width: 100%;
    }

    .team-card__image {
        width: 100%;
        height: 292px;
        border-radius: 50px;
        margin-bottom: 12px;
    }

    .team-card__info h4 {
        font-size: 33px;
        margin-bottom: 11px;
    }

}