.elementor-387 .elementor-element.elementor-element-a3e6708{--display:flex;--margin-top:5em;--margin-bottom:0em;--margin-left:0em;--margin-right:0em;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-9dd7c80 *//* Base styles for the members list */
.members-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.member-item {
  flex: 1 1 calc(50% - 2rem); /* Two columns by default */
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid #409442;
  border-radius: 32px;
}

/* Style for the member photo */
.member-photo {
  margin-right: 1rem;
    border-radius: 8px ;

}

.circular-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px !important;
}

/* Style for the member info block */
.member-info {
  flex: 1;
}

.member-name {
  font-size: 1.2rem;
}

.member-function,
.member-telephone,
.member-email,
.assistant-email,
.member-substitute,
.member-linkedin {
  margin: 0.3rem 0;
}

/* Responsive adjustments: switch layout to a single column on small screens */
@media (max-width: 768px) {
  .member-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .member-photo {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .member-info {
    width: 100%;
  }
}

/* Further adjustments for very small screens if needed */
@media (max-width: 480px) {
  .circular-image {
    width: 200px;
    height: 200px;
  }
  
  .member-name {
    font-size: 1rem;
  }
}/* End custom CSS */