/* Общие стили */
body {
    font-family: 'Open Sans', sans-serif; /* Новый шрифт для основного текста */
    margin: 0;
    padding: 0;
    background-color: #ecf0f1; /* Новый цвет фона */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.team-container {
    width: 90%;
    max-width: 900px;
    background-color: #fff;
    padding: 50px 30px; /* Увеличиваем отступы */
    border-radius: 12px; /* Более скругленные углы */
    box-shadow: 0 10px 40px rgba(0,0,0,0.15); /* Более заметная тень */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.team-title {
    margin-bottom: 40px; /* Больше отступ */
}

.team-title h1 {
    font-size: 3em; /* Увеличиваем размер заголовка */
    font-family: 'Oswald', sans-serif; /* Новый шрифт для заголовков */
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50; /* Новый цвет заголовка */
    text-transform: uppercase; /* Заглавные буквы */
    letter-spacing: 1px; /* Небольшое расстояние между буквами */
}

.team-title p {
    font-size: 1.2em;
    color: #777; /* Более мягкий цвет текста */
    line-height: 1.7; /* Увеличиваем межстрочный интервал */
    max-width: 700px; /* Ограничиваем ширину текста */
}

/* Team Members */
.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Минимальная ширина карточки */
    gap: 35px; /* Увеличиваем отступ */
    width: 100%;
}

/* Убираем подчеркивание ссылок */
.team-members a {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;  /* Вернули строку */
    display: block;  /* Вернули строку */
}

.team-member {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Плавный переход и тени */
}

.team-member:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.2);
}

/* Отключаем события мыши для элементов внутри ссылки */
.team-member img,
.team-member h3,
.team-member p,
.team-member .social-links {
    pointer-events: none;
}

.team-member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: 1.6em;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
    color: #34495e;
}

.team-role {
    font-style: italic;
    color: #8e44ad;
    margin-bottom: 12px;
}

.team-description {
    font-size: 1.1em;
    color: #666;
    margin-top: 15px;
    line-height: 1.6;
}

.team-actions {
    margin-top: 50px;
}

.btn {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    margin: 0 12px;
    font-weight: 600;
}

.btn:hover {
    background-color: #2980b9;
    color: #fff;
}

.btn-primary {
    background-color: #27ae60;
}

.btn-primary:hover {
    background-color: #219651;
}

.team-footer {
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    font-size: 1em;
    color: #aaa;
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .team-members {
        grid-template-columns: 1fr;
    }
    .btn {
        display: block;
        width: 100%;
        margin: 12px 0;
        text-align: center;
    }
    .team-title h1 {
        font-size: 2.8em;
    }
    .team-title p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .team-title h1 {
        font-size: 2.5em;
    }
    .team-title p {
        font-size: 1em;
    }
    .team-member img {
        width: 140px;
        height: 140px;
    }
    .team-member h3 {
        font-size: 1.4em;
    }
    .team-container {
        padding: 30px 15px;
    }
}