.substainable-production-container {
    max-width: 1600px;
    margin: 0 auto;
}

.production-visual {
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.production-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.production-visual:hover .production-img {
    transform: scale(1.03);
}

.production-content {
    padding: 3rem 2rem;
}

.production-title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.production-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #2c6ecb;
}

.production-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .production-visual {
        height: 250px;
    }

    .production-title {
        font-size: 1.8rem;
    }

    .production-content {
        padding: 2rem 1rem;
    }
}
