/* ==========================
   BLOG POSTS: BODY & BASE STYLES
   ========================== */
body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f7f3f0; /* soft pastel background */
    color: #2c2c2c; /* dark font color */
    line-height: 1.7; }

/* ==========================
   CONTAINER
   ========================== */
.blog-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 20px; }

/* ==========================
   HEADINGS
   ========================== */
h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-align: center; }

h2 {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 15px; }

h3 {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 10px; }

/* ==========================
   BYLINE & METADATA
   ========================== */
.byline {
    font-size: 0.9em;
    color: #555;
    text-align: center;
    margin-bottom: 40px; }

/* ==========================
   PARAGRAPHS & TEXT
   ========================== */
p {
    margin-bottom: 20px; }

/* ==========================
   LISTS
   ========================== */
ul {
    margin-bottom: 20px;
    padding-left: 20px; }

li {
    margin-bottom: 10px; }


/* ==========================
   404 PAGE STYLES
   ========================== */
.error-404 {
    text-align: center;
    padding: 100px 20px; }

.error-404 h1 {
    font-size: 6em;
    margin-bottom: 20px; }

.error-404 h2 {
    font-size: 2em;
    margin-bottom: 20px; }

.error-404 p {
    font-size: 1.1em;
    margin-bottom: 15px; }

.error-404 a {
    color: #2c2c2c; /* match main text */
    text-decoration: underline;
    transition: color 0.3s; }

.error-404 a:hover {
    color: #555; /* subtle hover change */ }
    
    /* ==========================
   FOOTER STYLES
   ========================== */
.site-footer {
    text-align: center;
    padding: 30px 20px;
    color: #555; /* slightly lighter than main text */
    font-size: 0.9em; }

.site-footer hr {
    border: none;
    border-top: 1px solid #ccc; /* subtle line */
    margin-bottom: 20px; }

.site-footer .footer-logo {
    max-width: 120px;
    margin-bottom: 15px; }

.site-footer p {
    margin: 0; }


