/* ==========================================================================
   YABIZ VALUES & STANDARDS SECTION (DEĞERLERİMİZ / TEMİZ İÇERİK)
   Birebir Referans Tasarımı + Playfair Serif + 3'lü Grid Kart Düzeni
   ========================================================================== */

.yabiz-values-wrapper {
  background-color: #ffffff;
  padding: 5rem 0 6rem 0;
  margin: 3.5rem 0;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.yabiz-values-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Üst Başlık */
.yabiz-values-header {
  margin-bottom: 3.5rem;
}

.yabiz-values-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 500;
  line-height: 1.2;
  color: #2c2724;
  letter-spacing: -0.01em;
  max-width: 780px;
}

/* 3'lü Kart Izgarası */
.yabiz-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .yabiz-values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .yabiz-values-grid {
    gap: 2.75rem;
  }
}

/* Tekil Değer Kartı */
.yabiz-value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.yabiz-value-card:hover {
  transform: translateY(-4px);
}

/* Kart Görsel Çerçevesi (Kare Form, Temiz Kenarlıklar) */
.yabiz-value-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.75rem;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.08);
}

.yabiz-value-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.yabiz-value-card:hover .yabiz-value-img {
  transform: scale(1.04);
}

/* Vektörel Çizgi İkon */
.yabiz-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f7f5f0;
  color: #2c2724;
  font-size: 1.45rem;
  margin-bottom: 1.15rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.yabiz-value-card:hover .yabiz-value-icon {
  background-color: #c5a85c;
  color: #ffffff;
}

/* Kart Başlığı */
.yabiz-value-name {
  font-family: var(--nav-font, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

/* Kart Açıklaması */
.yabiz-value-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #64748b;
  max-width: 320px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .yabiz-values-wrapper {
    padding: 3.5rem 0;
    margin: 2rem 0;
  }

  .yabiz-values-title {
    font-size: 2rem;
    text-align: center;
  }

  .yabiz-values-header {
    margin-bottom: 2.5rem;
  }
}
