/* =========================================================
   Global Reset
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================================
   Layout & Page Structure
   ========================================================= */
body {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;               
    line-height: 1.6;
    color: #000000;                
}

/* =========================================================
   Typography – Headings (h1‑h6) & Paragraphs
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1rem;          
}

h1 { font-size: 2.25rem; } 
h2 { font-size: 1.75rem; }   
h3 { font-size: 1.5rem; }    
h4 { font-size: 1.25rem; }   
h5 { font-size: 1rem; }      
h6 { font-size: 0.875rem; }  

p {
    font-size: 1rem;         
    margin-bottom: 1rem;
}

/* =========================================================
   Links
   ========================================================= */
a {
    color: #00007F;      
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


a.HeaderLink {
    color: #000000;
    text-decoration: none;
}

a.HeaderLink:hover {
    color: #000000;
    text-decoration: none;
}

/* =========================================================
   Sections & Lists
   ========================================================= */
section {
    margin-bottom: 2.5rem;     
}

ul {
    margin-left: 1.25rem;      
    margin-bottom: 0.9375rem; 
}

/* =========================================================
   Visual Separator – Soft Horizontal Rule
   ========================================================= */
hr.soft {
    border: none;
    border-top: 1px solid #cccccc;
    height: 1px;
    background: linear-gradient(to right, transparent, #cccccc, transparent);
}

/* =========================================================
   Blockquote (standard styling)
   ========================================================= */
blockquote {
    padding: 1em 2em;
    margin: 0 0 1rem 0;
    line-height: 1.5;
    border-radius: 0 4px 4px 0;
    background-color: #f9f9f9;
    color: #000000;
    font-style: normal;
    border-left: 4px solid #000000;
}

blockquote.green {
    padding: 1em 2em;
    margin: 0 0 1rem 0;
    line-height: 1.5;
    border-radius: 0 4px 4px 0;
    background-color: #f9f9f9;
    color: #000000;
    font-style: normal;
    border-left: 4px solid #63da38;
}

blockquote.blue {
    padding: 1em 2em;
    margin: 0 0 1rem 0;
    line-height: 1.5;
    border-radius: 0 4px 4px 0;
    background-color: #f9f9f9;
    color: #000000;
    font-style: normal;
    border-left: 4px solid #1badf8;
}

blockquote.volt {
    padding: 1em 2em;
    margin: 0 0 1rem 0;
    line-height: 1.5;
    border-radius: 0 4px 4px 0;
    background-color: #f9f9f9;
    color: #000000;
    font-style: normal;
    border-left: 4px solid #502379;
}

details > summary {
    font-size: 1.5rem;       /* Matches typical h3 size */
    font-weight: bold;       /* Matches h3 weight */
    margin: 0.5em 0;         /* Adjust as needed */
    cursor: pointer;
  }
  
  /* Remove the default marker in WebKit browsers */
  details > summary::-webkit-details-marker {
    display: none;
  }

.notion-callout {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  background-color: #f5f5f5;
  border-radius: 8px;
  gap: 12px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
}

.notion-callout .emoji {
  font-size: 1.2em;
  margin-top: 2px;
}

.notion-callout p {
  margin: 0;
}

/* =========================================================
   End of stylesheet
   ========================================================= */
