/* Shared controls for profile modals used on the top and pitch pages. */
.profile-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 2px solid #111;
  background: #fff;
  color: #111;
  font: 400 22px/1 Arial, sans-serif;
  cursor: pointer;
}
.profile-modal-close:hover { background: #f5f4f2; }
.profile-modal-close:focus-visible { outline: 2px solid #111; outline-offset: 2px; }
