/* MOBILE-FIRST — keep everything inside the screen */
.entry {
  width: 100%;               /* never exceed the modal width */
  margin: 0 auto 2em;
  display: flex;
  flex-direction: column;    /* image on top, text under */
  gap: 12px;
  align-items: center;
  text-align: center;
}

.entry img {
  width: 60%;                /* fluid, never spills */
  max-width: 200px;          /* reasonable cap */
  height: auto;
  border-radius: 6px;
}

.entry-text {
  font-family: "seawashed";
  font-size: 1.1em;
}

/* DESKTOP — return to side-by-side layout */
@media (min-width: 1200px) {
  .entry {
    flex-direction: row;     /* image + text side by side */
    width: 75%;              /* your original look */
    text-align: center;
    align-items: center;
    gap: 20px;
  }

  .entry img {
    width: 250px;
    max-width: none;
  }

  .entry-text {
    flex: 1;
    font-size: 1.25em;
  }
}
