.image-hotspot-grid{
  display: flex;
  gap: 20px;
}
.image-hotspot-grid .left-column,
.image-hotspot-grid .right-column{
  width: calc((100% - 20px) / 2);
}
.image-hotspot-grid .right-column{
  display: grid;
  gap: 20px 20px;
  align-content: center;
  grid-auto-flow: row;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.image-hotspot-grid .hotspot-wrapper{
  position: relative;
}
.image-hotspot-grid .hotspot-wrapper img{
  display: block;
  width: 100%;
  height: auto;
}
.image-hotspot-grid .hotspot-wrapper a.hotspot{
  width: 150px;
  text-decoration: none;
  align-items: center;
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 1;
}
.image-hotspot-grid .hotspot-wrapper a.hotspot .hotspot-icon{
  padding: 4px;
  line-height: 0;
}
.image-hotspot-grid .hotspot-wrapper a.hotspot .hotspot-icon svg{
  width: 18px;
  height: 18px;
  fill: #FFFFFF;
}
.image-hotspot-grid .hotspot-wrapper a.hotspot .hotspot-popover{
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  position: absolute;
  bottom: calc(100% + 10px);
  padding: 8px;
  z-index: 2;
}
.image-hotspot-grid .hotspot-wrapper a.hotspot:hover > .hotspot-popover{
  opacity: 1;
  visibility: visible;
}

@media (max-width:767px){
  .image-hotspot-grid{
    flex-direction: column;
  }
  .image-hotspot-grid .left-column, .image-hotspot-grid .right-column {
    width: 100%;
}
@media (max-width:480px){
  .image-hotspot-grid .right-column{
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
}