/* =========================
   NIEUWS — homepage
   ========================= */

/* --- Homepage nieuwsblok --- */
.home-news{
  margin-top:18px;
}

.home-news.wrapper{
  padding-top:30px;
  padding-bottom:30px;
}

.home-news__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

.home-news__morelink{
  color:#f97b0a;
  font-weight:800;
  text-decoration:none;
}

.home-news__grid--editorial{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(12, minmax(0, 1fr));
}

.home-news__card{
  grid-column:span 4;
  display:flex;
  flex-direction:column;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  background:linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.045));
  overflow:hidden;
  transition:transform .12s ease, border-color .12s ease, background .12s ease, box-shadow .12s ease;
  position:relative;
}

.home-news__card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:linear-gradient(180deg, #f97b0a, #aa31ae);
  opacity:.95;
  z-index:1;
}

.home-news__card:hover{
  transform:translateY(-2px);
  border-color:rgba(160,110,255,.24);
  background:rgba(255,255,255,.07);
  box-shadow:0 8px 20px rgba(0,0,0,.14);
}

.home-news__card:hover::after{
  color:#ff9a32;
}

.home-news__card--featured{
  grid-column:span 8;
}

.home-news__media{
  aspect-ratio:16 / 9;
  overflow:hidden;
  background:rgba(255,255,255,.04);
  position:relative;
}

.home-news__media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.home-news__content{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:14px 14px 14px 18px;
}

.home-news__kermis{
  font-size:11.5px;
  color:#c9c9dc;
  opacity:.95;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.home-news__title{
  font-weight:900;
  color:#fff;
  font-size:18px;
  line-height:1.18;
}

.home-news__card--featured .home-news__title{
  font-size:clamp(30px, 3.5vw, 40px);
  line-height:1.06;
}

.home-news__meta{
  font-size:11.5px;
  color:#bdbddb;
}

.home-news__excerpt{
  font-size:13px;
  line-height:1.5;
  color:#ececff;
  opacity:.92;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.home-news__card::after{
  content:"Lees meer →";
  margin-top:auto;
  font-size:13px;
  font-weight:900;
  letter-spacing:.01em;
  color:#f97b0a;
  opacity:1;
  padding:4px 14px 14px 18px;
  text-align:right;
}

/* Foto-credits op card-media — bewust subtiel (artikelpagina heeft duidelijkere stijl) */
.news-photo-credit{
  font-size:9px;
  line-height:1.25;
  color:rgba(255,255,255,.78);
}

.news-photo-credit a{
  color:rgba(255,255,255,.88);
  text-decoration:underline;
}

.news-photo-credit--overlay{
  position:absolute;
  right:6px;
  bottom:6px;
  z-index:2;
  padding:2px 6px;
  border-radius:6px;
  background:rgba(0,0,0,.28);
  backdrop-filter:blur(1px);
  font-size:8px;
  font-weight:500;
  letter-spacing:.015em;
}

/* --- Responsive (home) --- */
@media (max-width: 1099px){
  .home-news__card,
  .home-news__card--featured{
    grid-column:span 6;
  }
}

@media (max-width: 700px){
  .home-news__head{
    flex-direction:column;
    align-items:flex-start;
  }

  .home-news__card,
  .home-news__card--featured{
    grid-column:1 / -1;
  }
}

@media (max-width: 600px){
  .home-news.wrapper{
    padding-left:20px;
    padding-right:20px;
  }
}
