/* ========================
           Секция "Наша команда" (Team Section)
               ======================== */
            .team-section {
                padding: 5rem 0;
                background-color: #ffffff;
                /* Если у вас есть фоновый паттерн, раскомментируйте строку ниже и укажите путь */
                /* background-image: url('path-to-your-watermark-pattern.png'); background-repeat: no-repeat; background-position: center; */
            }
        
            .team-section-header {
                text-align: center;
                margin-bottom: 4rem;
            }
        
            .team-icon {
                width: 48px;
                height: auto;
                margin-bottom: 1rem;
            }
        
            .team-main-title {
                font-size: clamp(2rem, 4vw, 2.8rem);
                font-weight: 700;
                color: #000;
                letter-spacing: -0.5px;
            }
        
            /* Карточка сотрудника */
            .team-member {
                margin-bottom: 4.5rem;
            }
        
            .team-member:last-child {
                margin-bottom: 0;
            }
        
            .team-member-name {
                font-size: 1.6rem;
                font-weight: 700;
                color: #111;
                margin-bottom: 1.5rem;
            }
        
            .team-member-photo {
                width: 100%;
                border-radius: 8px; /* Скругление углов фото как на макете */
                object-fit: cover;
                aspect-ratio: 3 / 4.5; /* Сохраняем пропорции портрета */
            }
        
            .team-text-block {
                font-size: 0.95rem;
                line-height: 1.6;
                color: #111;
            }
        
            .team-text-block p {
                margin-bottom: 0.6rem;
            }
        
            .team-subtitle {
                font-size: 1.15rem;
                font-weight: 700;
                color: #000;
                margin-top: 1.5rem;
                margin-bottom: 0.6rem;
            }
        
            /* Адаптив */
            @media (max-width: 767px) {
                .team-member-photo {
                    margin-bottom: 1.5rem;
                    aspect-ratio: 1 / 1; /* На мобилке можно сделать квадратным или оставить как есть */
                }
            }

/* ========================
