/* ========================================
   NEWS Page Styles
   ======================================== */

/* Page Header */
.page-header {
  padding: 120px 0 80px;
  background: #fff;
  text-align: center;
}

.page-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px;
  font-weight: 600;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #3B4043;
  margin: 0 0 48px 0;
}

.page-title span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  font-size: 28px;
  font-weight: 600;
  color: #3B4043;
  letter-spacing: 0.05em;
  font-family: 'Noto Sans JP', sans-serif;
}

.page-title span::before {
  content: '';
  width: 60px;
  height: 3px;
  background: #3B4043;
}

/* News Page Content */
.news-page-content {
  padding: 0 0 80px;
  background: #fff;
}

.news-page-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  list-style: none;
}

.news-page-list li {
  border-bottom: 1px solid #e0e0e0;
}

.news-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.news-item:hover {
  opacity: 0.7;
}

.news-item time {
  font-size: 14px;
  color: #888;
  font-family: 'Roboto', sans-serif;
  flex-shrink: 0;
  min-width: 100px;
}

.news-item-content {
  flex: 1;
}

.news-item .news-category {
  display: inline-block;
  padding: 4px 12px;
  background: #3B4043;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.news-item-title {
  font-size: 16px;
  font-weight: 500;
  color: #3B4043;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .page-header {
    padding: 100px 0 60px;
  }

  .page-title {
    font-size: 40px;
  }

  .page-title span {
    font-size: 20px;
  }
  
  .page-title span::before {
    width: 30px;
  }

  .news-item {
    flex-direction: column;
    gap: 12px;
  }

  .news-item time {
    min-width: auto;
  }

  .news-item-title {
    font-size: 15px;
  }
}

@media (max-width: 425px) {
  .page-title {
    font-size: 28px;
  }
  
  .page-title span {
    font-size: 18px;
    gap: 5px;
  }
  
  .page-title span::before {
    width: 20px;
  }
}
