
.igstoryvwer-wrap{max-width:1000px;margin:20px auto;font-family:'Segoe UI',Arial}

/* HEADERS */
.igstoryvwer-head{
 text-align:center;
 font-size:26px;
 font-weight:800;
 margin:26px 0 18px;
}

/* SPINNER */
.igstoryvwer-spinner{
 display:none;width:44px;height:44px;
 border:4px solid #e6e6e6;
 border-top:4px solid #ff2d55;
 border-radius:50%;
 animation:spin 1s linear infinite;
 margin:10px auto
}
@keyframes spin{to{transform:rotate(360deg)}}

/* PROFILE CARD */
.igstoryvwer-card{
 display:flex;gap:18px;align-items:center;
 background:linear-gradient(135deg,#fff5f7,#f0f7ff);
 padding:20px;border-radius:22px;
 box-shadow:0 8px 30px rgba(0,0,0,.12)
}
.igstoryvwer-card img{
 width:96px;height:96px;border-radius:50%;
 border:3px solid #fff
}
.igstoryvwer-card h3{margin:0;font-size:22px;color:#222}
.igstoryvwer-follow{white-space:nowrap;font-size:14px;color:#444}
@media(max-width:600px){
 .igstoryvwer-card h3{font-size:17px}
 .igstoryvwer-follow{font-size:12px}
}

/* GRID ALIGNMENT FIX */
.igstoryvwer-grid{
 display:grid;
 grid-template-columns:repeat(2,290px);
 gap:22px;
 justify-content:center;
 margin:0 auto;
}
@media(max-width:700px){
 .igstoryvwer-grid{
  grid-template-columns:290px;
  justify-content:center;
 }
}

/* STORY / HIGHLIGHT CARD */
.igstoryvwer-item{
 width:290px;height:420px;background:#fff;
 border-radius:20px;overflow:hidden;
 box-shadow:0 6px 22px rgba(0,0,0,.15);
 display:flex;flex-direction:column;justify-content:space-between;
 margin:0 auto;
}
.igstoryvwer-thumb{
 height:320px;background-size:cover;
 background-position:center;position:relative
}
.igstoryvwer-play{
 position:absolute;inset:0;display:flex;
 align-items:center;justify-content:center;
 font-size:44px;color:#fff;
 background:rgba(0,0,0,.35);cursor:pointer
}

/* DOWNLOAD BUTTON */
.igstoryvwer-dl{
 display:block;margin:12px auto 16px;
 padding:11px 30px;
 background:#1e90ff;
 color:#fff !important;
 font-weight:600;border-radius:28px;
 text-decoration:none
}

/* LOAD MORE */
.igstoryvwer-loadmore-wrap{text-align:center;margin:15px}
.igstoryvwer-loadmore{
 padding:12px 34px;border-radius:28px;
 background:#1e90ff;color:#fff;
 border:0;font-weight:600;cursor:pointer
}

/* INPUT + BUTTON */
.igstoryvwer-input{
 width:100%;padding:18px;
 border-radius:36px;font-size:16px
}
.igstoryvwer-btn{
 display:block;margin:18px auto;
 padding:14px 42px;border-radius:36px;
 background:linear-gradient(45deg,#ff2d55,#ff8c00);
 color:#fff;font-weight:600;border:0
}

.igstoryvwer-brand{text-align:center;font-size:12px;color:#888;margin-top:12px}


/* SINGLE ITEM DESKTOP CENTER FIX */
.igstoryvwer-grid:has(.igstoryvwer-item:only-child){
 grid-template-columns:290px;
 justify-content:center;
}

