<style>
    body {
      margin: 0;
      background: #f7f8fb;
      font-family: "Inter", sans-serif;
      color: #111827;
    }

    .b3-article-page {
      background: #f7f8fb;
      min-height: 100vh;
    }

    .b3-article-shell {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .b3-article-hero {
      background: linear-gradient(135deg, #1e293b 0%, #334155 55%, #475569 100%);
      color: #fff;
      padding: 128px 0 82px;
    }

    .b3-article-hero-inner {
      max-width: 900px;
      padding-top: 28px;
    }

    .b3-article-kicker {
      color: #bed600;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .22em;
      text-transform: uppercase;
      margin: 0 0 22px;
    }

    .b3-article-hero h1 {
      font-family: "Raleway", sans-serif;
      font-size: clamp(40px, 4.7vw, 64px);
      line-height: 1.05;
      letter-spacing: -0.04em;
      margin: 0 0 24px;
    }

    .b3-article-summary {
      max-width: 760px;
      color: rgba(255,255,255,.78);
      font-size: 20px;
      line-height: 1.55;
      font-weight: 750;
      margin: 0 0 28px;
    }

    .b3-article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      color: rgba(255,255,255,.82);
      font-size: 14px;
      font-weight: 800;
    }

    .b3-article-main {
      padding: 64px 0 96px;
    }

    .b3-article-grid {
      display: grid;
      grid-template-columns: minmax(0, 760px) 320px;
      gap: 48px;
      align-items: start;
    }

    .b3-article-featured {
      margin: 0 0 34px;
    }

    .b3-article-featured img {
      width: 100%;
      max-height: 500px;
      object-fit: cover;
      border-radius: 18px;
      display: block;
      box-shadow: 0 20px 55px rgba(15,23,42,.12);
    }

    .b3-article-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 22px;
      padding: 52px;
      box-shadow: 0 24px 70px rgba(15,23,42,.08);
    }

    .b3-article-body {
      color: #475569;
      font-size: 19px;
      line-height: 1.85;
      font-weight: 600;
    }

    .b3-article-body > p:first-child {
      display: none;
    }

    .b3-article-body p {
      margin: 0 0 1.4em;
    }

    .b3-article-body h2,
    .b3-article-body h3,
    .b3-article-body h4 {
      font-family: "Raleway", sans-serif;
      color: #111827;
      line-height: 1.2;
      letter-spacing: -0.03em;
      margin: 2em 0 .75em;
    }

    .b3-article-body h2 { font-size: 34px; }
    .b3-article-body h3 { font-size: 26px; }
    .b3-article-body h4 { font-size: 22px; }

    .b3-article-body a {
      color: #65a30d;
      font-weight: 900;
    }

    .b3-article-body img {
      max-width: 100%;
      height: auto;
      border-radius: 16px;
      margin: 34px 0;
    }

    .b3-article-body blockquote {
      border-left: 5px solid #c4e600;
      background: #f8fafc;
      border-radius: 14px;
      padding: 24px 28px;
      margin: 34px 0;
      color: #1f2937;
      font-weight: 800;
    }

    .b3-article-body ul,
    .b3-article-body ol {
      padding-left: 1.35em;
      margin: 0 0 1.4em;
    }

    .b3-article-sidebar {
      position: sticky;
      top: 115px;
      display: grid;
      gap: 18px;
    }

    .b3-side-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      padding: 26px;
      box-shadow: 0 20px 55px rgba(15,23,42,.07);
    }

    .b3-side-card small {
      display: block;
      color: #64748b;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .22em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .b3-side-card h3 {
      font-family: "Raleway", sans-serif;
      color: #1f2937;
      font-size: 25px;
      line-height: 1.15;
      margin: 0 0 14px;
    }

    .b3-side-card p {
      color: #64748b;
      font-size: 16px;
      font-weight: 800;
      line-height: 1.55;
      margin: 0 0 20px;
    }

    .b3-side-btn {
      display: inline-block;
      background: #bed600;
      color: #fff;
      font-weight: 900;
      text-decoration: none;
      border-radius: 9px;
      padding: 13px 18px;
    }

    .b3-back-link {
      display: inline-block;
      margin-top: 34px;
      color: #bed600;
      font-weight: 900;
      text-decoration: none;
    }

    @media (max-width: 980px) {
      .b3-article-grid {
        grid-template-columns: 1fr;
      }

      .b3-article-sidebar {
        position: static;
      }
    }

    @media (max-width: 640px) {
      .b3-article-shell {
        padding: 0 20px;
      }

      .b3-article-hero {
        padding: 115px 0 60px;
      }

      .b3-article-hero h1 {
        font-size: 40px;
      }

      .b3-article-summary {
        font-size: 18px;
      }

      .b3-article-card {
        padding: 30px 24px;
      }

      .b3-article-body {
        font-size: 17px;
      }
    }
  </style>/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/