@charset "utf-8";
.hero-slider{
	height: 50vh;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.8;
  }
 .news_info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    background: #fff;
    min-height: 100vh;
  }

  /* Title */
  .article-title {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    color: #222;
    margin-bottom: 18px;
  }
  .article-title .hl-orange { color: #e67e22; }
  .article-title .hl-blue { color: #3498db; }

  /* Meta */
  .article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    color: #999;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
  }
  .article-meta span { white-space: nowrap; }

  /* Summary Box */
  .summary-box {
    background: #f0f7fb;
    border-left: 3px solid #3498db;
    padding: 16px 22px;
    margin-bottom: 28px;
    border-radius: 0 6px 6px 0;
    font-size: 14.5px;
    line-height: 1.75;
    color: #444;
  }
  .summary-box strong { color: #222; }

  /* Content */
  .article-content {
    font-size: 15px;
    color: #444;
    line-height: 1.85;
  }
  .article-content p {
    margin-bottom: 18px;
    text-align: justify;
  }
  .article-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
  }
  .article-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
  }
  .article-content ul li::before {
    content: "•";
    position: absolute;
    left: 6px;
    color: #e67e22;
    font-weight: bold;
    font-size: 16px;
  }
  .article-content strong { color: #222; font-weight: 600; }
  .article-content a { color: #3498db; text-decoration: none; }
  .article-content a:hover { text-decoration: underline; }

  /* Photo credit */
  .photo-credit {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    margin: 10px auto 22px;
  }

  /* Nav */
  .article-nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid #eee;
    font-size: 14px;
  }
  .nav-item {
    max-width: 45%;
    text-decoration: none;
    color: #666;
    transition: color .2s;
  }
  .nav-item:hover { color: #e67e22; }
  .nav-label {
    font-weight: 600;
    color: #999;
    font-size: 12px;
    margin-bottom: 2px;
  }
  .nav-item.next { text-align: right; margin-left: auto; }

  /* Responsive */
  @media (max-width: 600px) {
    .container { padding: 24px 16px 40px; }
    .article-title { font-size: 21px; }
    .article-meta { flex-wrap: wrap; gap: 10px 16px; }
    .article-nav { flex-direction: column; gap: 14px; }
    .nav-item, .nav-item.next { max-width: 100%; text-align: left !important; }
  }
  
  /* ===== Hero ===== */
  .hero {
    height: 55vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 60%, #16213e 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
  }
  .hero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 70%, rgba(212,137,74,0.14) 0%, transparent 65%);
  }
  .hero-eyebrow {font-size: 38px;letter-spacing: 4px;color: #d4894a;text-transform: uppercase;margin-bottom: 16px;opacity: 0;animation: fadeInDown 0.8s 0.2s forwards;}
  .hero-title {color: #fff;font-size: clamp(32px, 5vw, 56px);font-weight: 800;margin-bottom: 16px;opacity: 0;animation: fadeInDown 0.8s 0.4s forwards;}
  .hero-title span { color: #d4894a; }
  .hero-sub { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 520px; line-height: 1.7; opacity: 0; animation: fadeInUp 0.8s 0.6s forwards; }
  
  @keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }