.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%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 154px rgba(0, 0, 0, 0.1); 
}

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

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

.slot-item:hover > .slot-title {
  -webkit-text-fill-color: #fff800;
  color: #fff800;
}


@media (min-width: 450px) {
  body .slot-item:is(:hover, :focus-within) > .slot-hover {
  height: 82%;
}

.slot-item {
  flex: 1 1 calc(33.333% - 16px);
  width: 123.48px;
}
}

@media (min-width: 500px) and (max-width: 560px) {

  .slot-item {
    width: 138.75px;
    height: auto;
  }
}

@media (min-width: 561px) {

  .slot-item {
    flex: 1 1 calc(33.333% - 16px);
    width: 168px;
  }

  picture {
    display: flex;
    justify-content: center;
    width: auto;
  }
}


@media (min-width: 768px) {
.slot-item {
    width: 158.65px;
    height: auto;
  }

  .slot-image {
    width: auto;
  }
}

@media (min-width: 1200px) and (max-width: 1299px) {
    body .slot-item:is(:hover, :focus-within) > .slot-hover {
  height: 85%;
}
}

@media (min-width: 1300px) {
body .slot-item:is(:hover, :focus-within) > .slot-hover {
  height: 72%;
}

  .slot-item {
    width: 230px;
    height: 200.9px;
  }

.slot-item img {
        width: 230px;
        height: 142.5px;
    }
}

.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: 87%;
  background-color: #1a1a1a8e;
  box-shadow: 
  0 1px 1px #ffd800,
  0 1px 6px #daab00,
  0 0 0 1px #a18900 inset;
  border-radius: 8px;
  pointer-events: none;
}

.slot-hover-btn {
  padding: 8px 5px;
  width: 125px;
  border-radius: 50px;
  background: radial-gradient(41.13% 88.24% at 50% 69.12%, #ffd500 30.8%, #ffd800 100%);
  color: #000000;
  align-items: center;
  font-weight: 900;
  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: radial-gradient(41.13% 88.24% at 50% 69.12%, #ebd42d 30.8%, #fbdc2b 100%);
  box-shadow: 0 0 15px #fff34d;
  color: #1a1a1a;
  font-weight: 900;
}

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