/* Wrap title + image on one line */
.my-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Image on the LEFT */
.my-content .views-field-field-event-photo {
  order: 1;
}

/* Title on the RIGHT */
.my-content .views-field-title {
  order: 2;
  flex: 1; /* title takes remaining space */
}

/* Title stays inline */
.title-my-content {
  display: inline-block;
}

/* Image styling */
.event-photo-content img {
  border: solid 3px #dd821d;
  border-radius: 5px;
  flex-shrink: 0;
  display: block;
}

/* Image container */
.event-photo-content {
  display: flex;
  align-items: center;
}
