  body {
      font-family: 'Fira Code', monospace; 
      margin: 40px;
      background-color: #f5f5f5;
      color: #222;
    }

    .header-main-style {
      display: flex; 
      align-items: center; 
      gap: 12px; 
      padding: 10px;
    }
    .header-logo-style{
      display: flex; 
      align-items: center; 
      text-decoration: none; 
      color: inherit;
    }
    .header-logo-img-style{
      height: 90px; 
      width: auto;
    }
    .header-tagline-style{
      margin: 0; 
      font-size: 0.95rem; 
      color: #555;
    }
    .header-div-style{
      display: flex; 
      flex-direction: column; 
      line-height: 1.2;
    }

    /* Header */
    header {
      margin-bottom: 10px;
    }

    .site-logo {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 2.5rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #000;
      text-align: left;
      user-select: none;
      margin-bottom: 6px;
    }

    .social-share {
      margin-top: 20px;
      font-family: 'Fira Code', monospace;
      font-size: 16px;
      margin-bottom: 10px;
      font-weight: 100;
    }

    .social-share a {
      margin-right: 10px;
      text-decoration: none;
      color: #0077cc;
    }

    .social-share a:hover {
      text-decoration: underline;
    }

    .tagline {
      font-family: sans-serif;
      font-weight: 300;
      font-size: 1rem;
      color: #555;
      text-align: left;
      margin-top: -8px;
      letter-spacing: 0.05em;
      user-select: none;
      line-height: 1.2;
    }

    hr {
      border: none;
      height: 1px;
      background-color: #ccc;
      margin-bottom: 30px;
      margin-left: 40px;
      margin-right: 40px;
    }

    /* Layout: main + sidebar */
    main.page-layout {
      display: flex;
      gap: 40px;
      align-items: flex-start;
      max-width: 100%;
      margin-left: 40px;
      margin-right: 40px;
    }

    /* Article container fills remaining space */
    .article-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px; /* or any preferred width */
    width: 100%;
    }


    article.article-post {
      background-color: white;
      box-shadow: 2px 4px 12px rgba(0,0,0,0.1);
      border-radius: 8px;
      padding: 24px 32px;
      box-sizing: border-box;
      line-height: 1.6;
      font-size: 16px;
      color: #222;
    }

    article.article-post h1 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 2rem;
      margin-top: 0;
      margin-bottom: 16px;
      background-color: #b4f2a1; /* light vibrant green */
      padding: 10px 14px;
      border-radius: 7px;
      color: #222;
      display: inline-block;
      line-height: 1.2;
    }

    article.article-post h2 {
      margin-top: 24px;
      margin-bottom: 12px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 1.25rem;
      color: #0077cc;
    }

    article.article-post p {
      margin-bottom: 16px;
    }

    article.article-post table {
      border-collapse: collapse;
      width: 100%;
      margin-top: 20px;
      margin-bottom: 20px;
    }

    article.article-post table, 
    article.article-post th, 
    article.article-post td {
      border: 1px solid #ddd;
    }

    article.article-post th, 
    article.article-post td {
      padding: 10px;
      text-align: left;
    }

    article.article-post th {
      background-color: #b4f2a1;
      color: #222;
    }

    article.article-post a {
      color: #0077cc;
      text-decoration: none;
    }

    article.article-post a:hover {
      text-decoration: underline;
    }

    article.article-post .image-block {
      margin: 20px 0;
      text-align: center;
    }

    article.article-post .image-block img {
      max-width: 100%;
      height: auto;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    article.article-post .image-block figcaption {
      font-size: 14px;
      color: #555;
      margin-top: 6px;
      font-style: italic;
      user-select: none;
    }

.article-paragraph-with-image {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 2em;
  flex-wrap: wrap;
}

.article-thumbnail {
  width: 350px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.article-text {
  flex: 1 1 300px;
  min-width: 0;
}

    /* Sidebar */
    aside.sidebar {
      width: 260px;
      background-color: white;
      box-shadow: 2px 4px 12px rgba(0,0,0,0.1);
      border-radius: 8px;
      padding: 20px;
      box-sizing: border-box;
      flex-shrink: 0;
      position: sticky;
      top: 40px;
      height: fit-content;
    }

    aside.sidebar h3 {
      font-size: 1.25rem;
      margin-bottom: 14px;
      border-bottom: 2px solid #ddd;
      padding-bottom: 8px;
      color: #0077cc;
      font-family: 'Montserrat', sans-serif;
    }

    aside.sidebar ul {
      list-style-type: disc;
      padding-left: 20px;
      margin: 0;
    }

    aside.sidebar li {
      margin-bottom: 12px;
      font-family: 'Fira Code', monospace;
      font-size: 16px;
    }

    aside.sidebar a {
      color: #0077cc;
      text-decoration: none;
    }

    aside.sidebar a:hover {
      text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 900px) {
      body {
        margin: 20px;
      }

      hr {
        margin-left: 20px;
        margin-right: 20px;
      }

      main.page-layout {
        flex-direction: column;
        gap: 20px;
        margin-left: 20px;
        margin-right: 20px;
      }

      aside.sidebar {
        width: 100%;
        position: relative;
        top: auto;
      }

      .article-container {
        max-width: 100%;
      }
    }
    @media (max-width: 600px) {
  .article-paragraph-with-image {
    flex-direction: column;
    align-items: center;
  }

  .article-text {
    text-align: left;
  }

  .article-thumbnail {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
  }
}