/* Custom CSS for Process Page - Extra Large Images in Column */

.process-gallery {
    padding: 5rem 0;
    background-color: var(--white);
}

.process-images-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-image-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
}

.process-image-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.process-image-wrapper {
    width: 500px;
    min-width: 500px;
    height: 320px;
    overflow: hidden;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.process-image-item:hover img {
    transform: scale(1.1);
}

.process-image-caption {
    padding: 2.4rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-image-caption h4 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.process-image-caption p {
    color: var(--gray-medium);
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0;
}

/* Tablet */
@media (max-width: 768px) {
    .process-gallery {
        padding: 3rem 0;
    }
    
    .process-images-grid {
        gap: 2rem;
        max-width: 100%;
    }
    
    .process-image-wrapper {
        width: 350px;
        min-width: 350px;
        height: 240px;
    }
    
    .process-image-caption {
        padding: 1.5rem;
    }
    
    .process-image-caption h4 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .process-image-caption p {
        font-size: 1.3rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .process-gallery {
        padding: 2.5rem 0;
    }
    
    .process-images-grid {
        gap: 1.5rem;
    }
    
    .process-image-item {
        flex-direction: column;
    }
    
    .process-image-wrapper {
        width: 100%;
        min-width: 100%;
        height: 280px;
    }
    
    .process-image-caption {
        padding: 1.2rem;
    }
    
    .process-image-caption h4 {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .process-image-caption p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}

