.aa-hotkey-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
  box-sizing: border-box;
}

.aa-hotkey-container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-left:0;
}

.aa-hotkey-square-div {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 192px;
  box-shadow: var(--shadow);
  border-radius: var(--base-radius);
  transition: var(--base-transition);
}

.aa-hotkey-square-div::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.aa-hotkey-square-div a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

.aa-hotkey-square-div:has(a:hover) {
  box-shadow: var(--hover-shadow)    
}

.aa-hotkey-square-div::before {
  content: '';
  display: block;
  padding-top: 100%; /* makes it always square */
}

.aa-hotkey-text {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;

}