/* Decorative Världsmötet mascots stay small in the corner and never intercept controls. */
.gx-header,
.gx-shell {
  position: relative;
  z-index: 1;
}

.gx-header-title {
  gap: 14px;
}

.gx-header-icon-wrap,
.gx-header-icon {
  width: 76px;
  height: 76px;
}

@media (max-width: 520px) {
  .gx-header-icon-wrap,
  .gx-header-icon {
    width: 66px;
    height: 66px;
  }
}

/* Make the Världsmötet card icon easy to recognize among the smaller game cards. */
.game-icon-svg.tern-pair-icon-svg {
  width: 76px;
  height: 76px;
  border-radius: 20px;
}

@media (max-width: 520px) {
  .game-icon-svg.tern-pair-icon-svg {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }
}

.gx-mascot-pair {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 2;
  width: clamp(126px, 13vw, 168px);
  margin: 0;
  pointer-events: none;
  filter: drop-shadow(0 8px 13px rgba(22, 77, 104, .18));
  opacity: .96;
}

.gx-mascot-pair img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 520px) {
  .gx-mascot-pair {
    right: 7px;
    bottom: 6px;
    width: 104px;
    opacity: .76;
  }
}

