/* Стили для страницы структуры БелТПП */

.structure-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.employee-card {
    display: flex;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
}

.employee-photo {
    flex: 0 0 200px;
    margin-right: 20px;
}

.employee-photo img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.employee-info {
    flex: 1;
}

.employee-name {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.employee-position {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 15px;
}

.employee-contacts {
    margin-top: 15px;
}

.contact-item {
    margin-bottom: 8px;
    color: #555;
}

.contact-item i {
    margin-right: 8px;
    color: #777;
}

.department-section {
    margin-bottom: 40px;
}

.department-title {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.address-block {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-top: 10px;
}

/* Стили для адаптивности */
@media (max-width: 768px) {
    .employee-card {
        flex-direction: column;
    }
    
    .employee-photo {
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .employee-photo img {
        max-width: 200px;
    }
} 