/* INFLUENCERS PAGE */
.inf-list-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--rule);}
.inf-list-card{background:var(--white);cursor:pointer;overflow:hidden;transition:background .25s;text-decoration:none;color:inherit;display:flex;flex-direction:column;}
.inf-list-card:hover{background:var(--cream);}
.inf-list-img{height:320px;overflow:hidden;position:relative;}
.inf-list-img img{width:100%;height:100%;object-fit:cover;object-position:top;transition:transform .7s;}
.inf-list-card:hover .inf-list-img img{transform:scale(1.07);}
.inf-list-img-ov{position:absolute;inset:0;background:linear-gradient(to top,rgba(13,12,10,.85) 0%,rgba(13,12,10,.05) 45%,transparent 100%);}
.inf-list-img-flag{position:absolute;top:1rem;right:1rem;font-size:1.5rem;background:rgba(255,255,255,.95);width:42px;height:42px;border-radius:50%;display:flex;align-items:center;justify-content:center;}
.inf-list-img-platform{position:absolute;bottom:1rem;left:1rem;background:var(--gold);color:var(--ink);font-size:.65rem;font-weight:700;padding:.3rem .8rem;font-family:'Cairo',sans-serif;letter-spacing:.05em;}
.inf-list-body{padding:1.6rem;text-align:right;flex:1;display:flex;flex-direction:column;}
.inf-list-cat{font-size:.68rem;font-weight:700;color:var(--gold);margin-bottom:.4rem;font-family:'Cairo',sans-serif;letter-spacing:.05em;}
.inf-list-name{font-family:'Amiri',serif;font-size:1.3rem;font-weight:700;color:var(--ink);margin-bottom:.3rem;transition:color .2s;}
.inf-list-card:hover .inf-list-name{color:var(--gold);}
.inf-list-handle{font-size:.78rem;color:var(--ink-soft);margin-bottom:1rem;font-family:'Cairo',sans-serif;}
.inf-list-followers{display:flex;align-items:baseline;gap:.5rem;border-top:1px solid var(--rule);padding-top:.9rem;margin-top:auto;flex-direction:row-reverse;}
.inf-list-followers-num{font-family:'Playfair Display',serif;font-size:1.6rem;font-weight:900;color:var(--ink);line-height:1;}
.inf-list-followers-lbl{font-size:.6rem;letter-spacing:.08em;color:var(--gold);font-family:'Cairo',sans-serif;font-weight:600;}

/* FEATURED INFLUENCER */
.feat-inf{background:var(--ink);border-bottom:1px solid rgba(248,244,238,.08);position:relative;overflow:hidden;}
.feat-inf-bg{position:absolute;inset:0;background-size:cover;background-position:center;opacity:.15;filter:blur(30px);}
.feat-inf-grid{position:relative;z-index:2;display:grid;grid-template-columns:1fr 1fr;}
.feat-inf-img{height:560px;overflow:hidden;}
.feat-inf-img img{width:100%;height:100%;object-fit:cover;object-position:top;}
.feat-inf-body{padding:4.5rem 3rem;display:flex;flex-direction:column;justify-content:center;text-align:right;}
.feat-inf-eyebrow{font-family:'Cinzel',serif;font-size:.72rem;letter-spacing:.4em;color:var(--gold);text-transform:uppercase;margin-bottom:1rem;}
.feat-inf-cat{font-size:.85rem;font-weight:700;color:var(--gold-lt);margin-bottom:.6rem;font-family:'Cairo',sans-serif;letter-spacing:.06em;}
.feat-inf-name{font-family:'Amiri',serif;font-size:clamp(2.2rem,4vw,3.5rem);font-weight:700;line-height:1.2;color:var(--cream);margin-bottom:.4rem;}
.feat-inf-handle{font-family:'Cairo',sans-serif;font-size:1rem;color:rgba(248,244,238,.5);margin-bottom:1.5rem;}
.feat-inf-excerpt{font-size:1rem;line-height:1.95;color:rgba(248,244,238,.6);margin-bottom:2rem;font-family:'Cairo',sans-serif;}
.feat-inf-followers{display:flex;gap:2.5rem;border-top:1px solid rgba(248,244,238,.12);border-bottom:1px solid rgba(248,244,238,.12);padding:1.4rem 0;margin-bottom:1.5rem;flex-direction:row-reverse;}
.fi-stat{text-align:right;}
.fi-num{font-family:'Playfair Display',serif;font-size:2.6rem;font-weight:900;color:var(--cream);line-height:1;}
.fi-lbl{font-size:.7rem;color:var(--gold);letter-spacing:.05em;margin-top:.4rem;font-family:'Cairo',sans-serif;font-weight:600;}
.feat-inf-cta{display:inline-flex;align-items:center;gap:.6rem;color:var(--gold);font-size:.78rem;font-weight:700;text-decoration:none;border-bottom:2px solid var(--gold);padding-bottom:.4rem;align-self:flex-end;transition:gap .25s;font-family:'Cairo',sans-serif;}
.feat-inf-cta:hover{gap:1rem;color:var(--gold-lt);}

@media(max-width:900px){
  .inf-list-grid{grid-template-columns:1fr 1fr;}
  .feat-inf-grid{grid-template-columns:1fr;}
  .feat-inf-img{height:380px;}
  .feat-inf-body{padding:2.5rem 1.5rem;}
}
@media(max-width:600px){.inf-list-grid{grid-template-columns:1fr;}}
