/* Gutenberg frontend tweaks (small, safe overrides) */

/* nicer paragraph rhythm inside groups/cards */
.wp-block-group p{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* make wide layouts look cleaner */
.wp-block-group.alignwide{
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* better focus */
a:focus-visible,
.wp-block-button__link:focus-visible{
  outline: 3px solid rgba(29,78,216,.35);
  outline-offset: 3px;
  border-radius: 12px;
}