/* Hakkımızda Sayfası Özel Stilleri */

/* Core Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

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

.value-card {
  background-color: var(--surface);
  border: 1px solid rgba(27, 48, 34, 0.1);
  padding: 40px 32px;
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.value-card:hover {
  background-color: var(--tactical-green);
  border-top-color: var(--muted-gold);
}

.value-icon {
  margin-bottom: 24px;
  color: var(--muted-gold);
}

.value-card .h3 {
  transition: color 0.3s ease;
}

.value-card:hover .h3 {
  color: white;
}

.value-card p {
  color: rgba(27, 48, 34, 0.7);
  transition: color 0.3s ease;
}

.value-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* History Section */
.history-timeline {
  border-left: 2px solid var(--muted-gold);
  padding-left: 32px;
  margin-left: 16px;
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 0;
  width: 16px;
  height: 16px;
  background-color: var(--tactical-green);
  border: 2px solid var(--muted-gold);
}

.timeline-year {
  font-family: var(--font-mono-family);
  color: var(--muted-gold);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  display: block;
}
