.ncs-section{
    box-sizing:border-box;
    width:100%;
    background:var(--ncs-bg,#f9f3f9);
    padding:20px 15px 28px;
    font-family:var(--ncs-font,Arial,Helvetica,sans-serif);
    overflow:hidden;
}
.ncs-section *, .ncs-section *::before, .ncs-section *::after{box-sizing:border-box}
.ncs-container{width:100%;max-width:var(--ncs-max,1680px);margin:0 auto}
.ncs-heading{
    margin:0 0 18px;
    padding:0;
    text-align:center;
    color:var(--ncs-heading,#7f4141);
    font-size:var(--ncs-heading-size,52px);
    line-height:1.08;
    font-weight:var(--ncs-heading-weight,400);
}
.ncs-grid{
    display:grid;
    grid-template-columns:repeat(var(--ncs-cols,5),minmax(0,1fr));
    gap:var(--ncs-gap,12px);
    align-items:stretch;
}
.ncs-course-card{
    min-width:0;
    margin:0;
    padding:var(--ncs-card-padding,8px);
    background:var(--ncs-card-bg,#fbf7fb);
    border:1px solid var(--ncs-card-border,#ddd);
    border-radius:var(--ncs-card-radius,10px);
    text-align:center;
    display:flex;
    flex-direction:column;
    overflow:hidden;
}
.ncs-course-image{
    width:100%;
    aspect-ratio:300/170;
    overflow:hidden;
    border-radius:var(--ncs-image-radius,9px);
    background:#eee;
    flex:0 0 auto;
}
.ncs-course-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.ncs-placeholder{display:flex;align-items:center;justify-content:center;color:#777;font-size:13px}
.ncs-course-content{
    display:flex;
    flex:1 1 auto;
    flex-direction:column;
    align-items:center;
    padding:8px 3px 4px;
}
.ncs-course-title{
    width:100%;
    min-height:3.15em;
    margin:0 0 12px;
    padding:0;
    color:var(--ncs-title,#344d73);
    font-size:var(--ncs-title-size,20px);
    line-height:1.22;
    font-weight:var(--ncs-title-weight,700);
}
.ncs-discount{
    margin:0 0 9px;
    color:var(--ncs-discount,#c47f00);
    font-size:var(--ncs-discount-size,20px);
    line-height:1.2;
    font-weight:700;
}
.ncs-price{
    margin:0 0 10px;
    color:var(--ncs-price,#ff1111);
    font-size:var(--ncs-price-size,24px);
    line-height:1.1;
    font-weight:700;
}
.ncs-mrp{
    margin:0 0 13px;
    color:var(--ncs-mrp,#4334d9);
    font-size:var(--ncs-mrp-size,16px);
    line-height:1.2;
    font-weight:700;
    text-decoration:line-through;
    text-decoration-thickness:1.5px;
}
.ncs-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:auto;
    min-height:40px;
    padding:var(--ncs-button-py,10px) var(--ncs-button-px,18px);
    background:var(--ncs-button,#57bd5a);
    color:var(--ncs-button-color,#fff) !important;
    border:0;
    border-radius:var(--ncs-button-radius,9px);
    font-size:var(--ncs-button-size,18px);
    line-height:1.15;
    font-weight:400;
    text-decoration:none !important;
    transition:background-color .18s ease,transform .12s ease;
}
.ncs-button:hover,.ncs-button:focus{background:var(--ncs-button-hover,#49ad4e);color:var(--ncs-button-color,#fff) !important}
.ncs-button:active{transform:translateY(1px)}
@media (max-width:1100px){
    .ncs-heading{font-size:clamp(34px,var(--ncs-heading-size,52px),48px)}
    .ncs-grid{grid-template-columns:repeat(var(--ncs-cols-tablet,3),minmax(0,1fr))}
}
@media (max-width:767px){
    .ncs-section{padding:12px 10px 22px}
    .ncs-heading{font-size:clamp(30px,7vw,40px);margin-bottom:14px}
    .ncs-grid{grid-template-columns:repeat(var(--ncs-cols-mobile,2),minmax(0,1fr));gap:10px}
    .ncs-course-card{padding:8px}
    .ncs-course-title{font-size:clamp(17px,var(--ncs-title-size,20px),20px);min-height:4.2em;margin-bottom:11px}
    .ncs-discount{font-size:clamp(15px,var(--ncs-discount-size,20px),18px)}
    .ncs-price{font-size:clamp(21px,var(--ncs-price-size,24px),25px)}
    .ncs-mrp{font-size:14px}
    .ncs-button{font-size:16px;padding:9px 15px;min-height:40px}
}
