.equipomind-cv-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.equipomind-item {
    display: grid;
    grid-template-columns: 77px 1fr;
    gap: 16px;
    align-items: center;
}

.equipomind-item img {
    display: block;
    width: 57px;
    height: auto;
}

.equipomind-item__title h3 {
    margin: 0;
}

.mind-detalle-listado {
    margin-top: 40px;
}

.mind-persona-detalle {
    margin-bottom: 70px;
    scroll-margin-top: 120px;
}

.mind-persona-detalle__title {
    margin-bottom: 20px;
}

.mind-botones {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 20px;
}

.mind-tab-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f2f2f2;
    text-decoration: none;
}

.mind-tab-btn.active {
    opacity: 1;
    transform: scale(1.03);
}

.mind-tab-content {
    display: none;
    margin-top: 20px;
}

.mind-tab-content.active {
    display: block;
}

.mind-tab-content video {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.mind-slider-wrap {
    position: relative;
}

.mind-slide {
    display: none;
}

.mind-slide.active {
    display: block;
}

.mind-slide img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.mind-slider-prev,
.mind-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    background: rgba(0,0,0,.45);
    color: #fff;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
}

.mind-slider-prev {
    left: 12px;
}

.mind-slider-next {
    right: 12px;
}

@media (max-width: 767px) {
    .equipomind-item {
        grid-template-columns: 80px 1fr;
    }

    .mind-botones {
        flex-direction: column;
        align-items: stretch;
    }
}