.productions-container{
    height: auto;
}
.productions-items{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.productions-row{
    display: flex;
    gap: 10px;
    height: 50%;
}
.productions-item{
    flex: 1;
    position: relative;
    text-align: center;
    overflow: hidden;
    max-height: 300px;
}
.item-img{
    max-height: 100%;
    max-width: auto;
    filter: blur(2px);
    z-index: 1;
    transition: filter 0.3s ease, transform 0.3s ease;
}
.item-text{
    width: 80%;
    margin: 0px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    user-select: none;
    z-index: 2;
    background-color: rgba(240, 240, 240, 0.85);
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease;
    color: #313131;
}
.productions-item:hover .item-img{
    transform: scale(1.2);
    filter: blur(4px);
}
.productions-item:hover .item-text{
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
}

@media (max-width: 820px) {
    .productions-items {
        flex-direction: column;
        gap: 8px;
    }
    .productions-row {
        flex-direction: column;
        height: auto;
        gap: 8px;
    }
    .productions-item {
        width: 100%;
        aspect-ratio: 21 / 8;
        min-height: 120px;
    }
    .item-img {
        position: absolute;
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        object-fit: cover;
        filter: blur(2px);
        transform: translate(-50%,0);
    }
}

@media (hover: none) {
    .productions-item:hover .item-img {
        transform: scale(1);
        filter: blur(2px);
    }
    .productions-item:hover .item-text {
        transform: translate(-50%, -50%);
        opacity: 0.95;
    }
}