/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.5.1767645286
Updated: 2026-01-05 20:34:46

*/


/* Equipo directivo section */
.equipo-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* siempre 3 en desktop */
  max-width: 1200px; /* 3 tarjetas de ~400px máx. */
  margin: 0 auto; /* centrar el bloque */
}

.equipo-item {
  border: 1px solid rgba(173, 173, 173, 0.094);
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  overflow: hidden; /* que la imagen respete el borde redondeado */
}

.equipo-item__foto img {
  border-radius: 12px 12px 0 0;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.equipo-description {
  padding: 10px 12px 14px;
}

.equipo-item__nombre {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.equipo-item__cargo {
  font-size: 15px;
  opacity: 0.8;
}

/* Tablet: 2 por fila */
@media (max-width: 1024px) {
  .equipo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile: 1 por fila */
@media (max-width: 640px) {
  .equipo-grid {
    grid-template-columns: 1fr;
  }
}

/* PIE section */

.pie-section {
  margin-top: 2rem;
}

/* parte superior: tarjeta grande + texto */
.pie-header {
  display: grid;
  grid-template-columns: minmax(260px, 350px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

/* que la tarjeta principal se vea como las otras */
.pie-main-card {
  height: 100%;
}

/* texto del PIE */
.pie-text h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.pie-text__content p {
  text-align: justify;
  margin-bottom: 0.75rem;
}

/* abajo usamos tu .equipo-grid tal cual (3 columnas) */

/* responsive: 1 columna en mobile */
@media (max-width: 768px) {
  .pie-header {
    grid-template-columns: 1fr;
  }
}

