.real_class_home{
    clear:both;
    width:88%;
    max-width:1110px;
    margin:35px auto 40px;
    direction:rtl;
    box-sizing:border-box;
}

.real_class_header{
    text-align:center;
    margin-bottom:22px;
}

.real_class_header h2{
    margin:0 0 8px;
    color:#333;
    font-size:21px;
    font-weight:700;
    line-height:34px;
}

.real_class_header p{
    margin:0;
    color:#666;
    font-size:13.5px;
    line-height:25px;
}


/* ساختار اصلی */
.real_class_layout{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:20px;
}


/* دو ویدئو کنار هم */
.real_class_videos{
    width:100%;
    max-width:900px;
    margin:0 auto;
    display:grid !important;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr) !important;
    gap:16px;
    justify-items:center;
    align-items:start;
    float:none !important;
    clear:both;
}

.real_class_video_box{
    width:100% !important;
max-width:none !important;
min-width:0;

    margin:0 !important;
    padding:0;

    float:none !important;
    clear:none !important;
    display:block !important;

    background:#fff;
    border:1px solid #e3e3e3;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,.06);

    box-sizing:border-box;
}

.real_class_video_box video{
    display:block !important;
    width:100% !important;
    height:auto;
    aspect-ratio:16/9;
    object-fit:contain;
    background:#111;
}


/* متن زیر ویدئو */
.real_class_video_caption{
    min-height:48px;
    padding:12px 10px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    box-sizing:border-box;
}

.real_class_video_caption strong{
    color:#333;
    font-size:13.5px;
    font-weight:600;
    line-height:24px;
}


/* سه مزیت */
.real_class_points{
    width:100%;
    max-width:900px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.real_class_point{
    min-width:0;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;

    padding:13px 12px;

    background:#f8f8f8;
    border:1px solid #e7e7e7;
    border-radius:14px;

    box-sizing:border-box;

    float:none !important;
    clear:none !important;
}

.real_class_point span{
    width:32px;
    height:32px;
    min-width:32px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:#19b8af;
    color:#fff;

    font-size:13px;
    font-weight:700;
}

.real_class_point strong{
    color:#444;
    font-size:12.5px;
    font-weight:500;
    line-height:21px;
    text-align:center;
}


/* فقط موبایل واقعی */
@media screen and (max-width:560px){

    .real_class_home{
        width:92%;
        margin:28px auto 32px;
    }

    .real_class_header h2{
        font-size:18px;
        line-height:30px;
    }

    .real_class_header p{
        font-size:13px;
        line-height:24px;
    }

    .real_class_videos{
        grid-template-columns:1fr !important;
        max-width:100%;
        gap:14px;
    }

    .real_class_video_box{
        max-width:100% !important;
    }

    .real_class_points{
        grid-template-columns:1fr;
        gap:9px;
    }

    .real_class_point{
        justify-content:flex-start;
    }
}