@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&display=swap');

/* ── Section ─────────────────────────────────────────────── */
.lft-section {
    direction: rtl;
    font-family: 'Cairo', Tahoma, sans-serif;
    background: #fff;
    padding: 48px 56px 60px;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ── Header row ──────────────────────────────────────────── */
.lft-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7ef;
    margin-bottom: 32px;
}

.lft-title-block { text-align: right; flex: 1; }

.lft-title {
    font-size: 38px;
    font-weight: 900;
    color: #1a337a;
    margin: 0 0 6px;
    line-height: 1.15;
}
.lft-title-underline {
    width: 80px;
    height: 3px;
    background: #1a337a;
    margin: 0 0 8px 0;
    border-radius: 2px;
}
.lft-subtitle {
    font-size: 13.5px;
    color: #aaa;
    margin: 0;
}

/* ── Nav arrows — مخفية (مش محتاجينها) ──────────────────── */
.lft-nav { display: none; }

/* ── Grid — كل الكروت ظاهرة دايمًا ─────────────────────── */
.lft-wrap  { }
.lft-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

/* ── Card ────────────────────────────────────────────────── */
.lft-card {
    background: #fff;
    border: 1px solid #e8eaf2;
    border-radius: 12px;
    padding: 28px 20px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    direction: rtl;
    transition: box-shadow .25s, transform .25s;
}
.lft-card:hover {
    box-shadow: 0 8px 28px rgba(26,51,122,.10);
    transform: translateY(-4px);
}

/* ── Avatar ──────────────────────────────────────────────── */
.lft-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #c8d0e8;
    background: #eef0f8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
}
.lft-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lft-initial { font-size: 28px; font-weight: 700; color: #3b5fc0; }

/* ── Role ────────────────────────────────────────────────── */
.lft-role { font-size: 12.5px; color: #aaa; margin: 0 0 4px; font-weight: 400; }

/* ── Name ────────────────────────────────────────────────── */
.lft-name { font-size: 20px; font-weight: 700; color: #1a337a; margin: 0 0 10px; }

/* ── Stars ───────────────────────────────────────────────── */
.lft-stars { display: flex; flex-direction: row; justify-content: center; gap: 2px; margin-bottom: 14px; }
.lft-star    { font-size: 17px; color: #ddd; }
.lft-star.on { color: #f5c518; }

/* ── Accent line ─────────────────────────────────────────── */
.lft-line { width: 100%; height: 2px; background: #1a337a; border-radius: 1px; margin-bottom: 14px; }

/* ── Quote mark ──────────────────────────────────────────── */
.lft-quote-icon {
    font-size: 48px;
    font-weight: 900;
    color: #d6daea;
    line-height: .7;
    margin-bottom: 10px;
    font-family: Georgia, serif;
    align-self: flex-start;
}

/* ── Review text ─────────────────────────────────────────── */
.lft-review { font-size: 13px; color: #888; line-height: 1.85; margin: 0; text-align: right; direction: rtl; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
    .lft-section { padding: 32px 24px 40px; }
    .lft-title   { font-size: 28px; }
    .lft-track   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .lft-section { padding: 24px 16px 32px; }
    .lft-header  { flex-direction: column-reverse; gap: 16px; align-items: flex-end; }
    .lft-track   { grid-template-columns: 1fr; }
}
