/* Custom Portfolio Team View styles */
.team-profile-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212; /* Dark background */
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.team-profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1e1e1e;
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
    text-align: center;
}

.team-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(240, 86, 39, 0.3);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.team-image img:hover {
    transform: scale(1.05);
}

.team-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #f05627;
}

.team-profession,
.team-city {
    font-size: 1.05rem;
    margin: 6px 0;
    color: #bbb;
}

.team-biography h2 {
    margin-top: 18px;
    font-size: 1.3rem;
    color: #fff;
}

.team-biography p {
    line-height: 1.65;
    margin-bottom: 10px;
    color: #ccc;
}

.team-social {
    margin-top: 18px;
}

.team-social a {
    display: inline-block;
    margin-right: 12px;
    color: #f05627;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: #c8431f;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-profile-card {
        padding: 25px;
    }
    .team-image {
        width: 160px;
        height: 160px;
    }
    .team-name {
        font-size: 1.8rem;
    }
    .team-profession,
    .team-city {
        font-size: 1rem;
    }
    .team-biography h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 720px) {
    .team-profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    .team-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
        box-shadow: 0 0 10px rgba(240, 86, 39, 0.25);
    }
    .team-name {
        font-size: 1.6rem;
    }
    .team-profession,
    .team-city {
        font-size: 1rem;
    }
    .team-biography h2 {
        font-size: 1.1rem;
    }
    .team-social a {
        font-size: 1rem;
        margin-right: 10px;
    }
}
