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

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

.about-info {
    text-align: center;
}

.about-title, .team-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.about-image {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.employee-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
}

@media (min-width: 992px) {
    .employee-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.employee-card {
    background-color: #fae7c9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 15px;
}

.employee-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.employee-name {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 5px;
}

.employee-position {
    font-size: 1em;
    color: #777;
    margin-bottom: 10px;
}

.employee-description {
    font-size: 0.9em;
    color: #666;
    padding: 0 15px;
    white-space: pre-wrap; /* Сохраняем пробелы и переносы строк */
}

.no-employees {
    text-align: center;
    font-style: italic;
    color: #888;
    grid-column: 1 / -1; /* Span across all columns */
}