.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 calc(50% - 16px);
  box-sizing: border-box;
  width: 300px;
}

.slot-item img {
  width: 100%;
  display: block;
  border: 1px solid #676767;
  box-shadow: 154px rgba(0, 0, 0, 0.1);
}

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

.slot-item .slot-producer {
  margin: 0;
  -webkit-text-fill-color: #f0f0f0;
  color: #f0f0f0;
  font-size: 12px;
  text-transform: capitalize;
  border-bottom: #676767 1px solid;
  text-align: center;
}

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


.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(0, 0, 0, 0.386);
  pointer-events: none;
}
}

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

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


.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(0, 0, 0, 0.386);
  pointer-events: none;
}

}

@media (min-width: 1300px) {
  .slot-item {
    flex: 1 1 calc(33.333% - 16px);
    max-width: 600px;
  }
}

.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: 72%;
  background-color: rgba(0, 0, 0, 0.386);
  pointer-events: none;
}

.slot-hover-btn {
  padding: 27px 12px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe600, #ffb800);
  box-shadow: inset 0 -2px 0 #f90;
  border: #ffe600 2px solid;
  color: #1a1a1a;
  margin-bottom: 10px;
  text-decoration: none;
  text-align: center;
  text-shadow: 0 1px 0 #ffe249;
  text-transform: uppercase;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  pointer-events: auto;
}

.slot-hover-btn:hover {
  background: linear-gradient(0deg, #ffe600, #ffb800);
  color: #1a1a1a;
  border: #ffe600 2px solid;
}

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