/* News archive (/news/) */

.news-archive-hero{
  padding: 14px 0 6px;
}

.news-archive-h1{
  margin: 0;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -.03em;
  color: rgba(15,23,42,.92);
}

.news-archive-section{ padding-top: 6px; }

@media (max-width: 620px){
  .news-archive-h1{ font-size: 24px; }
}


/* ===== News hub blocks ===== */
.news-hub-block{ margin-bottom: 100px; }
.news-hub-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  margin: 0 0 20px;
}
.news-hub-title{
  margin:0;
  font-size: 24px;
  color: rgba(15,23,42,.92);
}
.news-hub-more{
  font-weight: 900;
  font-size: 12px;
  color: rgba(15,23,42,.70);
  text-decoration:none;
}
.news-hub-more:hover{ text-decoration: underline; }

/* FAQ cards (special style)
   - no date
   - no read time
   - no arrow button
   - transparent background
   - 10px radius
   - no shadow */
.hn--faq{
  background: transparent;
  border-radius: 10px;
  box-shadow: none;
  border: 1px solid rgba(15,23,42,.14);
  overflow: hidden;
}
.hn--faq:hover{ box-shadow: none; }
.hn--faq .hn-body{ padding: 12px 14px; }
.hn--faq .hn-title{ font-size: 14px; }
.hn--faq .hn-excerpt{ margin-top: 6px; }


/* ===== Interview cards (News hub - interviews) ===== */
.news-archive-grid.news-archive-grid--interviews{
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: flex-start;
  align-items: start;
}

.hi{
  max-width: none;
}

.hi-link{
  display: block;
  text-decoration: none;
  color: inherit;
}

.hi-photo{
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15,23,42,.12);
  background: rgba(15,23,42,.04);
  margin-bottom: 18px;
}

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

.hi-body{ padding-left: 6px; }

.hi-person{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 950;
  color: rgba(15,23,42,.92);
}

.hi-topic,
.hi-ptype{
  font-size: 13px;
  line-height: 1.5;
  color: rgba(15,23,42,.68);
  margin: 0 0 6px;
}

.hi-read{
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(15,23,42,.55);
}

@media (max-width: 1100px){
  .news-archive-grid.news-archive-grid--interviews{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px){
  /* Convert interview cards to the same horizontal mobile style used for casino/news cards */
  .hi{
    max-width: 100%;
  }
  .hi-link{
    display:flex;
    align-items:center;
    gap: 12px;
  }
  .hi-photo{
    width: 96px;
    height: 96px;
    margin: 0;
    flex: 0 0 96px;
    border-radius: 18px;
  }
  .hi-body{
    padding-left: 0;
  }
  .hi-person{
    margin: 0 0 6px;
    font-size: 15px;
  }
  .hi-topic,
  .hi-ptype{
    font-size: 12px;
    margin: 0 0 4px;
  }
  .hi-read{
    margin-top: 8px;
  }
}
