 * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: Arial, Helvetica, sans-serif;
      background: #ffffff;
      color: #111111;
      line-height: 1.7;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { display: block; width: 100%; }
    button { font-family: inherit; }

    :root {
      --red: #d6001c;
      --red-hover: #b80018;
      --text: #111111;
      --text-2: #444444;
      --text-3: #777777;
      --bg: #ffffff;
      --bg-soft: #f7f7f8;
      --line: #ececec;
      --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
      --radius: 18px;
      --container: 1380px;
    }

    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header */
    .topbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }
    .nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .nav-left {
      display: flex;
      align-items: center;
      gap: 18px;
    }
    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 12px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 4px;
    }
    .mobile-menu-btn span {
      display: block;
      width: 18px;
      height: 2px;
      background: #111;
      border-radius: 999px;
    }
    .logo {
      font-size: 30px;
      font-weight: 900;
      letter-spacing: 1px;
      color: #111;
    }
    .logo span { color: var(--red); }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 15px;
      color: #222;
    }
    .nav-menu a:hover { color: var(--red); }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      transition: .25s ease;
      cursor: pointer;
      border: none;
    }
    .btn-primary {
      background: var(--red);
      color: #fff;
    }
    .btn-primary:hover {
      background: var(--red-hover);
      transform: translateY(-1px);
    }
    .btn-outline {
      border: 1px solid #d8d8d8;
      color: #111;
      background: #fff;
    }
    .btn-outline:hover {
      border-color: var(--red);
      color: var(--red);
    }

    /* Mobile drawer */
    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.35);
      opacity: 0;
      visibility: hidden;
      transition: .25s ease;
      z-index: 1200;
    }
    .drawer-overlay.show {
      opacity: 1;
      visibility: visible;
    }
    .mobile-drawer {
      position: fixed;
      top: 0;
      left: -320px;
      width: 300px;
      max-width: 82vw;
      height: 100vh;
      background: #fff;
      z-index: 1300;
      box-shadow: 10px 0 30px rgba(0,0,0,.12);
      transition: .28s ease;
      display: flex;
      flex-direction: column;
    }
    .mobile-drawer.show { left: 0; }
    .drawer-head {
      height: 78px;
      padding: 0 18px;
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .drawer-close {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 1px solid var(--line);
      background: #fff;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
    }
    .drawer-nav {
      padding: 12px 18px 20px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .drawer-nav a {
      padding: 14px 12px;
      border-radius: 12px;
      color: #111;
      font-weight: 700;
      transition: .2s ease;
    }
    .drawer-nav a:hover {
      background: #f7f7f8;
      color: var(--red);
    }
    .drawer-actions {
      padding: 0 18px 20px;
      display: grid;
      gap: 12px;
    }

    /* Hero */
    .article-hero {
      position: relative;
      min-height: 420px;
      display: flex;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 42%, rgba(255,255,255,.45) 100%),
        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      border-bottom: 1px solid var(--line);
    }
    .article-hero::before {
      content: "";
      position: absolute;
      right: 8%;
      top: 40px;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(214,0,28,.08), rgba(214,0,28,0));
    }
    .article-hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 56px 0;
    }
    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      color: #777;
      font-size: 14px;
      margin-bottom: 16px;
      font-weight: 600;
    }
    .breadcrumb a:hover {
      color: var(--red);
    }
    .article-tag {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--red);
      font-size: 13px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 800;
      padding: 8px 14px;
      border: 1px solid #f1d3d8;
      border-radius: 999px;
      background: #fff;
    }
    .article-hero h1 {
      font-size: 58px;
      line-height: 1.08;
      font-weight: 900;
      color: #111;
      margin-bottom: 16px;
    }
    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      color: #666;
      font-size: 15px;
      font-weight: 700;
    }

    /* Main layout */
    .article-section {
      padding: 72px 0 90px;
      background: #fff;
    }
    .article-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 34px;
      align-items: start;
    }

    .article-main {
      min-width: 0;
    }
    .article-cover {
      border-radius: 24px;
      overflow: hidden;
      margin-bottom: 28px;
      box-shadow: var(--shadow);
    }
    .article-cover img {
      width: 100%;
      height: 480px;
      object-fit: cover;
    }

    .article-card {
      border: 1px solid var(--line);
      border-radius: 24px;
      background: #fff;
      padding: 34px;
      box-shadow: 0 6px 20px rgba(0,0,0,.03);
    }

    .article-lead {
      font-size: 20px;
      line-height: 1.8;
      color: #222;
      margin-bottom: 24px;
      font-weight: 500;
    }

    .article-content p {
      font-size: 16px;
      color: #444;
      margin-bottom: 18px;
    }

    .article-content h2 {
      font-size: 30px;
      line-height: 1.2;
      color: #111;
      font-weight: 900;
      margin: 34px 0 18px;
    }

    .article-image {
      margin: 28px 0;
      border-radius: 20px;
      overflow: hidden;
    }
    .article-image img {
      width: 100%;
      height: 420px;
      object-fit: cover;
    }
    .article-image-caption {
      font-size: 13px;
      color: #888;
      padding-top: 10px;
    }

    .quote-box {
      margin: 30px 0;
      padding: 26px 28px;
      border-left: 4px solid var(--red);
      background: #fafafa;
      border-radius: 16px;
      color: #333;
      font-size: 18px;
      line-height: 1.8;
      font-weight: 600;
    }

    .share-box {
      margin-top: 36px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
    }
    .share-box strong {
      color: #111;
      font-size: 16px;
      margin-right: 8px;
    }
    .share-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: #444;
      transition: .2s ease;
    }
    .share-btn:hover {
      border-color: var(--red);
      color: var(--red);
      transform: translateY(-2px);
    }

    /* Sidebar */
    .sidebar {
      position: sticky;
      top: 96px;
      display: grid;
      gap: 22px;
    }

    .side-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 24px;
      box-shadow: 0 6px 20px rgba(0,0,0,.03);
    }

    .side-title {
      font-size: 24px;
      font-weight: 900;
      color: #111;
      margin-bottom: 18px;
    }

    .latest-list {
      display: grid;
      gap: 16px;
    }
    .latest-item {
      display: grid;
      grid-template-columns: 96px 1fr;
      gap: 14px;
      align-items: start;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }
    .latest-item:last-child {
      padding-bottom: 0;
      border-bottom: none;
    }
    .latest-thumb {
      border-radius: 14px;
      overflow: hidden;
    }
    .latest-thumb img {
      width: 100%;
      height: 80px;
      object-fit: cover;
    }
    .latest-item-title {
      font-size: 15px;
      line-height: 1.4;
      font-weight: 800;
      color: #111;
      margin-bottom: 6px;
    }
    .latest-item-title:hover {
      color: var(--red);
    }
    .latest-date {
      font-size: 12px;
      color: #888;
      font-weight: 700;
    }

    .news-cta {
      overflow: hidden;
      padding: 0;
    }
    .news-cta-image {
      height: 220px;
      overflow: hidden;
    }
    .news-cta-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .news-cta-body {
      padding: 24px;
    }
    .news-cta-body p {
      color: #666;
      margin: 10px 0 18px;
    }

    /* Bottom CTA */
    .bottom-cta-section {
      padding: 0 0 88px;
    }
    .cta-box {
      background:
        linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.88)),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: 42px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      box-shadow: 0 6px 20px rgba(0,0,0,.03);
    }
    .cta-box h3 {
      font-size: 38px;
      line-height: 1.1;
      font-weight: 900;
      color: #111;
      margin-bottom: 10px;
    }
    .cta-box p {
      color: #666;
      max-width: 720px;
    }

    /* Footer */
    footer {
      border-top: 1px solid var(--line);
      background: #fafafa;
      padding: 28px 0;
    }
    .footer-wrap {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      color: #777;
      font-size: 14px;
    }

    @media (max-width: 1200px) {
      .article-layout {
        grid-template-columns: 1fr;
      }
      .sidebar {
        position: static;
      }
    }

    @media (max-width: 992px) {
      .nav-menu, .nav-actions {
        display: none;
      }
      .mobile-menu-btn {
        display: inline-flex;
      }
      .article-hero h1 {
        font-size: 44px;
      }
      .cta-box {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 768px) {
      .article-hero {
        min-height: 340px;
      }
      .article-hero h1 {
        font-size: 34px;
      }
      .article-meta {
        font-size: 14px;
      }
      .article-cover img {
        height: 280px;
      }
      .article-card {
        padding: 22px;
      }
      .article-image img {
        height: 260px;
      }
      .latest-item {
        grid-template-columns: 84px 1fr;
      }
      .cta-box {
        padding: 28px;
      }
      .cta-box h3 {
        font-size: 30px;
      }
      .topbar .nav, .drawer-head {
        height: 70px;
      }
    }
    .site-footer{
  background:#f3f3f3;
  margin-top:60px;
  border-top:1px solid #e5e5e5;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:80px;
  padding:48px 0 36px;
}

.footer-col{
  flex:1;
  min-width:220px;
}

.footer-brand{
  flex:1.6;
}

.footer-logo a{
  font-size:20px;
  font-weight:700;
  color:#111;
  text-decoration:none;
  line-height:1.4;
}

.footer-desc{
  margin-top:18px;
  max-width:420px;
  font-size:15px;
  line-height:1.9;
  color:#444;
}

.footer-title{
  margin:0 0 18px;
  font-size:16px;
  font-weight:700;
  color:#6b4a1f;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.footer-links{
  margin:0;
  padding:0;
  list-style:none;
}

.footer-links li{
  margin-bottom:14px;
}

.footer-links a{
  color:#111;
  text-decoration:none;
  font-size:15px;
  line-height:1.7;
  transition:all .2s ease;
}

.footer-links a:hover{
  color:#8a5a22;
}

.footer-bottom{
  border-top:1px solid #e2e2e2;
  padding:16px 0;
  background:#efefef;
}

.footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  font-size:14px;
  color:#555;
}

.footer-bottom-inner a{
  color:#111;
  text-decoration:none;
}

.footer-bottom-links{
  display:flex;
  align-items:center;
  gap:10px;
}

@media (max-width: 768px){
  .footer-inner{
    flex-direction:column;
    gap:30px;
    padding:36px 0 28px;
  }

  .footer-desc{
    max-width:none;
  }

  .footer-bottom-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}