.executor-card {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,.12);      
    transition: 0.3s;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.2);
    box-sizing: border-box;
}

.executor-card::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0; right: 0;
    width: 250px;
    height: 190px;
    background: center/cover no-repeat url("../../assets/img/person-card.png");
    opacity: 0.10;
    z-index: -10;
    filter: 
        brightness(0)
        saturate(100%)
        invert(54%)
        sepia(93%)
        saturate(1223%)
        hue-rotate(344deg)
        brightness(98%)
        contrast(89%);
    transition: opacity 0.3s ease;
}

.executor-card__content {
    padding: 24px;        
}

.executor-card__content-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.executor-card__content-main {
    display: flex;
    flex-direction: column; 
    gap: 16px;
}

.executor-card__content-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}


.executor-card__user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: #f6f6f9;;
}
