/* ======================================================================
   SECTION — TESTIMONIALS
   Prefix: .ts-
   1 / 2 / 3 sütun grid (responsive)
   ====================================================================== */

.ts {
    padding: var(--sp-10) 0 var(--sp-12) 0;
    background: var(--bg-soft);
    position: relative;
}

.ts-inner {
    max-width: var(--container);
    margin-inline: auto;
    padding: 0 var(--sp-4);
}

@media (min-width: 768px) {
    .ts-inner { padding: 0 var(--sp-6); }
}

.ts-header {
    text-align: center;
    margin-bottom: var(--sp-8);
}

.ts-eyebrow {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--sp-2);
}

.ts-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--fw-bold);
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text);
    margin: 0 0 var(--sp-2) 0;
}

.ts-subtitle {
    font-size: var(--fs-base);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Aggregate rating (opsiyonel) */
.ts-aggregate {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    margin-top: var(--sp-4);
    box-shadow: var(--shadow);
}

.ts-aggregate-stars {
    display: flex;
    gap: 1px;
    color: #f59e0b;
}
.ts-aggregate-stars svg {
    width: 14px;
    height: 14px;
}

.ts-aggregate-text {
    font-size: var(--fs-sm);
    color: var(--text);
    font-weight: var(--fw-medium);
}

/* ─────────── Grid ─────────── */

.ts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
}

@media (min-width: 640px) {
    .ts-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
}

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

/* ─────────── Empty state ─────────── */

.ts-empty {
    text-align: center;
    padding: var(--sp-10) var(--sp-4);
    background: var(--bg-card);
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
}

.ts-empty-icon {
    font-size: 56px;
    margin-bottom: var(--sp-3);
    opacity: 0.4;
}

.ts-empty-text {
    font-size: var(--fs-sm);
    max-width: 480px;
    margin: 0 auto;
    line-height: var(--lh-relaxed);
}

/* ─────────── Footer CTA ─────────── */

.ts-footer {
    text-align: center;
    margin-top: var(--sp-8);
}

.ts-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    transition: gap var(--t-fast);
}
.ts-cta:hover {
    gap: 12px;
    color: var(--primary-dk);
}
.ts-cta svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
