.economy-news-section {
  background: rgba(15, 25, 40, 0.95);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', 'Meiryo', sans-serif;
}

.economy-news-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6495ED, #4169E1, #6495ED);
}

.economy-news-title {
  color: #6495ED;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(100, 150, 255, 0.3);
  position: relative;
}

.economy-news-title::after {
  content: "📰";
  margin-left: 10px;
  font-size: 1.2rem;
}

.news-article {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(100, 150, 255, 0.2);
}

.news-article:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-headline {
  color: #E6E6FA;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.news-headline::before {
  content: "🔹";
  margin-right: 8px;
  color: #6495ED;
}

.news-content {
  color: #D3D3D3;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.news-content p {
  margin-bottom: 12px;
  text-indent: 1em;
}

.news-source {
  color: #B0C4DE;
  font-size: 0.85rem;
  text-align: right;
  font-style: italic;
}

.news-date {
  color: #87CEEB;
  font-size: 0.8rem;
  margin-top: 5px;
  text-align: right;
}

.news-tag {
  display: inline-block;
  background: rgba(100, 150, 255, 0.2);
  color: #87CEEB;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* 响应式设计 */
@media (max-width: 480px) {
  .economy-news-section {
    padding: 15px;
    margin: 15px 0;
  }
  
  .economy-news-title {
    font-size: 1.3rem;
  }
  
  .news-headline {
    font-size: 1.1rem;
  }
  
  .news-content {
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .economy-news-section {
    padding: 12px;
  }
  
  .economy-news-title {
    font-size: 1.2rem;
  }
  
  .news-headline {
    font-size: 1rem;
  }
  
  .news-content {
    font-size: 0.85rem;
  }
}