/* VERB DEV ONLY — transparent borders, rounded blocks, selected copy halves. */
:where(
  section,
  article,
  aside,
  main,
  header,
  footer,
  nav,
  form,
  fieldset,
  table,
  .card,
  [class*="card"],
  [class*="block"],
  [class*="panel"],
  [class*="tile"],
  [class*="section"],
  [class*="container"],
  [class*="wrapper"]
) {
  border-color: transparent !important;
  outline-color: transparent !important;
}

/* Applied only after the runtime verifies a real two-column text half. */
.verb-dev-copy-half-transparent,
.verb-dev-copy-half-transparent::before,
.verb-dev-copy-half-transparent::after {
  background-color: transparent !important;
}

/* Keep all other block backgrounds and only round their corners. */
:where(
  section,
  article,
  fieldset,
  .card,
  [class*="card"],
  [class*="block"],
  [class*="panel"],
  [class*="tile"]
) {
  border-radius: 20px !important;
}
