.elementor-17411 .elementor-element.elementor-element-b033a9d{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--overflow:hidden;}.elementor-17411 .elementor-element.elementor-element-acf81ef{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-17411 .elementor-element.elementor-element-5b14054 > .elementor-widget-container{margin:32px 0px 0px 0px;}.elementor-17411 .elementor-element.elementor-element-84d390e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-17411 .elementor-element.elementor-element-058e2e5{--spacer-size:100px;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-17411 .elementor-element.elementor-element-b033a9d{--gap:16px 16px;--row-gap:16px;--column-gap:16px;}}@media(max-width:767px){.elementor-17411 .elementor-element.elementor-element-b033a9d{--flex-direction:row-reverse;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap-reverse;--gap:8px 8px;--row-gap:8px;--column-gap:8px;}}/* Start custom CSS for html, class: .elementor-element-5b14054 *//* تنظیمات کلی برای ایجاد تم رنگی */
:root {
    --primary-color: #2a2a86; /* سرمه‌ای - اولویت اول */
    --secondary-color: #dc1f28; /* قرمز - اولویت دوم */
    --card-background: #ffffff; /* پس‌زمینه کارت */
    --text-color: #333; /* رنگ متن اصلی */
    --light-text-color: #666; /* رنگ متن روشن‌تر */
    --section-header-color: var(--secondary-color); /* رنگ تیتر بخش‌ها */
    --section-header-border-color: var(--secondary-color); /* رنگ خط زیر تیتر بخش‌ها */
    --list-bullet-color: var(--primary-color); /* رنگ نقطه لیست */
    --image-border-color: var(--primary-color); /* رنگ حاشیه عکس */
}

body {
    font-family: inherit; /* ارث‌بری فونت از قالب والد */
    margin: 0;
    padding: 0;
    background-color: #f4f7f6; /* رنگ پس‌زمینه کلی صفحه */
}

.container {
    max-width: 1100px; /* حداکثر عرض کلی صفحه */
    margin: 0 auto;
    padding: 20px;
}

/* استایل باکس بالایی برای تعیین عرض */
.top-box-container {
    background-color: var(--primary-color); /* رنگ پس‌زمینه سرمه‌ای */
    color: white;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 40px; /* فاصله از باکس معرفی استاد */
    box-shadow: 0 8px 20px rgba(42, 42, 134, 0.3); /* سایه با رنگ اصلی */
    display: flex;
    justify-content: center; /* وسط‌چین کردن محتوا */
    align-items: center;
    text-align: center;
    direction: rtl;
}

.top-box-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.top-box-content p {
    font-size: 16px;
    line-height: 1.7;
}

/* استایل باکس معرفی استاد */
.instructor-profile-container {
    background-color: #ffffff; /* پس‌زمینه سفید برای کارت */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* سایه ملایم‌تر */
    overflow: hidden; /* برای حفظ گوشه‌های گرد */
    direction: rtl;
    padding: 30px;
    max-width: 950px; /* تنظیم عرض این باکس، کمی کمتر از عرض کلی */
    margin: 0 auto; /* برای وسط قرار گرفتن */
}

.instructor-profile {
    display: flex;
    flex-wrap: wrap; /* اجازه به شکستن سطر در صورت نیاز */
    align-items: flex-start; /* هم‌ترازی بالا */
    gap: 30px; /* فاصله بین بخش‌ها */
}

.instructor-image-section {
    flex: 0 0 200px; /* اندازه ثابت برای بخش عکس، بدون تغییر اندازه */
    display: flex;
    justify-content: center; /* وسط‌چین کردن عکس */
    padding-top: 10px; /* کمی فاصله از بالا */
}

.instructor-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 7px solid var(--image-border-color); /* حاشیه عکس */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* پس‌زمینه ساده در صورت نبود عکس */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.instructor-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    /* افکت هاور حذف شده است */
}

.instructor-details-section {
    flex: 1; /* گرفتن فضای باقی‌مانده */
    min-width: 300px; /* حداقل عرض برای جلوگیری از فشردگی بیش از حد */
    text-align: right;
}

.instructor-name {
    font-size: 32px;
    color: var(--primary-color); /* سرمه‌ای */
    margin-bottom: 12px;
    font-weight: bold;
    line-height: 1.3;
}

.instructor-title {
    font-size: 17px;
    color: var(--text-color); /* رنگ متن اصلی */
    margin-bottom: 35px; /* فاصله بیشتر از نام */
    line-height: 1.8;
}

.section {
    margin-bottom: 30px; /* فاصله بین بخش‌ها */
}

.section h3 {
    font-size: 22px;
    color: var(--section-header-color); /* قرمز */
    margin-bottom: 18px;
    border-bottom: 3px solid var(--section-header-border-color); /* خط زیر تیتر */
    padding-bottom: 10px;
    display: inline-block;
    font-weight: bold;
}

.section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section li {
    position: relative;
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.9;
    padding-right: 25px; /* فضایی برای بولت */
}

.section li::before {
    content: '\2022'; /* نمایش نقطه */
    color: var(--list-bullet-color); /* سرمه‌ای */
    font-weight: bold;
    font-size: 1.4em; /* بزرگتر کردن نقطه */
    position: absolute;
    right: 0;
    top: -2px; /* تنظیم دقیق موقعیت */
}

.section p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.9;
}

/* تنظیمات برای حالت ریسپانسیو */
@media (max-width: 991px) {
    .instructor-profile {
        flex-direction: column; /* چیدمان ستونی در صفحات کوچکتر */
        align-items: center; /* وسط‌چین کردن */
    }
    .instructor-image-section {
        flex-basis: auto; /* حذف اندازه ثابت */
        width: 200px; /* حفظ عرض عکس */
        margin-bottom: 20px; /* فاصله از جزئیات */
    }
    .instructor-details-section {
        width: 100%; /* استفاده از تمام عرض */
        text-align: center; /* وسط‌چین کردن متن */
    }
    .section li::before {
        right: 50%; /* جابجایی بولت به وسط */
        transform: translateX(50%);
    }
    .section li {
        padding-right: 0; /* حذف padding راست */
        text-align: center; /* وسط‌چین کردن متن لیست */
    }
}

@media (max-width: 767px) {
    .top-box-container {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    .top-box-content h2 {
        font-size: 24px;
    }
    .top-box-content p {
        font-size: 15px;
    }
    .instructor-profile-container {
        padding: 25px 20px;
    }
    .instructor-name {
        font-size: 28px;
    }
    .instructor-title {
        font-size: 16px;
    }
    .section h3 {
        font-size: 20px;
    }
    .section li, .section p {
        font-size: 15px;
    }
    .instructor-image-wrapper {
        width: 180px;
        height: 180px;
        border-width: 5px;
    }
}

@media (max-width: 480px) {
    .instructor-profile-container {
        padding: 20px 15px;
    }
    .instructor-image-wrapper {
        width: 150px;
        height: 150px;
    }
    .instructor-name {
        font-size: 24px;
    }
    .instructor-title {
        font-size: 15px;
    }
    .section h3 {
        font-size: 18px;
    }
    .section li, .section p {
        font-size: 14px;
    }
}/* End custom CSS */