.top-news {
  padding: 48px 24px;
}

.top-news-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.top-news-header {
  text-align: center;
}

.top-news-header .top-section-desc {
  margin-left: auto;
  margin-right: auto;
}

.top-news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.top-news-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.top-news-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #18304f 0%, #275489 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(40, 77, 127, 0.16);
  transition: all .3s;
}

.top-news-more:hover {
  background: linear-gradient(135deg, #22466f 0%, #3567a4 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 24px 40px rgba(40, 77, 127, 0.24);
}

.top-news-item {
  min-width: 0;
}

.top-news-link {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,250,255,0.95));
  text-decoration: none;
  box-shadow:
    0 18px 42px rgba(85, 108, 145, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.top-news-thumb {
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #eaf4ff);
}

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

.top-news-thumb.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-news-thumb.is-empty span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #355174;
}

.top-news-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.top-news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.top-news-meta time,
.top-news-meta span {
  font-size: 12px;
  font-weight: 700;
  color: #6c7a8f;
}

.top-news-vtuber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.top-news-vtuber-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(180deg, #e3efff 0%, #f5f9ff 100%);
  box-shadow: inset 0 0 0 1px rgba(112, 138, 174, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.top-news-vtuber-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-news-vtuber-icon.is-empty span {
  font-size: 11px;
  font-weight: 800;
  color: #45688f;
}

.top-news-vtuber-name {
  min-width: 0;
  line-height: 1.3;
}

.top-news-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: #24364d;
}

.top-news-excerpt {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.85;
  color: #5d6d82;
}

@media (max-width: 960px) {
  .top-news-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .top-news {
    padding: 34px 18px;
  }

  .top-news-link {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: 22px;
  }

  .top-news-thumb {
    border-radius: 16px;
  }

  .top-news-title {
    font-size: 18px;
  }

  .top-news-action {
    margin-top: 24px;
  }

  .top-news-more {
    width: 100%;
    min-height: 48px;
  }
}
