/* ============================
   Featured favourites (tiles)
============================= */

.gh-feature-favs {
  border-radius: 18px;
  padding: 12px;
  /* background: rgba(22, 23, 27, 0.55);
  border: 1px solid rgba(255, 223, 0, 0.12); */
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.gh-feature-favs__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.gh-feature-favs__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.gh-feature-favs__grid {
  display: grid;
  gap: 10px;
}

.gh-feature-favs__grid.two {
  grid-template-columns: 1fr 1fr;
}

.gh-feature-favs__grid.one {
  grid-template-columns: 1fr;
}

.gh-feature-tile {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(15, 15, 18, 0.65);
  transition: transform 160ms ease, border-color 160ms ease;
  min-height: 70px; /* was 92 */
}

.gh-feature-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 223, 0, 0.18);
}

.gh-feature-tile__media {
  position: absolute;
  inset: 0;
}

.gh-feature-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

.gh-feature-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15,15,18,0.90) 0%,
    rgba(15,15,18,0.55) 55%,
    rgba(15,15,18,0.25) 100%
  );
}

.gh-feature-tile__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 223, 0, 0.9);
  font-size: 1.2rem;
}

.gh-feature-tile__content {
  position: relative;
  z-index: 1;
  padding: 12px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gh-feature-tile__kicker {
  font-size: 0.75rem;
  opacity: 0.75;
  font-weight: 700;
}

.gh-feature-tile__name {
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gh-feature-tile__tag {
  font-weight: 800;
  opacity: 0.75;
  margin-left: 6px;
}

.gh-feature-tile--team .gh-feature-tile__name {
  color: #FFDF00;
}

.gh-feature-tile--player .gh-feature-tile__name {
  color: #fff;
}

/* Empty state */
.gh-feature-empty {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(15, 15, 18, 0.55);
  border: 1px dashed rgba(255, 223, 0, 0.18);
}

.gh-feature-empty__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 223, 0, 0.10);
  border: 1px solid rgba(255, 223, 0, 0.16);
}

.gh-feature-empty__title {
  font-weight: 900;
}

.gh-feature-empty__sub {
  font-size: 0.85rem;
  opacity: 0.75;
}
