/* Hide on desktops; show on small screens */
.bw-col-toggle {
  display: none;
}
@media (max-width: 767px) {
  .bw-col-toggle {
	display: flex;
	gap: .5rem;
	align-items: center;
	justify-content: flex-end;
	margin: .5rem 0 1rem;
  }
  .bw-col-btn {
	appearance: none;
	border: 1px solid rgba(0,0,0,.15);
	background: #fff;
	padding: .4rem .6rem;
	border-radius: 6px;
	font-size: .85rem;
	line-height: 1;
	cursor: pointer;
  }
  .bw-col-btn[aria-pressed="true"] {
	border-color: rgba(0,0,0,.35);
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
	font-weight: 600;
  }
}
