/* 
   Overrides for speaker cards in formacion.html 
   to remove the "muesca" (notch) and move text below the image.
*/

.speaker-card--no-notch .speaker-card__photo-wrapper {
  -webkit-mask: none !important;
  mask: none !important;
  border-radius: 8px; /* Ensure border radius is kept */
}

.speaker-card--no-notch .speaker-card__header {
  position: static !important;
  max-width: 100% !important;
  padding: 1rem 0 !important;
  background-color: transparent !important;
}

.speaker-card--no-notch .speaker-card__name {
  margin-top: 0.5rem !important;
}

/* Ensure the layout looks good without the notch */
.speaker-card--no-notch .speaker-card__visual {
  display: flex;
  flex-direction: column;
}

.speaker-card--no-notch:hover .speaker-card__photo {
  filter: grayscale(100%) !important;
}
