.anda-team .integrantes+.integrantes {
    margin-top: var(--space-40);
}

.anda-team .integrantes h3 {
    color: var(--primary-color);
    font-size: var(--fs-24);
    margin-bottom: var(--space-24);
}

.anda-team .integrantes .inner-integrantes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-32);
}

.anda-team .integrantes article {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.10);
}

.anda-team .integrantes article .item-image {
    position: relative;
}

.anda-team .integrantes article .item-image span {
    background-color: var(--secondary-color);
    color: white;
    position: absolute;
    bottom: 25px;
    font-size: var(--fs-20);
    right: 20px;
    padding: 3px 10px;
}

.anda-team .integrantes article img {
    min-height: 250px;
    max-height: 250px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    width: 100%;
}

.anda-team .integrantes .style-grayscale img{
    filter: grayscale(100%);
}

.anda-team .integrantes article .item-info {
    padding: 20px;
}

.anda-team .integrantes article .item-info h4 {
    font-size: var(--fs-16);
    font-weight: 600;
    display: flex;
    gap: 10px;
}

.anda-team .integrantes article .item-info h4 a {
    color: var(--primary-color);
    text-decoration: none;
}

.anda-team .integrantes article .item-info p {
    font-size: var(--fs-14);
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .anda-team .integrantes .inner-integrantes {
        grid-template-columns: 1fr;
    }

    .anda-team .integrantes article {
        display: flex;
        align-items: center;
        position: relative;
    }

    .anda-team .integrantes article .item-info {
        padding: 12px;
    }

    .anda-team .integrantes article img {
        border-radius: 0;
        min-height: 140px;
        max-height: 140px;
    }

    .anda-team .item-image {
        flex: 0 0 140px;
    }

    .anda-team .item-info__linkedin a {
        font-size: 20px;
        color: var(--primary-color);
        position: absolute;
        top: 10px;
        right: 15px;
    }

    .anda-team .integrantes article .item-image span {
        background-color: var(--secondary-color);
        color: white;
        position: absolute;
        bottom: 5px;
        font-size: 14px;
        right: inherit;
        padding: 1px 5px;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        text-align: center;
    }

}