.sap-style-1,
.sap-style-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.sap-item {
  text-align: center;
}
.sap-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
.sap-title {
  margin-top: 10px;
  font-size: 1em;
  font-weight: 600;
}
.sap-content p {
  text-align: justify;
}
.sap-job-title {
  font-size: 18px;
}
/* ======================================================= */
/* Responsive Styles for Mobile                            */
/* ======================================================= */

/* Στοχεύει το layout του shortcode [speakers_app_eventora] */
@media (max-width: 600px) {
  .sap-style-1 {
    /* Αλλάζει τη διάταξη σε μία στήλη σε οθόνες με πλάτος 600px ή λιγότερο */
    grid-template-columns: 1fr;
  }
}
