/* Base Reset & Universal Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- COLOR SCHEMES (Pick One by uncommenting the block) --- */

/* 1. DEFAULT: Monochrome Blue (Current Active Palette) */
:root {
    --primary-color: #1f2937; /* Dark Gray / Near Black */
    --accent-color: #2563eb; /* Cobalt Blue for accent/hover */
    --text-color: #1f2937;
    --background-color: #f3f4f6; /* Light Gray Background */
    --card-background: #ffffff;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
}

/*
-- 2. ALTERNATIVE: Ocean Breeze Palette --
:root {
    --primary-color: #1565c0;
    --accent-color: #00bcd4;
    --text-color: #1565c0;
    --background-color: #e3f2fd;
    --card-background: #ffffff;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
}
*/

/*
-- 3. ALTERNATIVE: Warm Earth Palette --
:root {
    --primary-color: #795548;
    --accent-color: #ff9800;
    --text-color: #5d4037;
    --background-color: #fff8e1;
    --card-background: #ffffff;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
}
*/

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.75; /* Increased line height for readability */
    color: var(--text-color);
    background-color: var(--background-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container for Blog Post */
.container {
    width: 100%;
    max-width: 768px; /* Classic blog width for readability */
    margin: 2rem auto; /* Adjusted margin for single post page */
    padding: 0 1rem;
    flex-grow: 1;
}

/* Navigation & Post Header Styling */
.back-link {
    display: block;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.post-card {
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 2rem;
}

.post-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef; /* Keeps the separator line */
}

.post-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

/* Article Body Styles for Content Mapping */
.article-body h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

/* Styling for the podcast embed (to ensure it centers and respects the theme) */
.podcast-section {
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    margin-top: 2rem;
    text-align: center;
}

.podcast-section p {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Footer Styling (Reused) */
.footer {
    margin-top: auto; /* Push footer to the bottom */
    padding: 1.5rem 1rem;
    background-color: var(--card-background);
    color: var(--primary-color);
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid #e5e7eb;
}


/* Bullet-style quotes */
blockquote {
  position: relative;
  margin: 0.8em 0;
  padding-left: 1.5em;
  border-left: none;
  font-style: normal;
  color: #222;
}

blockquote::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #666;
  font-size: 1.2em;
  line-height: 1;
}
