/* ---------- Desktop / default ---------- */
#MainBody #SynopsisWrap {
  /* create a new block formatting context so the float self-contains */
  display: flow-root;             /* prevents the float from leaking out */
  margin: 0 auto;
}

/* Float the image so text wraps beside and then underneath it */
#MainBody #SynopsisWrap img {
  float: left;
  margin: 0 24px 12px 0;          /* space to the right/bottom of image */
  max-width: 45%;                 /* keeps a nice proportion on wide screens */
  height: auto;
  border-radius: 6px;
  box-shadow: 4px 4px 15px rgba(0,0,0,0.7);
}

/* Let the article be normal flow text so it wraps under the float */
#MainBody #Synopsis {
  font: 1rem/1.5 Arial, Helvetica, sans-serif;
  color: var(--color-text);
  text-align: justify;
  text-justify: inter-word;
  min-width: 0;
}

/* Add vertical spacing between stacked sections */
#Synopsis section + section {
  margin-top: 3rem;
}

/* Affects all H3 except by floating image */
#Synopsis h3 {
  margin: 2rem 0 0.75rem;
  padding: 0.35rem 0.75rem;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFD9B3;
  display: block;
  background: linear-gradient(
    to right,
    #320000 0,
    #320000 8em,
    #4A0000 100%
  );
  border-radius: 0.5rem;
}

/* only offset the special heading beside the float */
#Synopsis h3.portrait-heading {
  margin-left: calc(38% + 1.5rem);  /* tuned value per page */
}

/* ---------- Mobile ---------- */
@media (max-width:700px) {
  #MainBody #SynopsisWrap {
    display: block;
    text-align: center;
  }

  #MainBody #SynopsisWrap img {
    float: none;              /* cancel the desktop float */
    display: block;
    margin: 0 auto 16px;      /* centers image horizontally */
    max-width: 100%;
    height: auto;
  }

  #MainBody #Synopsis {
    width: 100%;
    text-align: left;
  }

  #Synopsis h3.portrait-heading {
    margin-left: 0;   /* cancel the desktop shift on mobile */
  }

}