.slots-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.slot-item {
    position: relative;
    flex: 1 1 calc(50% - 16px);
    box-sizing: border-box;
    max-width: 300px;
}

.slot-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slot-item .slot-title {
    -webkit-text-fill-color: #232323;
    color: #232323;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.slot-item .slot-producer {
    margin: 0;
    -webkit-text-fill-color: #232323;
    color: #232323;
    font-size: 12px;
    text-transform: capitalize
}

@media (min-width: 450px) {
    .slot-item {
        flex: 1 1 calc(33.333% - 16px);
    }
}

@media (min-width: 768px) {
    .slot-item {
        flex: 1 1 calc(25% - 16px);
    }
}

@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: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.slot-hover-btn {
    padding: 4px 12px;
    border-radius: 50px;
    background: linear-gradient(180deg, #ffe600, #ffb800);
    box-shadow: inset 0 -2px 0 #f90;
    color: #1a1a1a;
    text-decoration: none;
    text-align: center;
    text-shadow: 0 1px 0 #ffe249;
    text-transform: uppercase;
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
    pointer-events: auto;
}

.slot-hover-btn:hover {
    background: linear-gradient(0deg, #ffe600, #ffb800);
}

.slot-hover-btn:active {
    box-shadow: none;
    transform: translateY(2px);
}