.bannerWrapper {
    display: flex;
    gap: 32px
}
.slider-banner__img {
    height: 225px !important;
    object-fit: cover;
    object-position: center left;
}

.personCard {
    display: flex;
    flex-direction: column;
    width: 417px;
    flex: none;
    height: 225px;
    justify-content: space-between;
    gap: 32px;
    background-color: hsla(220, 22%, 96%, 1);
    padding: 16px;
    margin: 16px 0 48px;
    border-radius: 24px;
}

.personCard__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.personCard__content {
    display: flex;
    gap: 16px;
}

.personCard__portrait {
    display: block;
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.personCard__name {
    font-family: 'Golos', sans-srif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: hsla(221, 43%, 11%, 1);
}

.personCard__position {
    font-family: 'Golos', sans-srif;
    font-size: 14px;
    line-height: 20px;

    color: hsla(220, 13%, 46%, 1);
}

.personCard__button {
    display: flex;
    width: 100%;
    justify-content: center;
    background-color: #007ED9;
    font-family: 'Golos', sans-srif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    height: 36px;
    align-items: center;
    border-radius: 8px;
    transition: background-color .2s ease-in-out;
}

.personCard__button:hover {
    background-color: #006699;
    color: #fff;
}

@media screen and (max-width: 1024px) {
    .bannerWrapper {
        flex-direction: column;
    }
    .personCard {
        height: 220px;
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .slider-banner__img {
        height: 100% !important;
    }
}