/* style/blog.css */

/* Custom Colors */
:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-deep-green: #0A4B2C;
}

/* Base styles for the blog page */
.page-blog {
    font-family: 'Arial', sans-serif;
    color: var(--color-text-main); /* Default text color for the page, assuming dark body background */
    background-color: var(--color-background); /* Page specific background */
    line-height: 1.6;
    padding-bottom: 50px; /* Space above footer */
}