.news-section {
  padding: 4rem 1rem;
  background-color: var(--color-bg);
  font-family: 'Noto Sans JP', sans-serif;
}

.news-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item a {
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  width: 100%;
}

.news-date {
  font-size: 0.875rem;
  color: var(--color-muted);
  min-width: 6em;
  flex-shrink: 0;
}

.news-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  flex: 1;
}

.news-more {
  text-align: center;
  margin-top: 2rem;
}

.btn-more {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.5rem 1.2rem;
  background-color: var(--color-primary);
  color: var(--color-bg) !important;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-more:hover {
  background-color: var(--color-support2);
}

@media screen and (max-width: 600px) {
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .news-date {
    min-width: auto;
  }
}
