.elementor-8167 .elementor-element.elementor-element-2bcef0f{--display:flex;}@media(min-width:768px){.elementor-8167 .elementor-element.elementor-element-2bcef0f{--width:90%;}}/* Start custom CSS for text-editor, class: .elementor-element-6648793 *//* ================================
   7Quiz About Us Page Style
   Class: qz-about
   Main Color: #4c00cf
================================ */

.qz-about {
    --qz-primary: #4c00cf;
    --qz-primary-dark: #360092;
    --qz-primary-light: #f5f0ff;
    --qz-primary-soft: #eee5ff;
    --qz-text: #24202e;
    --qz-muted: #6b6478;
    --qz-border: #e7ddff;
    --qz-white: #ffffff;

    direction: rtl;
    text-align: right;
    max-width: 1050px;
    margin: 0 auto;
    padding: 34px 28px;
    color: var(--qz-text);
    font-size: 16px;
    line-height: 2.15;
}

/* باکس کلی متن */
.qz-about {
    background:
        radial-gradient(circle at top left, rgba(76, 0, 207, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
    border: 1px solid var(--qz-border);
    border-radius: 28px;
    box-shadow: 0 18px 55px rgba(76, 0, 207, 0.08);
}

/* عنوان اصلی */
.qz-about h1 {
    position: relative;
    margin: 0 0 26px;
    padding: 0 0 20px;
    color: var(--qz-primary-dark);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.6;
}

.qz-about h1::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 92px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--qz-primary), #8b5cf6);
}

/* تیترهای داخلی */
.qz-about h2 {
    position: relative;
    margin: 38px 0 16px;
    padding: 14px 18px 14px 16px;
    color: var(--qz-primary-dark);
    font-size: 23px;
    font-weight: 850;
    line-height: 1.7;
    background: var(--qz-primary-light);
    border: 1px solid var(--qz-border);
    border-radius: 18px;
}

.qz-about h2::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-left: 10px;
    border-radius: 50%;
    background: var(--qz-primary);
    box-shadow: 0 0 0 6px rgba(76, 0, 207, 0.12);
}

/* پاراگراف‌ها */
.qz-about p {
    margin: 0 0 17px;
    color: var(--qz-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 2.2;
    text-align: justify;
}

/* لیست آزمون‌ها */
.qz-about ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0 26px;
    padding: 0;
    list-style: none;
}

.qz-about li {
    position: relative;
    margin: 0;
    padding: 13px 42px 13px 16px;
    color: var(--qz-text);
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.9;
    background: var(--qz-white);
    border: 1px solid var(--qz-border);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(76, 0, 207, 0.045);
    transition: all 0.25s ease;
}

.qz-about li::before {
    content: "✅";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
}

.qz-about li:hover {
    transform: translateY(-3px);
    border-color: rgba(76, 0, 207, 0.35);
    box-shadow: 0 12px 32px rgba(76, 0, 207, 0.10);
}

/* تاکید روی نام 7Quiz */
.qz-about strong,
.qz-about b {
    color: var(--qz-primary-dark);
    font-weight: 850;
}

/* بخش‌های آخر متن مثل عنوان سئو و متا */
.qz-about p:last-child,
.qz-about p:nth-last-child(2) {
    background: #ffffff;
    border: 1px dashed rgba(76, 0, 207, 0.35);
    border-radius: 16px;
    padding: 14px 16px;
    color: var(--qz-muted);
}

/* لینک‌ها */
.qz-about a {
    color: var(--qz-primary);
    font-weight: 700;
    text-decoration: none;
}

.qz-about a:hover {
    color: var(--qz-primary-dark);
    text-decoration: underline;
}

/* انتخاب متن */
.qz-about ::selection {
    color: #ffffff;
    background: var(--qz-primary);
}

/* ================================
   Responsive
================================ */

@media (max-width: 900px) {
    .qz-about {
        max-width: 100%;
        padding: 28px 22px;
        border-radius: 24px;
        font-size: 15.5px;
    }

    .qz-about h1 {
        font-size: 28px;
    }

    .qz-about h2 {
        font-size: 21px;
    }

    .qz-about ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .qz-about {
        padding: 22px 16px;
        border-radius: 20px;
        line-height: 2;
    }

    .qz-about h1 {
        font-size: 24px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .qz-about h1::after {
        width: 72px;
        height: 4px;
    }

    .qz-about h2 {
        margin-top: 30px;
        padding: 12px 14px;
        font-size: 19px;
        border-radius: 15px;
    }

    .qz-about p {
        font-size: 15px;
        line-height: 2.05;
        text-align: right;
    }

    .qz-about li {
        padding: 12px 39px 12px 13px;
        font-size: 14.5px;
        line-height: 1.9;
        border-radius: 14px;
    }

    .qz-about li::before {
        right: 12px;
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    .qz-about {
        padding: 18px 13px;
    }

    .qz-about h1 {
        font-size: 22px;
    }

    .qz-about h2 {
        font-size: 18px;
    }

    .qz-about p,
    .qz-about li {
        font-size: 14px;
    }
}/* End custom CSS */