.sajkuthir-sbc{
    width:100%;
    background:var(--sbc-bg,#FFF8F6);
    padding:20px 0 18px;
    box-sizing:border-box;
}
.sajkuthir-sbc *{box-sizing:border-box}
.sbc-inner{
    width:min(100% - 32px, 1240px);
    margin:0 auto;
}
.sbc-heading{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:16px;
}
.sbc-heading h2{
    margin:0;
    color:var(--sbc-accent,#8A0E45);
    font-size:25px;
    line-height:1.25;
    font-weight:700;
    letter-spacing:-.2px;
}
.sbc-heading p{
    margin:5px 0 0;
    color:var(--sbc-text,#4A4A4A);
    font-size:13px;
    line-height:1.45;
}
.sbc-view-all{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:var(--sbc-accent,#8A0E45);
    font-size:13px;
    font-weight:600;
    text-decoration:none!important;
}
.sbc-view-all span{font-size:18px;line-height:1}
.sbc-grid{
    display:grid;
    grid-template-columns:repeat(8,minmax(0,1fr));
    gap:12px;
}
.sbc-card{
    min-width:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    text-decoration:none!important;
    color:var(--sbc-text,#4A4A4A);
    transition:transform .22s ease;
}
.sbc-card:hover{transform:translateY(-3px)}
.sbc-image{
    width:100%;
    aspect-ratio:1/1;
    border-radius:50%;
    background:#fff;
    border:1px solid rgba(138,14,69,.08);
    box-shadow:0 5px 18px rgba(80,20,45,.07);
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}
.sbc-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.sbc-placeholder{
    color:var(--sbc-accent,#8A0E45);
    font-size:28px;
}
.sbc-name{
    display:block;
    width:100%;
    margin-top:9px;
    font-size:13px;
    line-height:1.35;
    font-weight:600;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
@media (max-width:1024px){
    .sbc-inner{width:min(100% - 26px,1000px)}
    .sbc-grid{
        grid-template-columns:repeat(6,minmax(0,1fr));
        gap:11px;
    }
}
@media (max-width:767px){
    .sajkuthir-sbc{padding:16px 0 14px}
    .sbc-inner{width:100%;padding:0 14px}
    .sbc-heading{margin-bottom:13px;align-items:center}
    .sbc-heading h2{font-size:20px}
    .sbc-heading p{font-size:11px;margin-top:3px}
    .sbc-view-all{font-size:12px}
    .sbc-grid{
        display:flex;
        overflow-x:auto;
        gap:11px;
        padding:2px 2px 7px;
        scroll-snap-type:x proximity;
        scrollbar-width:none;
        -webkit-overflow-scrolling:touch;
    }
    .sbc-grid::-webkit-scrollbar{display:none}
    .sbc-card{
        flex:0 0 calc((100vw - 61px)/5);
        max-width:78px;
        scroll-snap-align:start;
    }
    .sbc-name{font-size:11px;margin-top:7px}
}
@media (max-width:430px){
    .sbc-card{flex-basis:64px;max-width:64px}
    .sbc-grid{gap:10px}
}
