.eventh2 {
  font-size: 32px;
  font-family: beausite classic semibold;
  padding-bottom: 10px;
}

.eventh3 {
  font-size: 24px;
  font-family: beausite classic semibold;
  padding-bottom: 10px;
}


.speaker, .speaker-text {
  min-width: 0;
}

.event-icon {
  max-width: 25px;
}

.speaker-icon {
  max-width: 75px;
  min-width: 75px;
}



.speaker-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 columns */
  gap: 2rem;                                        /* keep your spacing */
}



.speaker {
  display: flex;          /* put icon and text side-by-side */
  align-items: center;    /* vertically center them */
}


.allbox {
  display: flex;
  
}

.eventbox {
  flex:1;
  min-width:500px;
}


.speaker {
  display: flex;          /* put icon and text side-by-side */
  align-items: center;    /* vertically center them */
  gap: 0.25rem;           /* space between icon and text */
  max-width: 350px;
}

.speaker-icon img {
  display: block;
  width: 64px;            /* set an icon size that suits your design */
  height: 64px;
  object-fit: cover;
  border-radius: 50%;     /* optional: make headshot circular */
}

.speaker-text {
  color: white;
  font-size: 18px;
  display: flex;
  flex-direction: column; /* name above job title */
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word
}

/* Responsive: stack on small screens if desired */
@media (max-width: 600px) {
  .speaker {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .event-all {
    display: flex;
    flex-direction: column;
  }
  
  .eventbox {
    min-width:100%;
    flex-direction: column;
}
   
.allbox {
  flex-direction:column;
  display:flex;
  }
  
  .eventh3 {
    padding-top: 40px;
  }
  
 .speaker-layout {
   gap: 1rem;
  
}