/*  Looking for the styling for the blog cards? -->  CSS/components/_blog-card.css */

.team-members-title__wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.team-members-title__wrapper h3{
    margin-bottom: 0px;
    font-weight: 300;
}

.team-members-title__wrapper .team-members-title__filters{
    display: flex;
    flex-direction: row;
    gap: 14px;
}

.team-members-no-results__wrapper{
    opacity: 1;
    transition: 0.3s ease-in-out;
}

.team-members-no-results__wrapper.showing-results{
    opacity: 0;
}

.team-members-no-results__wrapper.showing-results p{
    display: none;
}

.team-members-no-results__wrapper p{
    display: block;
    margin: 0px;
}

.team-members__wrapper{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.filter__search, .filter__tags{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 12px;
    border: 1.5px solid #000;
    border-radius: 24px;
    color: #000;
    font-size: 14px;
    padding: 0.6rem 0.8rem;
    max-height: 48px;
    width: 300px;
}

.team-members__wrapper .blog-card__wrapper{
    margin-bottom: 40px;
}

.team-members__wrapper .blog-card__wrapper .blog-card__featured-image-wrapper{
    background: transparent linear-gradient(-180deg,#f72717,#ff087d) 0 0 no-repeat padding-box;
    min-height: 350px;
    max-height: 350px;
    display: flex;
    align-items: flex-end;
}

.team-members__wrapper .blog-card__wrapper .blog-card__featured-image-wrapper img{
    object-fit: contain;
    height: 90%;
}

.filter__search{
    background-image: url('	https://26918745.fs1.hubspotusercontent-eu1.net/hu…public/paytech/images/Icons/search-icon__black.svg');
}


@media screen and (max-width: 1100px){

    .team-members-title__wrapper{
        flex-direction: column;
        margin-bottom: 50px;
    }

    .team-members-title__wrapper .team-members-title__filters{
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .filter__search, .filter__tags{
        width: 100%;
    }

    .team-members__wrapper .blog-card__wrapper{
        max-width: calc(100% / 2 - 27px);
        min-width: calc(100% / 2 - 27px);
    }

}

@media screen and (max-width: 767px) {

    .team-members__wrapper{
        flex-direction: column;
        gap: 60px;
    }

    .team-members__wrapper .blog-card__wrapper{
        max-width: 100%;
        min-width: 100%;
    }

}


