/* ── KALİTE BÖLÜMÜ – YENİ LAYOUT ───────────────────────── */
.quality-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 860px) {
  .quality-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.quality-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.quality-trophy-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  background: #fff;
  padding: 1.5rem;
  object-fit: contain;
}

.quality-text-wrap p {
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: .97rem;
}
.quality-text-wrap p:last-of-type {
  margin-bottom: 0;
}
