/* Generated by tools/build.php - do not edit by hand. */
/* block 1 of 1 */
body { background: #0b1120 !important; }

  /* ===== ARTICLE HERO ===== */
  .article-hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    margin-top: 0;
  }
  .article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  }
  .article-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 0 40px;
    z-index: 2;
  }
  .article-hero-content .container {
    max-width: 900px;
  }
  .article-meta-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
  }
  .article-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8611a;
    color: #fff;
    padding: 5px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .article-date {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .article-hero-content h1 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 14px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }
  .article-hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
  }

  /* ===== ARTICLE BODY ===== */
  .article-body {
    padding: 50px 0 80px;
    background: #0b1120;
  }
  .article-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* --- Breadcrumb --- */
  .article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 36px;
    font-size: 13px;
  }
  .article-breadcrumb a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s;
  }
  .article-breadcrumb a:hover { color: #e8611a; }
  .article-breadcrumb .sep { color: rgba(255,255,255,0.25); }
  .article-breadcrumb .current { color: rgba(255,255,255,0.7); font-weight: 600; }

  /* --- Lead Paragraph --- */
  .article-lead {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* --- Body Paragraph --- */
  .article-body p {
    color: rgba(255,255,255,0.72);
    font-size: 16.5px;
    line-height: 1.9;
    margin-bottom: 22px;
  }
  .article-body p strong {
    color: rgba(255,255,255,0.92);
    font-weight: 700;
  }

  /* --- Subheading --- */
  .article-subheading {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 44px 0 18px;
    padding-left: 16px;
    border-left: 4px solid #e8611a;
    line-height: 1.4;
  }

  /* --- Full-width Image --- */
  .article-img-full {
    margin: 36px 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
  }
  .article-img-full img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
  }
  .article-img-full:hover img {
    transform: scale(1.015);
  }
  .article-img-caption {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
  }

  /* --- Stats Bar --- */
  .article-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    margin: 36px 0;
  }
  .article-stat {
    background: rgba(255,255,255,0.03);
    padding: 28px 20px;
    text-align: center;
    transition: background 0.3s;
  }
  .article-stat:hover {
    background: rgba(232,97,26,0.06);
  }
  .article-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #e8611a;
    line-height: 1;
    margin-bottom: 8px;
  }
  .article-stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* --- Highlight/Callout Box --- */
  .article-callout {
    background: rgba(232,97,26,0.06);
    border: 1px solid rgba(232,97,26,0.15);
    border-radius: 10px;
    padding: 28px 30px;
    margin: 32px 0;
    position: relative;
  }
  .article-callout::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #e8611a, #f0943a);
    border-radius: 10px 0 0 10px;
  }
  .article-callout-label {
    font-size: 11px;
    font-weight: 700;
    color: #e8611a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .article-callout p {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 17px !important;
    line-height: 1.7 !important;
    margin-bottom: 0 !important;
  }

  /* --- Blockquote --- */
  .article-blockquote {
    margin: 36px 0;
    padding: 28px 32px 28px 36px;
    border-left: 3px solid rgba(232,97,26,0.4);
    background: rgba(255,255,255,0.02);
    border-radius: 0 10px 10px 0;
  }
  .article-blockquote p {
    color: rgba(255,255,255,0.75) !important;
    font-style: italic;
    font-size: 17px !important;
    line-height: 1.8 !important;
    margin-bottom: 12px !important;
  }
  .article-blockquote cite {
    display: block;
    color: #e8611a;
    font-size: 13px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.5px;
  }

  /* --- Share Bar --- */
  .article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .article-share-label {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-right: 4px;
  }
  .share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .share-btn:hover {
    background: #e8611a;
    color: #fff;
    transform: translateY(-2px);
  }

  /* --- Author Box --- */
  .article-author-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    margin: 36px 0;
  }
  .author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d3b8e, #106eea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .author-info .author-name {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
  }
  .author-info .author-role {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-top: 2px;
  }

  /* --- Back Link --- */
  .article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    margin-bottom: 24px;
  }
  .article-back:hover {
    color: #e8611a;
    gap: 12px;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 991px) {
    .article-hero { height: 400px; }
    .article-hero-content h1 { font-size: 30px; }
  }
  @media (max-width: 768px) {
    .article-hero { height: 340px; }
    .article-hero-content { padding: 30px 0 28px; }
    .article-hero-content h1 { font-size: 26px; }
    .article-hero-subtitle { font-size: 15px; }
    .article-lead { font-size: 17px; }
    .article-subheading { font-size: 20px; margin: 32px 0 14px; }
    .article-stats { grid-template-columns: 1fr; }
    .article-blockquote { padding: 20px 24px; }
    .article-author-box { flex-direction: column; text-align: center; }
  }
  @media (max-width: 576px) {
    .article-hero { height: 280px; }
    .article-hero-content h1 { font-size: 22px; line-height: 1.3; }
    .article-body p { font-size: 15px; line-height: 1.8; }
    .article-container { padding: 0 16px; }
    .article-meta-top { gap: 10px; }
  }
