    .ditch-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.7;
  color: #f7f7f7;
}

.ditch-page p {
  margin: 0 0 1.25rem;
}

.ditch-page ul {
  margin: 0 0 1.5rem 1.2rem;
  padding-left: 1rem;
}

.ditch-page li {
  margin-bottom: 0.5rem;
}

/* Hero */

.ditch-hero {
  border-left: 4px solid #ff4444;
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
}

.ditch-hero h1 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ditch-hero p:first-of-type {
  font-weight: 500;
}

/* Sections */

.ditch-section {
  margin-bottom: 2.5rem;
}

.ditch-section h2 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  text-transform: none;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.ditch-section + .ditch-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
}

/* Optional: slightly muted body text, brighter headings */

.ditch-page {
  background: transparent; /* assume your main site handles bg */
  color: #e6e6e6;
}

.ditch-hero h1,
.ditch-section h2 {
  color: #ffffff;
}

/* Intro block wraps around the GIF */
.ditch-intro {
  overflow: hidden;        /* contain the float */
}

/* Float the GIF to the right, let text wrap on the left */
.ditch-intro .cringe-gif {
  float: right;
  margin: 0 0 1rem 1.25rem;  /* gap to the left & below */
  width: 250px;              /* lock consistent size */
  height: auto;
}

/* Make sure paragraphs are allowed to wrap beside it */
.ditch-intro p {
  clear: none !important;
}