
/* ══════════════════════════════════════════
   WORDPRESS & ELEMENTOR COMPATIBILITY FIXES
   ══════════════════════════════════════════ */

/* WP Core */
.alignleft { float: left; margin-right: 15px; }
.alignright { float: right; margin-left: 15px; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: #666; text-align: center; margin-top: 5px; }

/* Elementor Container Fix */
.elementor-section.elementor-section-full_width .elementor-container { max-width: 100%; }
.elementor-widget-mn-article-grid .mn-art-grid, 
.elementor-widget-mn-article-list .mn-art-list-wrap { margin-bottom: 0; }

/* ══════════════════════════════════════════
   FILES & INVESTIGATIONS (EXACT HTML SPEC)
   ══════════════════════════════════════════ */
.two-feat { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; margin-bottom: 26px; }
.feat-main { background: var(--surface); border-radius: 9px; overflow: hidden; border: 1px solid var(--rule); cursor: pointer; box-shadow: var(--sh); transition: box-shadow .2s; display: flex; flex-direction: column; }
.feat-main:hover { box-shadow: var(--sh2); }
.feat-main img { width: 100%; height: 240px; object-fit: cover; transition: transform .4s; display: block; }
.feat-main:hover img { transform: scale(1.04); }
.feat-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.feat-title { font-size: 18px; font-weight: 800; line-height: 1.5; color: var(--ink); margin-bottom: 9px; }
.feat-title a { color: inherit; text-decoration: none; }
.feat-main:hover .feat-title { color: var(--or); }
.feat-ex { font-size: 13px; color: var(--ink2); line-height: 1.7; margin-bottom: 12px; }
.feat-meta { display: flex; align-items: center; justify-content: space-between; font-size: 11.5px; color: var(--ink4); padding-top: 10px; border-top: 1px solid var(--rule); margin-top: auto; }

.feat-stack { display: flex; flex-direction: column; gap: 12px; }
.fs-row { background: var(--surface); border-radius: 9px; overflow: hidden; border: 1px solid var(--rule); cursor: pointer; display: flex; box-shadow: var(--sh); transition: transform .2s; text-decoration: none; align-items: center; padding: 0 !important; }
.fs-row:hover { transform: translateY(-2px); }
/* EXACT IMAGE SPEC FROM HTML */
.fs-row img { width: 88px !important; height: 80px !important; object-fit: cover !important; flex-shrink: 0; margin: 0 !important; display: block; border-radius: 0 !important; }
.fs-body { padding: 10px 12px; display: flex; flex-direction: column; justify-content: center; gap: 5px; flex: 1; }
.fs-title { font-size: 13px; font-weight: 700; line-height: 1.55; color: var(--ink2); margin: 0; }
.fs-title a { color: inherit; text-decoration: none; }
.fs-row:hover .fs-title { color: var(--bl); }
.fs-meta { font-size: 11px; color: var(--ink4); display: flex; align-items: center; gap: 4px; }

/* Responsive Fixes */
@media(max-width:900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .two-feat { grid-template-columns: 1fr; }
  .vid-grid { grid-template-columns: 1fr; }
  .nc-grid { grid-template-columns: repeat(2, 1fr); }
  /* Hero Slider Fix */
  .hero-slider { height: 400px !important; }
  .slide-img { position: absolute; top: 0; left: 0; height: 100% !important; }
}
@media(max-width:640px) {
  .nc-grid { grid-template-columns: 1fr; }
  .fs-row img { width: 88px !important; height: 80px !important; }
  .hero-slider { height: 300px !important; }
}

/* Icon Fix (Prevent Huge Icons) */
.nc-foot img, .fs-meta img, .feat-meta img, .ts-m img { width: 14px !important; height: 14px !important; display: inline-block !important; margin: 0 3px !important; }
