.news-rss {
  --news-accent: #0b5cab;
  --news-border: #e2e6ea;
  --news-text: #17212b;
  width: 100%;
  color: var(--news-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
}

.news-rss__list {
  border-top: 1px solid var(--news-border);
}

.news-rss__item {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--news-border);
  background: #fff;
}

.news-rss__link {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 16px 6px;
  color: inherit;
  text-decoration: none !important;
  transition: background-color .18s ease;
}

.news-rss__link:hover,
.news-rss__link:focus-visible {
  background: #f7f9fb;
}

.news-rss__thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  background: #e8edf2;
}

.news-rss__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.news-rss__link:hover .news-rss__thumb img {
  transform: scale(1.025);
}

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

.news-rss__badge {
  display: inline-block;
  margin: 0 0 7px;
  padding: 3px 9px;
  border-radius: 3px;
  background: var(--news-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.news-rss__title {
  margin: 0 0 12px;
  color: #15212d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: normal;
}

.news-rss__link:hover .news-rss__title {
  color: var(--news-accent);
}

.news-rss__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: #687582;
  font-size: 13px;
  line-height: 1.4;
}

.news-rss__source {
  color: #4d5b68;
  font-weight: 600;
}

.news-rss__message {
  margin: 0;
  padding: 28px 16px;
  border: 1px solid var(--news-border);
  color: #5d6975;
  text-align: center;
}

@media (max-width: 600px) {
  .news-rss__link {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 2px;
  }

  .news-rss__title {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.45;
  }

  .news-rss__badge {
    margin-bottom: 5px;
    padding: 2px 7px;
    font-size: 10px;
  }

  .news-rss__meta {
    gap: 5px 10px;
    font-size: 11px;
  }
}

.news-rss__pager { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:6px; margin:24px 0; }
.news-rss__pager a,.news-rss__pager .is-current { display:inline-flex; align-items:center; justify-content:center; min-width:38px; min-height:38px; padding:6px 10px; border:1px solid var(--news-border); border-radius:5px; text-decoration:none; font-size:14px; }
.news-rss__pager a { background:#fff; color:var(--news-accent); }
.news-rss__pager .is-current { background:var(--news-accent); border-color:var(--news-accent); color:#fff; font-weight:700; }
.news-rss__pager a:hover { background:#edf4fa; }
.news-rss__pager a:focus-visible { outline:2px solid var(--news-accent); outline-offset:2px; }

