/* =========================
   Actus Pages
   ========================= */
.newsBar{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;

  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  background: rgba(0,0,0,.18);
  padding:10px 12px;
}

.newsSearch{
  width:100%;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,10,14,.35);
  color: var(--txt);
  padding:10px 12px;
  outline:none;
}
.newsSearch::placeholder{ color: rgba(234,243,255,.45); }

.newsBtn{
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  color: var(--txt);
  padding:10px 12px;
  font-family: var(--font-brand);
  letter-spacing:.10em;
  text-transform:uppercase;
}
.newsBtn:hover{
  border-color: rgba(67,209,255,.18);
}

.newsStack{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.newsCard{
  position:relative;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  padding:14px;
  overflow:hidden;
}

.newsCard.is-focus{
  border-color: rgba(67,209,255,.26);
  box-shadow: 0 0 0 1px rgba(67,209,255,.14) inset, 0 0 22px rgba(67,209,255,.12);
}

.newsHead{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom:10px;
}

.newsTitle{
  font-family: var(--font-brand);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:14px;
}

.newsMeta{
  color: var(--muted);
  font-size:12px;
  white-space:nowrap;
  margin-top:2px;
}

.newsPin{
  position:absolute;
  top:12px;
  right:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  font-family: var(--font-brand);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:11px;
  color: var(--gold);
}

.newsImg{
  width:100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  display:block;
  margin:10px 0 12px;
}

.newsText{
  color: rgba(234,243,255,.78);
  line-height: 1.65;
  font-size: 14px;
}

/* --- Single news page --- */
.newsOne{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  padding:14px;
  overflow:hidden;
}
.newsCard{
  cursor:pointer; /* comme c'est maintenant un <a> */
}

/* --- Single news (new.php) layout --- */
.newsLayout{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:18px;
  margin-top:12px;
}

.newsOne{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  padding:14px;
  overflow:hidden;
}

/* right column */
.newsSide{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  padding:12px;
  height: fit-content;
  position: sticky;
  top: 18px;
}
.newsSideTitle{
  font-family: var(--font-brand);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  opacity:.9;
  margin-bottom:10px;
}
.newsSideList{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.newsMini{
  display:block;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:10px 10px;
  transition: transform .12s ease, border-color .12s ease;
}
.newsMini:hover{
  transform: translateY(-1px);
  border-color: rgba(67,209,255,.18);
}
.newsMiniTitle{
  font-family: var(--font-brand);
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:6px;
}
.newsMiniMeta{
  color: var(--muted);
  font-size:11px;
}

/* pager */
.newsPager{
  margin-top:14px;
  display:flex;
  justify-content:space-between;
  gap:12px;
}

.newsPagerBtn{
  flex:1;
  text-align:center;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  padding:12px;
  font-family: var(--font-brand);
  letter-spacing:.10em;
  text-transform:uppercase;
}
.newsPagerBtn:hover{
  border-color: rgba(67,209,255,.18);
}

/* responsive */
@media (max-width: 1100px){
  .newsLayout{ grid-template-columns: 1fr; }
  .newsSide{ position: relative; top: auto; }
}