.ob-ac {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
}

/* Üst satır: başlık + sayılar (masaüstü) */
.ob-ac__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
}

/* Başlık bloğu */
.ob-ac__header {
  flex: 1 1 260px;
  min-width: 260px;
}

.ob-ac__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.ob-ac__subtitle {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  margin: 0.35rem 0 0;
}

/* Sayı bloğu */
.ob-ac__stats {
  display: flex;
  align-items: flex-start;
  gap: 2.2rem;
  flex: 0 0 auto;
  margin: 0; /* Olası tema marginlerini sıfırla */
}

.ob-ac__item {
  text-align: center;
}

.ob-ac__number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #2563eb;
}

.ob-ac__label {
  font-size: 14px;
  color: #6b7280;
}

/* Emoji'li özellik satırı */
.ob-ac__features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.2rem;
}

.ob-ac__feature {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #111827;
}

.ob-ac__feature-icon {
  margin-right: 0.4rem;
  font-size: 16px;
}

.ob-ac__feature-text {
  white-space: nowrap;
}

/* Tablet ve mobil uyum */
@media (max-width: 768px) {
  .ob-ac {
    margin-bottom: 1.6rem;
  }

  /* FLEX'İ BIRAK – normal blok düzeni */
  .ob-ac__top {
    display: block;                 /* <<< en kritik satır */
    align-items: initial;
    justify-content: initial;
    gap: 0;                         /* gap devre dışı */
  }

  .ob-ac__stats {
    margin-top: 0.75rem;            /* başlık ile sayaç arası sadece 0.75rem */
    display: flex;
    justify-content: flex-start;
    gap: 1.6rem;
    flex-wrap: wrap;
  }

  .ob-ac__item {
    min-width: 90px;
    text-align: left;
  }

  .ob-ac__features {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    margin-top: 0.9rem;
  }

  .ob-ac__feature-text {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .ob-ac__stats {
    justify-content: space-between;
  }
}