/* Start custom CSS for html, class: .elementor-element-8e39956 */.ref-section {
  padding: 70px 20px;
  background: #f7f8fa;
}

.ref-header {
  text-align: center;
  margin-bottom: 40px;
}

.ref-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ref-header p {
  font-size: 15px;
  color: #6b6f82;
  margin: 0;
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}

.ref-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 18px 20px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ref-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.ref-logo-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.ref-item img {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(10%);
}

.ref-item h3 {
  font-size: 14px;
  font-weight: 600;
  color: #1f2933;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Logosuz olanlar için initials (harf) stili */
.ref-item.text-only .ref-logo-wrap {
  background: #eef1f7;
  border-radius: 999px;
}

.ref-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f766e, #22c55e);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .ref-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ref-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .ref-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */