/* =========================
   Split About – Mobile-first
   ========================= */
:root {
  --wrap-max: 1600px;
  --pad-x: clamp(16px, 4vw, 40px);
  --pad-y: clamp(40px, 6vw, 72px);
  --gap: clamp(20px, 4vw, 48px);
  --kicker-size: clamp(32px, 8vw, 90px);
  --h2-size: clamp(20px, 4vw, 30px);
  --h3-size: clamp(17px, 3vw, 24px);
  --body-size: clamp(15px, 1.6vw, 18px);
}

.news {
  background: #fff;
  padding: var(--pad-y) 0;
}

.news__wrap {
  width: min(var(--wrap-max), 100%);
  margin-inline: auto;
  padding-inline: var(--pad-x);

  /* mobile: single column */
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  align-items: center;
  position: relative;
}

/* Big outlined “About” behind content */
.news__kicker {
  position: absolute;
  top: clamp(-8px, -1vw, -14px);
  left: var(--pad-x);
  transform: none;
  font-weight: 800;
  font-size: var(--kicker-size);
  color: transparent;
  -webkit-text-stroke: 2px #e5e7eb;
          text-stroke: 2px #e5e7eb;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Image */
.news__media {
  margin: 0;
  overflow: hidden;
  border: 0;
}
.news__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /* aspect-ratio: 16 / 9; nicer on mobile */
  border-radius: 10px;
}

/* Text */
.news__content p {
  margin: 0;
  color: #0f172a;
  font-size: var(--body-size);
  line-height: 1.8;
  margin-bottom: 10px;
}

.news__content h3 {
  margin: 0;
  color: #0f172a;
  font-size: var(--h3-size);
  /* text-align: right; */
  margin-bottom: 20px;
  line-height: 1.8;
}

.news__content h4 {
  margin: 0;
  color: #0f172a;
  font-size: var(--h3-size);
  margin-bottom: 20px;
  line-height: 1.8;
}

.news__content h2 {
  margin: 0;
  color: #0f172a;
  font-size: var(--h2-size);
  line-height: 1.8;
}


/* ====== Breakpoints ====== */

/* ≥ 768px (tablets): keep stack but tighten visuals */
@media (min-width: 768px) {
  .news__kicker {
    left: calc(var(--pad-x));
  }
  /* .news__media img {
    aspect-ratio: 4 / 3;
  } */
}

/* ≥ 1024px (desktops): two columns like your original (image | text) */
@media (min-width: 1024px) {
  .news__wrap {
    grid-template-columns: 1.1fr 1fr;
  }
  .news__kicker {
    left: 3%;
    transform: translateX(-10%);
    top: -14px;
  }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* Lists inside news__content */
.news__content ul,
.news__content ol {
  margin: 1em 0 1.5em 1.5em; /* space around lists */
  padding: 0;
  font-size: var(--body-size);
  line-height: 1.8;
  color: #0f172a;
}

.news__content li {
  margin-bottom: 0.5em; /* space between items */
}

/* Style unordered list bullets */
.news__content ul {
  list-style-type: disc;  /* default bullets */
}

/* Style ordered list numbers */
.news__content ol {
  list-style-type: decimal; /* default numbers */
}

/* Optional: custom bullet look */
.news__content ul li::marker {
  color: #1bab32; /* brand green for bullets */
  font-size: 1.1em;
}
