.slots-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.slot-item {
  position: relative;
  flex: 1 1 100%;
  max-width: 300px;
  box-sizing: border-box;
  margin: 0 auto;
}

.slot-item img {
  width: 100%;
  height: auto;
  display: block;
}

.slot-image {
  display: flex;
  justify-content: center;
  width: auto;
}

.slot-item .slot-title {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin: 12px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

@media (min-width: 450px) {
  .slot-item {
    flex: 0 1 calc(50% - 10px);
    margin: 0;
  }
}

@media (min-width: 768px) {
  .slot-item {
    flex: 0 1 calc(33.333% - 14px);
  }
}

@media (min-width: 1024px) {
  .slot-item {
    flex: 0 1 calc(25% - 15px);
  }
}

@media (min-width: 1300px) {
  .slot-item {
    flex: 0 1 calc(33.333% - 14px);
    max-width: 400px;
  }
  
  .slot-item img {
    max-height: 236px;
    object-fit: contain;
  }
}

.slot-hover {
  display: none;
}

.slot-item:is(:hover, :focus-within) > .slot-hover {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.25);
  box-shadow: 
    0 1px 1px rgb(255, 255, 255),
    0 1px 6px rgb(255, 255, 255),
    inset 0 0 0 1px #ffffff;
  pointer-events: none;
}

.slot-hover-btn {
  padding: 8px 5px;
  width: 125px;
  border-radius: 5px;
  background-color: #f67418;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 10px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  pointer-events: auto;
  cursor: pointer;
  border: none;
  display: block;
}

.slot-hover-btn:hover {
  box-shadow: 0 0 15px #ffffff;
  color: #ffffff;
  font-weight: 900;
}

.slot-hover-btn:active {
  box-shadow: none;
  transform: translateY(2px);
}