.executive_text{
  padding: 0 0 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.executive_text>h2{
  font-weight:bold;
  text-align:center;
  font-size:50px;
}

.executive_table {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columnas */
  justify-items: center;
  align-items: start; /* Alinear elementos en la parte superior */
  margin: 0 50px;
  border: 1px solid #99acc2;
  
}

.team-container {
  text-align: center;
  padding: 10px; /* Reducir padding para menos espacio */
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-container img {
  border-radius: 50%;
  margin-bottom: 30px;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
}

.executive-info {
  margin-top: 5px; /* Reducir margen superior */
}

.name {
  margin-bottom: 15px; /* Reducir margen inferior del título principal */
  font-size:20px;
}

.position {
  font-size:20px;
  margin-bottom: 15px; /* Reducir márgenes entre el título y la posición */
}

.description {
  font-size: 16px;
}
.no-photo{
  margin-top: auto;
}


@media (max-width: 768px) {
  .executive_table {
    grid-template-columns: 1fr; /* 1 columna en pantallas pequeñas */
    margin: 0 10px;
  }
  .team-container {
    max-width: 100%;
  }
}