/* 现代化样式优化 */
:root {
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  --secondary-color: #7c3aed;
  --accent-color: #06b6d4;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --dark-bg: #1f2937;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-light: #6b7280;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

* {
  box-sizing: border-box;
}

/* 全局样式优化 */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 'Microsoft Yahei', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 导航栏现代化 */
.eyebrow {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--shadow-md);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.eyebrow img {
  max-width: 200px;
  transition: transform 0.3s ease;
}

.eyebrow img:hover {
  transform: scale(1.05);
}

.eyebrow nav .hs-menu-wrapper.hs-menu-flow-horizontal > ul a {
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  color: #374151;
}

.eyebrow nav .hs-menu-wrapper.hs-menu-flow-horizontal > ul a:hover {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.eyebrow nav .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.active a {
  color: var(--primary-color);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
}

/* Banner现代化 */
.home-page .banner {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(124, 58, 237, 0.95) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.home-page .banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.banner h1.tagline {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.025em;
  color: #ffffff !important;
}

.banner h3.tagline {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  opacity: 0.95;
  line-height: 1.8;
  color: #ffffff !important;
}

.banner .cta.yellow {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border: none;
  color: #1f2937;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(251, 191, 36, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.125rem;
}

.banner .cta.yellow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1f2937;
}

.banner .demo-imac {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* 卡片式设计 */
section {
  padding: 3rem 0;
}

.value-props {
  background: var(--light-bg);
}

.value-props .props {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
}

.value-props .props:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* 图标样式 */
.value-props .props {
  position: relative;
  text-align: center;
}

.value-props .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  font-size: 2rem;
  color: white;
  font-weight: bold;
}

.value-props p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* 研究数据区块 */
.research {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
}

.research blockquote {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.7;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-color);
}

.research blockquote:before,
.research blockquote:after {
  display: none;
}

.big-stat h1 {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.big-stat h1 span {
  color: rgba(255, 255, 255, 0.7);
}

.big-stat p {
  color: #e5e7eb;
  font-size: 1rem;
}

/* 行业应用区块 */
.industries {
  background: var(--light-bg);
}

.industries [class*="span3"] {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  margin: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.industries [class*="span3"]:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.industries [class*="icon-"] {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.industries p {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
}

/* 内容区块 */
.content {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.content h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content p {
  color: var(--text-secondary);
  font-style: normal;
  font-size: 1rem;
}

/* 合作品牌 */
section.content-2,
section:nth-child(2n+4).content-2 {
  background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%) !important;
}

.content-2 h2,
.content-2 h4 {
  color: white !important;
}

.img-row img {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.img-row img:hover {
  opacity: 1;
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}

/* 客户区块 */
.customers {
  background: var(--light-bg);
}

.customers figure {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.customers blockquote {
  font-size: 1.125rem;
  color: var(--text-primary);
  line-height: 1.7;
}

.customers blockquote:before,
.customers blockquote:after {
  color: var(--primary-color);
  opacity: 0.3;
}

/* FAQ页面优化 */
.main-content {
  background: var(--light-bg);
  padding: 3rem 0;
}

.main-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.main-content h4 {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  box-shadow: var(--shadow-xl);
  transform: translateX(8px);
  border-color: var(--primary-color);
}

.question {
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.question::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.answer {
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 2.5rem;
  font-size: 1rem;
  position: relative;
  text-align: left;
}

.main-content h2 {
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  margin-top: 0;
}

.main-content h4 {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  margin-top: 0;
}

.answer::before {
  content: 'A';
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
}

/* 页脚现代化 */
.footer-legal {
  background: linear-gradient(135deg, #111827 0%, #0f172a 100%);
  height: auto;
  padding: 1.5rem 0;
}

.footer-legal p {
  line-height: 1.7;
  color: #d1d5db;
  font-size: 0.9rem;
}

.footer-legal a {
  color: var(--accent-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #22d3ee;
}

/* 响应式优化 */
@media (max-width: 768px) {
  .banner h1.tagline {
    font-size: 1.75rem;
  }
  
  .banner h3.tagline {
    font-size: 0.95rem;
  }
  
  section {
    padding: 2rem 0;
  }
  
  .content h1 {
    font-size: 2rem;
  }
  
  .faq-item {
    padding: 1.25rem;
  }
}

/* 平滑滚动 */
html {
  scroll-behavior: smooth;
}

/* 选择文本样式 */
::selection {
  background: rgba(37, 99, 235, 0.2);
  color: var(--text-primary);
}

/* 数据库统计数字样式 */
.content h2 {
  color: var(--text-primary);
}

/* 新闻列表页面样式 */
.page-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 3rem 0;
  text-align: center;
  color: white;
}

.page-banner h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-banner p {
  font-size: 1rem;
  opacity: 0.9;
}

.page-banner p a {
  color: white;
  text-decoration: underline;
  font-style: normal;
}

.news-list {
  padding: 3rem 0;
  background: var(--light-bg);
}

.news-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-item-link:hover .news-item {
  box-shadow: var(--shadow-xl);
  transform: translateX(8px);
  border-color: var(--primary-color);
}

.news-item-link:hover .news-content h3 {
  color: var(--primary-color);
}

.news-item {
  display: flex;
  gap: 1.5rem;
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.news-content h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s ease;
  font-style: normal;
}

.news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: var(--radius-md);
  color: white;
}

.news-date .day {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  font-style: normal;
}

.news-date .month {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  opacity: 0.9;
  font-style: normal;
}

.news-content {
  flex: 1;
}

.news-summary {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  font-style: normal;
}

.news-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: normal;
}

.news-meta .category {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 500;
}

/* 新闻详情页面样式 */
.news-detail {
  padding: 3rem 0;
  background: var(--light-bg);
}

.news-detail .container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.article-content {
  flex: 1;
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.article-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.article-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.article-body {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

.article-body h2 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
  padding-left: 1rem;
  border-left: 4px solid var(--primary-color);
}

.article-body h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
}

.article-body p {
  margin-bottom: 1rem;
}

.article-body ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.article-body ul li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

.article-body strong {
  color: var(--primary-color);
  font-weight: 600;
}

.article-tips {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  border-left: 4px solid var(--warning-color);
}

.article-tips h4 {
  color: var(--warning-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.article-tips p {
  margin: 0;
  color: var(--text-secondary);
}

.article-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border-color);
}

.article-tags {
  margin-bottom: 1.5rem;
}

.article-tags span {
  color: var(--text-secondary);
  font-weight: 500;
}

.article-tags a {
  display: inline-block;
  background: var(--light-bg);
  color: var(--text-secondary);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin: 0.25rem;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-tags a:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
}

.btn-back {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-back:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.article-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.article-prev-next {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.article-prev-next a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  flex: 1;
}

.article-prev-next a:hover {
  color: var(--primary-color);
}

.article-prev-next a.prev {
  text-align: left;
}

.article-prev-next a.next {
  text-align: right;
}

.article-prev-next .no-prev,
.article-prev-next .no-next {
  color: var(--text-light);
  font-size: 0.9rem;
  flex: 1;
}

.article-prev-next .no-prev {
  text-align: left;
}

.article-prev-next .no-next {
  text-align: right;
}

.related-news {
  width: 25%;
  min-width: 250px;
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.related-news h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}

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

.related-news ul li {
  margin-bottom: 0.75rem;
}

.related-news ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.6;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  font-style: normal;
}

.related-news ul li:last-child a {
  border-bottom: none;
}

.related-news ul li a:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

@media (max-width: 992px) {
  .news-detail .container {
    flex-direction: column;
  }
  
  .related-news {
    width: 100%;
    position: static;
  }
}

@media (max-width: 768px) {
  .news-item {
    flex-direction: column;
  }
  
  .news-date {
    flex-direction: row;
    gap: 0.5rem;
    min-width: auto;
    width: fit-content;
  }
  
  .article-content {
    padding: 1.5rem;
  }
  
  .article-header h1 {
    font-size: 1.5rem;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* 首页热门新闻板块样式 */
.hot-news {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 4rem 0;
}

.hot-news .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hot-news .section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hot-news .section-header h4 {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.news-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 160px;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.news-card-link {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  font-style: normal;
}

.news-card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 120px;
  padding: 1rem 0.875rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: var(--radius-sm);
  color: white;
}

.news-card-date .day {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  font-style: normal;
}

.news-card-date .month {
  font-size: 0.7rem;
  margin-top: 0.25rem;
  opacity: 0.9;
  font-style: normal;
}

.news-card-content {
  flex: 1;
  min-width: 0;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-card-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
}

.news-card:hover .news-card-content h3 {
  color: var(--primary-color);
}

.news-card-content p {
  margin: 0 0 0.625rem 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-style: normal;
}

.news-card-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: normal;
}

.news-card-meta .category {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  color: var(--primary-color);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 500;
}

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

.btn-more {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  font-style: normal;
}

.btn-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  color: white;
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-card-link {
    flex-direction: column;
  }
  
  .news-card-date {
    flex-direction: row;
    gap: 0.5rem;
    min-width: auto;
    width: fit-content;
  }
  
  .hot-news .section-header h2 {
    font-size: 1.75rem;
  }
}
