/* sib-style.css - Info boxes styles */
.sib-container{display:flex;gap:24px;flex-wrap:wrap;justify-content:center;align-items:stretch}
.sib-box{position:relative;background:transparent;border:1px solid rgba(255,255,255,0.08);padding:28px 22px 22px 22px;border-radius:8px;min-width:260px;flex:1;max-width:360px;box-sizing:border-box;overflow:visible}
.sib-title{font-family:Arial, Helvetica, sans-serif;font-size:22px;margin:0 0 10px;color:#ffffff;font-weight:700}
.sib-desc{color:rgba(255,255,255,0.55);font-size:13px;line-height:1.5}
.sib-icon{position:absolute;top:-22px;right:18px;width:56px;height:56px;display:flex;align-items:center;justify-content:center;border-radius:6px;background:transparent;pointer-events:none;border:1px solid rgba(255,255,255,0.12)}
.sib-icon img{max-width:48px;max-height:48px;display:block}
.sib-icon.placeholder{background:rgba(255,255,255,0.02)}

/* subtle glow on center box like screenshot */
.sib-container .sib-box:nth-child(2){box-shadow:0 8px 30px rgba(255,255,255,0.02);border-color:rgba(255,255,255,0.06)}

/* make sure on dark backgrounds it shows similarly */
body .sib-container .sib-box{background:rgba(0,0,0,0.15)}

/* Responsive */
@media(max-width:900px){
    .sib-container{flex-direction:column;gap:18px}
    .sib-box{max-width:100%}
    .sib-icon{right:14px;top:-20px}
}
