/* HERO */
.team-hero {
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
        url('../images/projects/projbg.jpg') center/cover no-repeat;
    padding: 120px 0;
    color: #fff;
}

.team-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.team-hero h1 span {
    color: #f4c430;
}

.team-hero p {
    margin-top: 10px;
    font-size: 1.1rem;
    opacity: .9;
}

/* TEAM GRID */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* TEAM CARD */
.team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: transform .3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.team-role {
    display: block;
    font-size: .9rem;
    color: #777;
    margin-bottom: 10px;
}

.team-info p {
    font-size: .95rem;
    color: #555;
}
