<div class="col-xs-12 col-sm-12 col-md-12 col-xl-12">
    <div class="headline"><h2>Integrante</h2></div>
    
    <?php foreach ($listaIntegrantes as $value) { ?>
        <div class="col-sm-4">
            <div class="">
                <!-- Place the anchor tag here to cover both your caption and image -->
                <div class="img__footer text-center"><h3><?= $value->nombre_completo; ?></h3>
                    <p><?= $value->puesto; ?></p>
                    <div class="overlay-image col-md-4">
                        <a href="/RIR/CyT/index.php/site/profile?id=<?= $value->id_integrante; ?>">
                            <img class="img-fluid profile" src="/RIR/CyT/uploads/integrantes/<?= $value->imagen; ?>" alt="Alt text" />
                        </a>
                    </div>

                </div>
            </div>
        </div>

        <div class="col-sm-7 col-sm-offset-1">
            <div class="">
                <br>
                <!-- Place the anchor tag here to cover both your caption and image -->
                <p><?= $value->nombre; ?></p>
                <p><?= $value->descripcion; ?></p>
                </div>
            </div>
        </div>

    <?php } ?>

</div>