/* Stili personalizzati per la pagina other-projects */

/* Layout process-step */
.process-step {
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid #eee;
}

.process-step:last-child {
    border-bottom: none;
}

.process-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.process-text {
    flex: 1;
}

.process-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Stili per titolo, sottotitolo e tag */
.process-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    color: #333;
}

.process-text h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.process-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.process-tag {
    font-size: 0.8rem;
    background-color: #f0f0f0;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-weight: 500;
}

/* Stili per il contenuto testuale */
.process-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.process-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.process-text li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Aumento dello spazio nella sezione dei progetti */
.project-process {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.project-process h2 {
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 900px) {
    .process-content {
        flex-direction: column;
    }
    
    .process-image {
        margin-top: 1.5rem;
        order: 1;
    }
    
    .process-text {
        order: 0;
    }
} 