.team-showcase {
    padding: 80px 0;
    background: var(--bg-shade);
    border-top: 5px solid var(--primary-text-color);
}

.team-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-showcase .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-showcase .section-header h2 {
    font-size: 3rem;
    color: var(--primary-text-color);
    margin-bottom: 20px;
}

.team-showcase .section-header p {
    font-size: 1.2rem;
    color: var(--secondary-text-color);
    max-width: 600px;
    margin: 0 auto;
}

.team-showcase .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    justify-items: center;
}

.team-showcase-card {
    background: var(--white-4345);
    border: 3px solid var(--main-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-showcase-card .team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    border: 4px solid var(--main-color);
    background: var(--accent-color);
}

.team-showcase-card .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-showcase-card h3 {
    font-size: 1.8rem;
    color: var(--primary-text-color);
    margin-bottom: 10px;
}

.team-showcase-card p {
    color: var(--main-color);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.team-showcase-card p:last-of-type {
    color: var(--secondary-text-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.team-showcase-card .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-showcase-card .social-links a {
    width: 45px;
    height: 45px;
    background: var(--main-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-showcase-card .social-links a i {
    font-size: 1.2rem;
}

.team-showcase-card .team-avatar.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-showcase-card .team-avatar.placeholder i {
    font-size: 3rem;
    color: white;
}