/* ==========================================================
   UZMANLAR SAYFASI - Özel Stilller
========================================================== */

/* UZMAN GRID */
.uzmanlar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
}

/* ==========================================================
   FOTOĞRAF - ORTAK CLASS
========================================================== */
.uzman-photo {
  width: 100%;
  height: 400px;  /* ← SABİT YÜKSEKLIK */
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: var(--radius-lg, 15px);
  background: var(--background-light, #f5f5f5);
}
.uzman-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;  /* Yüzü ortada tutar */
  transition: transform 0.3s ease;
}

.uzman-card:hover .uzman-photo img {
  transform: scale(1.05);
}

/* ==========================================================
   PLACEHOLDER (Resim Yoksa)
========================================================== */
.uzman-photo .placeholder {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 20px;
  background: var(--border-color, #e0e0e0);
  color: #999;
}

.uzman-photo .placeholder.visible {
  display: flex;
}

.uzman-photo img.hidden {
  display: none;
}

.placeholder-icon {
  font-size: 3rem;
  opacity: 0.45;
  margin-bottom: 10px;
}

/* ==========================================================
   BİLGİ KISMI
========================================================== */
.uzman-title {
  color: var(--secondary-color, #A0886A);
  font-weight: 600;
  margin-bottom: 14px;
}

.uzman-specialty {
  font-weight: 600;
  margin-bottom: 10px;
}

.uzman-skills {
  margin-bottom: 18px;
  list-style: none;
  padding: 0;
}

.uzman-skills li {
  padding: 4px 0;
}

.uzman-skills li::before {
  content: "• ";
  color: var(--secondary-color, #A0886A);
  font-weight: bold;
}

.uzman-experience {
  display: inline-block;
  padding: 8px 12px;
  background: var(--background-light, #f5f5f5);
  border-radius: 8px;
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 18px;
}

/* ==========================================================
   HERO SECTION
========================================================== */
.uzmanlar-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #A0886A, #C9A87C);
}

.uzmanlar-hero .hero-content {
  max-width: 800px;
  padding: 40px 20px;
}

.uzmanlar-hero h1 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
}

.uzmanlar-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* ==========================================================
   CTA SECTION
========================================================== */
.uzmanlar-cta {
  margin: 50px 0;
  padding: 60px 30px;
  background: var(--background-light, #f5f5f5);
  text-align: center;
}

/* ==========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 768px) {
  .uzmanlar-hero {
    min-height: auto;
    padding: 40px 0;
  }
  
  .uzmanlar-hero h1 {
    font-size: 2rem;
  }
  
  .uzmanlar-hero p {
    font-size: 1rem;
  }
  
  .uzman-photo {
    aspect-ratio: 4 / 5;  /* Mobilde biraz daha dikey */
  }
}

@media (max-width: 480px) {
  .uzmanlar-hero h1 {
    font-size: 1.7rem;
  }
  
  .uzmanlar-hero p {
    font-size: 0.95rem;
  }
}