.item-equipe {
    width: 100%;
    display: flex;
    overflow: hidden;
    min-height: 288px;
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
}

.item-equipe__image {
    left: 50%;
    top: 50%;
    width: 340px;
    height: 340px;
    position: absolute;
    transform: translate(-50%, -50%);
}

.item-equipe__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: bottom center;
}

.item-equipe__gradient {
    left: -1px;
    right: -1px;
    bottom: -1px;
    height: 138px;
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 70%);
}

.item-equipe__content {
    left: 23px;
    bottom: 19px;
    width: calc(100% - 46px);
    display: flex;
    gap: 5px;
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
}

.item-equipe__title {
    color: #000000;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    font-family: "Recording Artist JNL", var(--e-global-typography-primary-font-family), Sans-serif;
}

.item-equipe__role {
    color: rgba(0, 0, 0, 0.4);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    font-family: "Outfit", var(--e-global-typography-text-font-family), Sans-serif;
}

/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

    .item-equipe {
        min-height: 240px;
    }

    .item-equipe__image {
        width: 292px;
        height: 292px;
    }

    .item-equipe__title {
        font-size: 22px;
    }

    .item-equipe__role {
        font-size: 15px;
    }

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1023px) {

}

/*mobile and tablet*/
@media (max-width: 1023px) {

}

/*desktop*/
@media (min-width: 1025px) {

}

/*laptop 1*/
@media (min-width: 1024px) and (max-width: 1439px) {

}

/*laptop 2*/
@media (min-width: 1440px) and (max-width: 1700px) {

}

/*RESPONSIVE*/
