
/* Import shared header styles - single source of truth */
@import url('./shared-header.css');

/* Import shared footer styles - single source of truth */
@import url('./shared-footer.css');

  body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
  }


/*HEADER STYLES NOW IMPORTED FROM shared-header.css*/



/*MENU STYLES NOW IMPORTED FROM shared-header.css*/


/*ARTICLE BEGINNING*/
  article {
    max-width: 720px;
    margin: 40px auto;
    padding: 40px 24px;
    background: white;
  }
  .article-date {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }


  /* References styling */
  .references {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
  }

  .reference-item {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #4a4a4a;
    padding-left: 1rem;
    text-indent: -1rem;
  }

  .reference-item em {
    font-style: italic;
    color: #2c2c2c;
  }

  /* Strong text styling */
  strong {
    font-weight: 600;
    color: #1a1a1a;
  }

  /* Better spacing for long content */
  article > p:last-of-type {
    margin-bottom: 2rem;
  }
  h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.75rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.375rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  p {
    line-height: 1.65;
    color: #2c2c2c;
    font-weight: 400;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }

  /* Article Attribution styling */
  .article-attribution {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8e8e8;
  }

  .article-attribution p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
    text-align: center;
  }

  .article-attribution em {
    font-style: italic;
    color: #555;
  }

  /*ARTICLE END*/

/* Mobile Responsive Design - Reader-friendly like Medium/Neuralink */
@media (max-width: 768px) {
  article {
    margin: 20px 10px;
    padding: 20px 16px;
    max-width: calc(100vw - 20px);
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 300;
  }

  h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.25;
  }

  h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  p {
    font-size: 1.125rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }

  .references p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  article {
    margin: 10px 8px;
    padding: 20px 16px;
    max-width: calc(100vw - 16px);
  }

  h1 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    font-weight: 300;
  }

  h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.25rem;
    margin-top: 1.75rem;
    margin-bottom: 0.875rem;
    line-height: 1.3;
  }

  p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }

  .references p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

}
