﻿/* ====================================================================
   PartnerService – страница «Команда»
   ==================================================================== */

.team-hero,
.team-members {
    padding: 4.5rem 0;
}

    .team-hero h1 {
        font-size: clamp(2rem, 5vw, 2.75rem);
        font-weight: 700;
    }

.team-card {
    background: rgba(255, 255, 255, .55);
    backdrop-filter: saturate(180%) blur(6px);
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgb(0 0 0 / .05);
    transition: box-shadow .25s, transform .25s;
}

    .team-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgb(0 0 0 / .10);
    }

.team-card-img {
    width: 128px;
    height: 128px;
    object-fit: cover;
}

.team-card-name {
    font-size: 1.125rem;
    font-weight: 600;
}

.team-card-role {
    color: var(--color-primary-800);
}

body {
    background: linear-gradient(rgba(255,255,255,.35),rgba(255,255,255,0)), url("../img/wirtgen/banner.jpg") center/cover no-repeat fixed !important;
}

@media (max-width: 767.98px) {
    .team-card-img {
        width: 96px;
        height: 96px;
    }
}
