/* Gestione Istruttori Eventi - Styles */

.istruttori-eventi-container {
    margin: 40px 0;
}

.istruttore-card {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
}

.istruttore-content {
    flex: 1;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.istruttore-content h2 {
    color: #5DADE2;
    font-size: 2em;
    margin-bottom: 10px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
}

.istruttore-content h3 {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Josefin Sans', sans-serif;
}

.istruttore-content .biografia {
    color: #333;
    line-height: 1.6;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.istruttore-image {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.istruttore-profile-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    aspect-ratio: 1;
}

/* Layout alternato */
.istruttore-card:nth-child(even) {
    flex-direction: row-reverse;
}

.istruttore-card:nth-child(even) .istruttore-image {
    margin: 0 30px 0 0;
}

.istruttore-card:nth-child(odd) .istruttore-image {
    margin: 0 0 0 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .istruttore-card,
    .istruttore-card:nth-child(even) {
        flex-direction: column !important;
        text-align: center;
    }
    
    .istruttore-image,
    .istruttore-card:nth-child(even) .istruttore-image,
    .istruttore-card:nth-child(odd) .istruttore-image {
        margin: 20px 0 0 0 !important;
        flex: none !important;
    }
    
    .istruttore-profile-image {
        width: 250px;
        height: 250px;
    }
    
    .istruttore-content {
        padding: 20px;
    }
    
    .istruttore-content h2 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .istruttore-profile-image {
        width: 200px;
        height: 200px;
    }
    
    .istruttore-content {
        padding: 15px;
    }
    
    .istruttore-content h2 {
        font-size: 1.3em;
    }
    
    .istruttore-content h3 {
        font-size: 1em;
    }
}