/* =============================================
   MEG Teması – EKIP
   Yüklendiği Yer : ANASAYFA / HAKKIMIZDA
   İçerik         : Ekip kartları
   ============================================= */

.meg-ekip { 
    padding: 120px 0; 
    background: var(--white); 
}

.meg-ekip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px; /* Boşlukları biraz açmak ferahlık sağlar */
}

.meg-ekip__card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04); /* Border'ı çok hafiflettim */
    border-radius: 20px; /* Daha modern, yuvarlak köşeler */
    overflow: hidden;
transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); /* Çok hafif taban gölgesi */
}

.meg-ekip__card:hover { 
    border-color: var(--navy); 
    box-shadow: 0 30px 60px rgba(13, 61, 56, 0.15); 
    transform: translateY(-12px); 
}

.meg-ekip__photo {
    position: relative;
    height: 260px; /* Fotoğraf alanını biraz büyüttüm, daha prestijli durur */
    background: linear-gradient(135deg, var(--navy), #1a3a5a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.meg-ekip__img { 
    width: 100%; 
    height: 100%; 
    /* contain: Görselin tamamını kutuya sığdırır, kesmez */
    object-fit: contain; 
    /* Logo kullanıyorsan kenarlardan boşluk bırakmak şık durur */
    padding: 30px; 
    transition: transform 0.6s ease;
}

.meg-ekip__card:hover .meg-ekip__img {
    transform: scale(1.05); /* Hoverda hafif zoom efekti */
}

.meg-ekip__avatar {
    width: 100px; 
    height: 100px;
    background: rgba(212, 160, 23, 0.1);
    border: 2px dashed rgba(212, 160, 23, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 40px;
}

.meg-ekip__linkedin {
    position: absolute;
    bottom: 20px; 
    right: 20px;
    width: 40px; 
    height: 40px;
    background: var(--white); /* Beyaz zemin üzerine altın ikon daha lüks durur */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 2;
}

.meg-ekip__linkedin:hover { 
    background: var(--gold); 
    color: #fff; 
    transform: translateY(-3px); 
}

.meg-ekip__info { 
    padding: 28px; 
}

.meg-ekip__info h3 { 
    font-family: var(--font-display); 
    font-size: 20px; 
    color: var(--navy); 
    margin-bottom: 6px; 
    font-weight: 700;
}

.meg-ekip__unvan { 
    font-size: 13px; 
    font-weight: 700; 
    color: var(--gold); 
    letter-spacing: 1px; 
    text-transform: uppercase; /* Ünvanları büyük harf yapmak daha kurumsal */
    margin-bottom: 15px; 
}

.meg-ekip__details { /* Sicil ve lisans için ortak kapsayıcı (varsa) */
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}

.meg-ekip__sicil, .meg-ekip__lisans, .meg-ekip__tel {
    font-size: 12.5px; 
    color: var(--muted);
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 8px;
}

.meg-ekip__sicil i, .meg-ekip__lisans i, .meg-ekip__tel i { 
    color: var(--gold); 
    width: 16px; /* İkonların hizalı durması için sabit genişlik */
    text-align: center;
}

.meg-ekip__uzmanlik { 
    display: grid;                 /* Flex yerine Grid daha garantidir */
    grid-template-columns: repeat(3, 1fr); /* Tam olarak yan yana 3 eşit sütun yapar */
    gap: 8px;                      /* Aralarındaki boşluk */
    margin-top: 20px; 
}

.meg-ekip__uzmanlik span {
    background: #f8f9fa; 
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 6px; 
    font-size: 10px;               /* 3 tane sığması için puntoyu biraz küçültebilirsin */
    color: var(--navy); 
    padding: 6px 2px;              /* İç boşluğu (sağ-sol) daralttık */
    font-weight: 600;
    text-align: center;            /* Yazıyı ortala */
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;           /* Yazının alt satıra geçmesini engeller */
}

/* Alt Yasal Bilgilendirme Çubuğu */
.meg-ekip__yasal {
    background: var(--navy);
    border-radius: 16px;
    padding: 25px 35px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0, 20, 60, 0.2);
}

.meg-ekip__yasal-icon { 
    color: var(--gold); 
    font-size: 28px; 
}

.meg-ekip__yasal-items span { 
    font-size: 13px; 
    color: rgba(255,255,255,0.7); 
    line-height: 1.6;
}

.meg-ekip__yasal-items strong { 
    color: var(--gold-light); 
    font-weight: 600;
}

/* Mobil Uyumluluk */