.news-panel {
  padding: 18px;
  min-width: 0;
}

.news-header {
  margin-bottom: 16px;
}

.news-header h2 {
  margin: 0 0 6px;
}

.news-header p {
  margin: 0;
}

.news-wrap {
  display: grid;
  gap: 0;
}

.news-wrap.empty-state {
  min-height: 260px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.018);
}

.news-item {
  display: grid;
  grid-template-columns: 96px 148px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 5px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.018);
}

.news-item.news-alt-year {
  background: linear-gradient(
    180deg,
    rgba(132, 55, 19, 0.14),
    rgba(100, 39, 13, 0.11)
  );
  border-color: rgba(217, 119, 50, 0.16);
}

.news-season {
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}

.news-visuals {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.news-player-photo {
  width: 74px;
  height: 96px;
  flex: 0 0 74px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.035);
}

.news-player-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.news-player-photo.is-placeholder {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.news-team-logo {
  width: 64px;
  height: 72px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.news-team-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-team-logo.is-placeholder {
  opacity: 0;
}

.news-content {
  min-width: 0;
}

.news-type {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.news-headline {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.news-detail {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 680px) {
  .news-panel {
    padding: 12px;
  }

  .news-item {
    grid-template-columns: 68px 118px minmax(0, 1fr);
    gap: 8px;
    padding: 5px 10px;
  }

  .news-season {
    font-size: 1.25rem;
  }

  .news-visuals {
    gap: 7px;
  }

  .news-player-photo {
    width: 62px;
    height: 80px;
    flex-basis: 62px;
  }

  .news-team-logo {
    width: 50px;
    height: 58px;
    flex-basis: 50px;
  }

  .news-headline {
    font-size: 0.92rem;
  }

  .news-detail {
    font-size: 0.84rem;
  }
}

@media (max-width: 470px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .news-season {
    font-size: 1.35rem;
  }

  .news-visuals {
    margin-bottom: 2px;
  }
}
