
.production__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #809501;
}

.production__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.production__item {
    position: relative;
    width: 100%;
    height: 304px;
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.production__item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.production__item-bg {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.production__item-text {
    position: absolute;
    bottom: 23px;
    left: 23px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.474;
    text-transform: uppercase;
    color: #FFFFFF;
    z-index: 2;
}

.production__item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.production__item:hover .production__item-bg {
    transform: scale(1.05);
}

/* Hover эффект с текстом */
.production__item-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #809501;
    border: 1px solid #809501;
    border-radius: 28px;
    padding: 0px 27px 22px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.production__item:hover .production__item-hover {
    opacity: 1;
    visibility: visible;
}

.production__item-hover-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.474;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.production__item-hover-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #FFFFFF;
}