/* EKİBİMİZ BÖLÜMÜ STİLLERİ (HİZMETLER & SSS İLE TAM BİREBİR UYUMLU) */
.team-section {
  padding: 100px 0 100px 0;
  background-color: #ffffff;
}

.team-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

/* Ortalanmış İkonlu Üst Başlık */
.team-centered-icon-header {
  text-align: center;
  margin-bottom: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.team-centered-icon-header .header-icon-seal {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4C233C 0%, #2A1321 100%);
  color: #EBD8B8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(235, 216, 184, 0.4);
  box-shadow: 0 12px 28px rgba(76, 35, 60, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.team-centered-icon-header:hover .header-icon-seal {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 18px 36px rgba(76, 35, 60, 0.35);
}

.team-subtitle {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #4C233C;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 8px 24px;
  background: #ffffff;
  border: 1px solid rgba(76, 35, 60, 0.12);
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: all 0.3s ease;
}

.team-subtitle::before,
.team-subtitle::after {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #EBD8B8;
  border-radius: 50%;
  display: inline-block;
}

.team-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 400;
}

/* 3 AVUKAT SAF BEYAZ LÜKS PRESTİJ KART IZGARASI */
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.team-white-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #EFEFEF;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
  padding: 42px 28px 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.team-white-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(76, 35, 60, 0.12);
  border-color: rgba(76, 35, 60, 0.22);
}

/* Yuvarlak Profil Avatarı (104px Dairesel Çerçeve) */
.team-white-avatar-box {
  width: 104px !important;
  height: 104px !important;
  min-width: 104px !important;
  min-height: 104px !important;
  max-width: 104px !important;
  max-height: 104px !important;
  border-radius: 50% !important;
  background: #F8F6F2;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 24px rgba(76, 35, 60, 0.15);
  overflow: hidden !important;
  display: block !important;
  margin: 0 auto 16px auto !important;
  position: relative !important;
  transition: all 0.35s ease;
}

.team-white-avatar-box img {
  width: 104px !important;
  height: 104px !important;
  max-width: 104px !important;
  max-height: 104px !important;
  object-fit: cover !important;
  object-position: top center !important;
  border-radius: 50% !important;
  display: block !important;
  transition: transform 0.4s ease;
}

.team-white-card:hover .team-white-avatar-box {
  box-shadow: 0 12px 28px rgba(76, 35, 60, 0.26);
}

.team-white-card:hover .team-white-avatar-box img {
  transform: scale(1.08);
}

/* Şehir / Baro Etiketi */
.team-white-city {
  font-size: 11px;
  font-weight: 700;
  color: #4C233C;
  background: #F9F6F0;
  padding: 4px 16px;
  border-radius: 20px;
  border: 1px solid rgba(76, 35, 60, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.team-white-city i {
  color: #4C233C;
  font-size: 10px;
}

/* İsim & Unvan */
.team-white-name {
  font-size: 18px;
  font-weight: 600;
  color: #1C1D21;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.team-white-card:hover .team-white-name {
  color: #4C233C;
}

.team-white-role {
  font-size: 11px;
  font-weight: 700;
  color: #8C6A48;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .team-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .team-cards-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 440px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .team-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .team-cards-grid {
    gap: 32px;
  }

  .team-white-card {
    padding: 30px 20px 26px 20px;
  }
}


