
/* ══════════════════════════════════════════
   RESTORED ELEMENTOR WIDGETS STYLES
   ══════════════════════════════════════════ */

/* 1. Article Grid V2 (nc Cards) */
.nc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 26px; }
.nc { background: #fff; border-radius: 9px; overflow: hidden; border: 1px solid #e5e7eb; box-shadow: 0 1px 4px rgba(0,0,0,0.08); transition: all .2s; }
.nc:hover { transform: translateY(-3px); box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.nc-img-wrap img { height: 168px; width: 100%; object-fit: cover; }
.nc-body { padding: 13px 14px 15px; }
.nc-title { font-size: 14px; font-weight: 700; line-height: 1.6; color: #111; margin-bottom: 8px; }
.nc-ex { font-size: 12px; color: #6b7280; line-height: 1.7; margin-bottom: 11px; }
.nc-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 9px; border-top: 1px solid #e5e7eb; font-size: 11px; color: #9ca3af; }

/* 2. Sport Grid (Restored Hero + Side) */
.sport-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 16px; margin-bottom: 26px; }
.sp-hero { border-radius: 9px; overflow: hidden; position: relative; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.1); height: 310px; }
.sp-hero img { height: 100% !important; width: 100% !important; object-fit: cover !important; }
.sp-ov { position: absolute; inset: 0; background: linear-gradient(to top,rgba(5,10,30,.95) 0%,transparent 55%); padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; }
.sp-title { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.sp-sm { background: #fff; border-radius: 9px; overflow: hidden; border: 1px solid #e5e7eb; cursor: pointer; display: flex; flex-direction: column; }
.sp-sm img { height: 148px !important; width: 100% !important; object-fit: cover !important; }
.sp-sm-body { padding: 11px 13px 13px; }

/* 3. Files & Investigations (Strict HTML) */
.two-feat { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; margin-bottom: 26px; }
.feat-main { background: #fff; border-radius: 9px; overflow: hidden; border: 1px solid #e5e7eb; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.feat-main img { height: 240px !important; width: 100% !important; object-fit: cover !important; }
.feat-stack { display: flex; flex-direction: column; gap: 12px; }
.fs-row { background: #fff; border-radius: 9px; overflow: hidden; border: 1px solid #e5e7eb; display: flex; align-items: center; cursor: pointer; }
.fs-row img { width: 88px !important; height: 80px !important; flex-shrink: 0; object-fit: cover !important; }
.fs-body { padding: 10px 12px; flex: 1; }

/* 4. Top Stories Tabs (Restored Ranks) */
.tstabs { background: #fff; border-radius: 10px; border: 1px solid #e5e7eb; overflow: hidden; }
.tshead { display: flex; border-bottom: 1px solid #e5e7eb; }
.tstab { padding: 11px 16px; font-size: 12.5px; font-weight: 700; color: #6b7280; cursor: pointer; border-bottom: 2px solid transparent; }
.tstab.act { color: #fb8b01; border-bottom-color: #fb8b01; }
.ts-row { display: flex; align-items: center; gap: 12px; padding: 11px 16px; border-bottom: 1px solid #e5e7eb; cursor: pointer; }
.ts-rank { font-size: 20px; font-weight: 900; color: #d1d5db; min-width: 28px; }
.ts-row:nth-child(1) .ts-rank { color: #fb8b01; }
.ts-row:nth-child(2) .ts-rank { color: #1e73be; }
.ts-img { width: 70px; height: 56px; border-radius: 6px; object-fit: cover; }

/* 5. Market Ticker */
.market-bar { background: #111827; color: #fff; border-radius: 9px; overflow: hidden; margin-bottom: 26px; }
.market-head { padding: 8px 16px; background: rgba(255,255,255,.07); font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); }
.market-items { display: grid; grid-template-columns: repeat(5, 1fr); }
.mkt-item { padding: 12px 16px; border-left: 1px solid rgba(255,255,255,.07); text-align: center; }
.mkt-val { font-size: 17px; font-weight: 800; }

/* Mobile Responsiveness */
@media(max-width:900px) {
  .nc-grid { grid-template-columns: repeat(2, 1fr); }
  .sport-grid { grid-template-columns: 1fr; }
  .two-feat { grid-template-columns: 1fr; }
  .market-items { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:640px) {
  .nc-grid { grid-template-columns: 1fr; }
  .market-items { grid-template-columns: repeat(2, 1fr); }
}

/* Icon Protection */
.nc-foot img, .fs-meta img, .ts-m img, .sp-meta img, .feat-meta img { width: 14px !important; height: 14px !important; display: inline-block !important; vertical-align: middle !important; margin: 0 3px !important; }
