/* Source [data-dc-tpl='19']: white card, 2-col change grid, stacks on mobile. */
.changelog-callout {
  /* Source card is content-box: the gate reads getComputedStyle().width, which returns
     the content width (1118 desktop / 244 mobile) for content-box, matching the source. */
  box-sizing: content-box;
  margin-top: 56px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(226, 222, 215);
  padding: 36px 40px;
  color: rgb(20, 20, 20);
}

.changelog-callout__heading {
  margin: 0 0 20px;
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: 20px;
  font-weight: 700;
  /* Source h2 uses line-height:normal (=22px for Archivo Black 20px); the theme base
     forces 20px, which lifts every change row 2px and mismatches the dense text. */
  line-height: 1.1;
  text-transform: uppercase;
}

.changelog-callout__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
}

.changelog-callout__row {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.changelog-callout__arrow {
  flex-shrink: 0;
  color: rgb(31, 51, 58);
  font-weight: 700;
}

/* The source keeps the 2-column change grid at every viewport — on mobile the columns
   narrow (~102px) and wrap heavily rather than stacking to one column. */
