/* =============================
   TEAM CARD (TAKIM KARTI) BİLEŞENİ
============================= */
.team-card {
    background-color: var(--pure-white);
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-card-image {
    height: 250px;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* Portre fotoğrafları için */
}

.team-card-content {
    padding: 25px;
}

.member-name {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.member-title {
    font-size: 14px;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 15px;
}

.social-links a {
    color: var(--neutral-gray);
    margin: 0 8px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-blue);
}

/* Takım kartı telefon numarası stili */
.member-phone {
    font-size: 14px;
    color: var(--warm-gray);
    margin-top: 10px;
    margin-bottom: 15px;
}
.member-phone a {
    color: var(--warm-gray);
    transition: color 0.3s ease;
}
.member-phone a:hover {
    color: var(--primary-blue);
}
.member-phone i {
    margin-right: 8px;
    color: var(--accent-orange);
}