.news-list {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.news-item {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.news-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.news-image {
  width: 200px;
  height: 150px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f5f5;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
  font-weight: 500;
  text-align: left;
  padding-left: 10px;
}

.news-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.no-news {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 16px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .news-item {
      flex-direction: column;
  }
  
  .news-image {
      width: 100%;
      height: 200px;
  }
  
  .news-content {
      padding: 20px;
  }

  .news-date {
    padding-left: 0;
    text-align: center;
  }
  
  .news-title {
      font-size: 16px;
      text-align: center;
  }
}

/* show */
.news-show {
  padding: 0 1rem;
  text-align: left;
}

.news-show .section-layout {
  padding: 2rem 1.5rem;
  margin: 1rem 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.news-show .section-title {
  padding: 0 0 1.5rem;
}

.news-show-title {
  text-align: left;
  padding: 0 0.5rem;
}

.news-show-title p {
  text-align: left !important;
  letter-spacing: 0.5px;
}

.news-show-title p.date {
  font-size: 1rem;
  padding-left: 10px;
  margin-bottom: 0.5rem;
}

.news-show-title p.title {
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.news-show .section-content a {
  color: var(--site-link-color);
  transition: all 0.3s ease;
}

.news-show .section-content a:hover {
  color: #999;
}

@media screen and (max-width: 640px) {
  .news-show {
    padding: 0;
  }

  .news-show .section-layout {
    box-shadow: none;
    padding: 1rem;
    margin: 0;
  }
}

.news-show .back-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: #999;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.news-show .back-button:hover {
  color: #333;
}

.news-show .back-button svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

@media screen and (max-width: 640px) {
  .news-show .back-button {
    padding-left: 1rem;
  }
}