/* ============================================================
   WITNESSES.CSS — /assets/css/witnesses.css
   ============================================================ */

/* ── HERO ── */
.wit-hero{background:linear-gradient(135deg,#0A1A2A,#1A3A6A);padding:3rem 1.5rem;text-align:center;}
.wit-hero-inner{max-width:700px;margin:0 auto;}
.wit-title{font-family:var(--font-serif);font-size:clamp(1.8rem,5vw,3rem);font-weight:700;color:#fff;line-height:1.2;}
.wit-name{font-family:'Manakahthey',serif;direction:rtl;display:inline-block;color:#F0C040;}

/* ── MAIN ── */
.wit-main{max-width:760px;margin:0 auto;padding:2.4rem 1.2rem;display:flex;flex-direction:column;gap:1.4rem;}

/* ── CARD — one per row, big image ── */
.wit-card{display:block;text-decoration:none;border-radius:14px;overflow:hidden;border:1px solid var(--border);background:var(--card);transition:transform .2s,box-shadow .2s;}
.wit-card:hover{transform:translateY(-3px);box-shadow:0 8px 28px rgba(0,0,0,.1);border-color:var(--gold);}

/* Big feature image — full width, 16:9 */
.wit-card-img{width:100%;aspect-ratio:16/9;overflow:hidden;background:linear-gradient(135deg,#0A1A2A,#1A3A6A);}
.wit-card-img img{width:100%;height:100%;object-fit:cover;display:block;}
.wit-card-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:4rem;opacity:.3;}

/* Title + read more */
.wit-card-body{padding:1.1rem 1.3rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;}
.wit-card-title{font-family:var(--font-serif);font-size:1.15rem;font-weight:700;color:var(--text);line-height:1.3;margin:0;}
.wit-read-more{font-family:var(--font-sans);font-size:.75rem;font-weight:700;color:var(--gold-text);white-space:nowrap;flex-shrink:0;}
.wit-card:hover .wit-read-more{color:var(--coral);}

/* ── EMPTY ── */
.wit-empty{text-align:center;padding:3rem 1rem;color:var(--text3);}
.wit-empty-ico{font-size:2.5rem;margin-bottom:.8rem;opacity:.4;}
.wit-empty h3{font-family:var(--font-serif);font-size:1rem;color:var(--text);margin-bottom:.4rem;}
.wit-empty p{font-family:var(--font-sans);font-size:.8rem;color:var(--text2);}

/* ── RESPONSIVE ── */
@media(max-width:600px){
  .wit-hero{padding:2rem 1rem;}
  .wit-main{padding:1.4rem .9rem;gap:1rem;}
  .wit-card-title{font-size:1rem;}
}
