/* --- Improved Individual Blog Post Page Styles --- */
/* Link this stylesheet AFTER your main styles.css in your blog post HTML */

/* Ensure body and html take full height if needed */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
/* --- Enhanced Main Blog Listing Page (blog/index.html) Styles --- */
/* These styles apply to the main blog listing page */

/* General Body Style for Main Blog Listing Page */
body.blog-listing {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef); /* Subtle gradient background */
    color: #333;
    margin: 0;
    padding: 0;
    /* Ensure footer stays at the bottom */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main container for blog listing content */
.blog-container {
    max-width: 1200px;
    width: 95%; /* Responsive width */
    margin: 50px auto 40px auto; /* Top margin, bottom margin */
    padding: 0;
    flex-grow: 1; /* Takes available space */
}

/* Blog Header Section - Enhanced */
.blog-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    position: relative;
}

/* Decorative element for the header */
.blog-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #212529, #6c757d);
    border-radius: 15px 15px 0 0;
}

.blog-header .blog-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2em;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #212529;
    letter-spacing: -0.5px;
}

.blog-header .blog-intro {
    font-size: 1.25em;
    color: #495057;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid Layout for Blog Cards - Enhanced */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Slightly wider min */
    gap: 40px; /* Increased gap */
}

/* Individual Blog Card Styles - Enhanced */
.blog-card {
    background: #fff;
    border-radius: 12px; /* Larger radius */
    overflow: hidden;
    /* Enhanced shadow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 20px 50px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease; /* Smoother transition */
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px); /* Lift effect */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 25px 55px rgba(0, 0, 0, 0.12); /* Enhanced shadow */
    border-color: #212529; /* Border color change on hover */
}

/* Image Container within Card - Enhanced */
.blog-card-img {
    width: 100%;
    /* Maintain aspect ratio */
    aspect-ratio: 16 / 9;
    background-color: #f8f9fa; /* Light background */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative; /* For potential overlay effects */
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; /* Smooth zoom */
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05); /* Zoom in on hover */
}

/* Text Information within Card - Enhanced */
.blog-card-info {
    padding: 30px 25px; /* Increased padding */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9em; /* Slightly smaller */
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 15px; /* Increased margin */
    text-transform: uppercase; /* Uppercase date */
    letter-spacing: 1px;
}

.blog-card h3 {
    margin: 0 0 15px 0; /* Adjusted margins */
    font-size: 1.6em; /* Larger title */
    font-weight: 700;
    color: #212529;
    line-height: 1.3;
    flex-grow: 1; /* Pushes content down */
}

.blog-card h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.blog-card h3 a:hover {
    color: #000000; /* Darker hover */
}

.blog-card p {
    margin: 0 0 25px 0; /* Adjusted margins */
    line-height: 1.7; /* Better line height */
    color: #495057;
    flex-grow: 1; /* Takes available space */
}

/* "Read More" Button Style - Enhanced & Themed */
.read-more-btn {
    display: inline-block;
    background-color: #212529; /* Theme black */
    color: #fff;
    padding: 12px 28px; /* Increased padding */
    border-radius: 30px; /* Pill shape */
    text-decoration: none;
    font-family: 'Montserrat', sans-serif; /* Use Montserrat */
    font-weight: 600; /* Semi-bold */
    transition: all 0.3s ease;
    border: 2px solid #212529; /* Solid border */
    font-size: 15px; /* Slightly larger */
    letter-spacing: 1px;
    align-self: flex-start; /* Align button to the left */
    margin-top: auto; /* Push button to the bottom */
    box-shadow: 0 4px 10px rgba(33, 37, 41, 0.2); /* Subtle shadow */
}

.read-more-btn:hover {
    background-color: #ffffff; /* Invert colors */
    color: #212529; /* Theme black text */
    transform: translateY(-3px); /* Lift effect */
    box-shadow: 0 6px 15px rgba(33, 37, 41, 0.3); /* Enhanced shadow */
    border: 2px solid #212529; /* Keep border */
}

/* Back to Home/Other Page Button - Enhanced */
.back-to-home {
    display: inline-flex; /* Use flex for alignment */
    align-items: center;
    justify-content: center;
    margin: 0 0 30px 0; /* Margin only on bottom */
    text-decoration: none;
    color: #ffffff; /* White text */
    font-family: 'Montserrat', sans-serif; /* Use Montserrat */
    font-weight: 600; /* Semi-bold */
    padding: 12px 25px; /* Increased padding */
    border-radius: 30px; /* Pill shape */
    transition: all 0.3s ease;
    background-color: #212529; /* Theme black */
    border: 2px solid #212529; /* Solid border */
    font-size: 15px; /* Slightly larger */
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(33, 37, 41, 0.2); /* Subtle shadow */
    width: fit-content; /* Only take necessary width */
}

.back-to-home:hover {
    background-color: #ffffff; /* Invert colors */
    color: #212529; /* Theme black text */
    transform: translateY(-3px); /* Lift effect */
    box-shadow: 0 6px 15px rgba(33, 37, 41, 0.3); /* Enhanced shadow */
    border: 2px solid #212529; /* Keep border */
}

.back-to-home i {
    margin-right: 10px; /* Space for icon */
    font-size: 16px;
}

/* Responsive adjustments for Enhanced Blog Listing */
@media (max-width: 992px) {
    .blog-header .blog-title {
        font-size: 2.8em;
    }

    .blog-header .blog-intro {
        font-size: 1.15em;
    }

    .blog-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-container {
        margin: 30px auto 30px auto;
        width: 90%;
    }

    .blog-header {
        padding: 25px 15px;
        margin-bottom: 40px;
    }

    .blog-header .blog-title {
        font-size: 2.4em;
    }

    .blog-header .blog-intro {
        font-size: 1.1em;
    }

    .blog-card-info {
        padding: 25px 20px;
    }

    .blog-card h3 {
        font-size: 1.4em;
    }

    .blog-card-date {
        font-size: 0.85em;
    }

    .read-more-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .back-to-home {
        padding: 10px 24px;
        font-size: 14px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .blog-container {
        width: 95%;
        margin: 25px auto 25px auto;
    }

    .blog-header {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .blog-header .blog-title {
        font-size: 2em;
    }

    .blog-header .blog-intro {
        font-size: 1em;
    }

    .blog-grid {
        gap: 25px;
    }

    .blog-card-info {
        padding: 20px 15px;
    }

    .blog-card h3 {
        font-size: 1.3em;
    }
}
/* --- End Enhanced Main Blog Listing Page Styles --- */
/* --- Enhanced Blog Preview Section Styles (for index.html) --- */
/* These styles apply to the blog preview section on the homepage */

/* Blog Preview Section Container */
.blog-preview {
    padding: 70px 0; /* Increased padding */
    background: linear-gradient(to bottom, #ffffff, #f8f9fa); /* Subtle gradient */
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

/* Title for the preview section */
.blog-preview .section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em; /* Larger title */
    font-weight: 700;
    margin-bottom: 15px;
    color: #212529;
    letter-spacing: -0.5px;
}

/* Subtitle/Intro for the preview section */
.blog-preview-intro {
    text-align: center;
    font-size: 1.1em;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 40px auto; /* Center and add bottom margin */
    line-height: 1.7;
}

/* Grid for preview cards */
.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px; /* Increased gap */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Individual Preview Card - Reuse enhanced .blog-card styles */
/* We can use the same base .blog-card class, but might need slight adjustments */
.blog-preview .blog-card {
    /* Inherit most styles from the main .blog-card */
    /* Potential minor tweaks if needed, but generally reuse */
    /* Example: slightly smaller box shadow or padding if desired */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06), 0 10px 30px rgba(0, 0, 0, 0.05); /* Slightly less intense */
}

/* Preview Card Info - Reuse enhanced .blog-card-info styles */
.blog-preview .blog-card-info {
    padding: 25px 20px; /* Slightly less padding than main listing */
}

/* Preview Card Title - Reuse enhanced .blog-card h3 styles */
.blog-preview .blog-card h3 {
    font-size: 1.5em; /* Slightly smaller title */
    margin-bottom: 12px; /* Slighty less margin */
}

/* Preview Card Date - Reuse enhanced .blog-card-date styles */
.blog-preview .blog-card-date {
    font-size: 0.85em; /* Slightly smaller date */
    margin-bottom: 12px; /* Slighty less margin */
}

/* Preview Card Excerpt - Reuse enhanced .blog-card p styles */
.blog-preview .blog-card p {
    font-size: 1em; /* Base size */
    margin-bottom: 20px; /* Slighty less margin */
}

/* Preview Card "Read More" Button - Reuse enhanced .read-more-btn styles */
/* Potentially make it slightly smaller */
.blog-preview .read-more-btn {
    padding: 10px 22px; /* Smaller padding */
    font-size: 14px; /* Smaller font */
}

/* CTA Button below the grid */
.blog-preview-cta {
    text-align: center;
    margin-top: 50px; /* Increased margin */
}

/* "View All Posts" Button - Reuse enhanced .back-to-home/.read-more-btn styles */
/* We can make it look like a primary button, similar to .back-to-home but centered */
.view-all-blog-posts {
    display: inline-flex; /* Use flex for alignment */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff; /* White text */
    font-family: 'Montserrat', sans-serif; /* Use Montserrat */
    font-weight: 600; /* Semi-bold */
    padding: 14px 32px; /* Generous padding */
    border-radius: 30px; /* Pill shape */
    transition: all 0.3s ease;
    background-color: #212529; /* Theme black */
    border: 2px solid #212529; /* Solid border */
    font-size: 16px; /* Slightly larger */
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(33, 37, 41, 0.25); /* Subtle shadow */
}

.view-all-blog-posts:hover {
    background-color: #ffffff; /* Invert colors */
    color: #212529; /* Theme black text */
    transform: translateY(-3px); /* Lift effect */
    box-shadow: 0 6px 18px rgba(33, 37, 41, 0.35); /* Enhanced shadow */
    border: 2px solid #212529; /* Keep border */
}

.view-all-blog-posts i {
    margin-right: 10px; /* Space for icon */
    font-size: 16px;
}


/* Responsive adjustments for Blog Preview Section */
@media (max-width: 768px) {
    .blog-preview {
        padding: 50px 0;
    }

    .blog-preview .section-title {
        font-size: 2.2em;
    }

    .blog-preview-intro {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .blog-preview-grid {
        gap: 25px;
        padding: 0 15px;
    }

    .blog-preview .blog-card-info {
        padding: 20px 15px;
    }

    .blog-preview .blog-card h3 {
        font-size: 1.3em;
    }

    .blog-preview-cta {
        margin-top: 40px;
    }

    .view-all-blog-posts {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .blog-preview {
        padding: 40px 0;
    }

    .blog-preview .section-title {
        font-size: 2em;
    }

    .blog-preview-grid {
        gap: 20px;
    }

    .blog-preview .blog-card h3 {
        font-size: 1.2em;
    }

    .blog-preview-cta {
        margin-top: 30px;
    }

    .view-all-blog-posts {
        padding: 10px 24px;
        font-size: 14px;
    }
}
/* --- End Enhanced Blog Preview Section Styles --- */

/* Main container for the blog post content - Enhanced with theme alignment */
.blog-post-container {
    max-width: 820px;
    margin: 60px auto; /* Increased top/bottom margin */
    padding: 50px 45px; /* Increased padding */
    background-color: #ffffff;
    /* Enhanced shadow using theme variables concept */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 20px 50px rgba(0, 0, 0, 0.06);
    border-radius: 15px; /* Slightly larger radius */
    border: 1px solid #e9ecef;
    position: relative; /* For potential pseudo-elements */
}

/* Decorative element for the container */
.blog-post-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px; /* Thickness of the accent bar */
    background: linear-gradient(to right, #212529, #6c757d); /* Accent bar using theme colors */
    border-radius: 15px 15px 0 0; /* Match container border radius */
}

/* Back Button Style - Aligned with main site theme */
.blog-post-container .back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif; /* Use Montserrat */
    font-weight: 600;
    padding: 12px 25px; /* Increased padding */
    border-radius: 30px; /* Pill shape, consistent with site */
    transition: all 0.3s ease;
    background-color: #212529; /* Theme black */
    border: 2px solid #212529; /* Solid border */
    font-size: 15px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(33, 37, 41, 0.2); /* Subtle shadow matching theme */
}

.blog-post-container .back-btn:hover {
    background-color: #ffffff;
    color: #212529;
    transform: translateY(-3px); /* Lift effect */
    box-shadow: 0 6px 15px rgba(33, 37, 41, 0.3); /* Enhanced shadow */
    border: 2px solid #212529;
}

.blog-post-container .back-btn i {
    margin-right: 10px;
    font-size: 16px;
}

/* Header section containing title and date - Enhanced */
.blog-post-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    /* Use a subtle double border effect */
    border-bottom: 1px solid #dee2e6;
    position: relative;
}

.blog-post-header::after {
    content: "";
    position: absolute;
    bottom: -3px; /* Position just below the main border */
    left: 50%;
    transform: translateX(-50%); /* Center it */
    width: 100px; /* Width of the accent line */
    height: 3px;
    background-color: #212529; /* Theme black */
    border-radius: 2px;
}


/* Blog Post Title - Enhanced */
.blog-post-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #212529;
    line-height: 1.2;
    letter-spacing: -0.5px; /* Slight negative spacing for impact */
}

/* Blog Post Date - Enhanced */
.blog-post-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: 500;
    color: #6c757d;
    letter-spacing: 1px;
    text-transform: uppercase; /* Make date uppercase for style */
}

/* Featured Image - Enhanced */
.blog-post-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Stronger shadow for image */
    border: 1px solid #e9ecef;
    /* Add a slight zoom-in effect on hover */
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.blog-post-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Main content area - Enhanced */
.blog-post-content {
    font-family: 'Open Sans', sans-serif; /* Use Open Sans for body */
    font-size: 1.15em;
    color: #343a40; /* Slightly darker for readability */
    line-height: 1.8; /* Improved line height */
}

/* Content Headings - Enhanced and Themed */
.blog-post-content h2,
.blog-post-content h3 {
    font-family: 'Montserrat', sans-serif;
    margin-top: 40px; /* Increased top margin */
    margin-bottom: 20px;
    color: #212529;
    line-height: 1.3;
}

.blog-post-content h2 {
    font-size: 1.9em;
    font-weight: 700;
    /* Add a subtle background highlight effect */
    /* background-color: #f8f9fa; */
    /* padding: 15px 20px; */
    /* border-left: 4px solid #212529;  */
    position: relative;
    padding-left: 20px;
}

/* Add a pseudo-element for a subtle accent line next to H2 */
.blog-post-content h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #212529;
    border-radius: 2px;
}

.blog-post-content h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: #495057; /* Slightly lighter than H2 */
}

/* Content Paragraphs - Enhanced */
.blog-post-content p {
    margin-bottom: 25px; /* Increased margin */
}

/* Content Lists - Enhanced */
.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 30px;
    padding-left: 30px;
}

.blog-post-content li {
    margin-bottom: 15px;
    padding-left: 10px;
    /* Add a subtle bullet point style */
    list-style-type: disc; /* Or square, circle */
}

/* For ordered lists */
.blog-post-content ol li {
    list-style-type: decimal;
}

/* Emphasized Text - Enhanced */
.blog-post-content strong {
    color: #212529;
    font-weight: 700; /* Full bold for strong */
    background-color: rgba(33, 37, 41, 0.05); /* Very subtle background highlight */
    padding: 0 3px; /* Tiny padding */
    border-radius: 3px; /* Slight rounding */
}

/* Links within the blog post content - Enhanced */
.blog-post-content a {
    color: #212529; /* Use theme black */
    text-decoration: none; /* Remove default underline */
    font-weight: 600;
    border-bottom: 1px dotted #6c757d; /* Dotted underline */
    transition: all 0.2s ease;
}

.blog-post-content a:hover {
    color: #000000; /* Darker on hover */
    border-bottom: 1px solid #000000; /* Solid underline on hover */
    text-decoration: none; /* Ensure no default underline */
}

/* Blockquote - Enhanced */
.blog-post-content blockquote {
    margin: 35px 0;
    padding: 25px 30px 25px 50px; /* More padding, space for icon */
    border-left: none; /* Remove default left border */
    background-color: #f8f9fa;
    font-style: italic;
    color: #495057;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    position: relative; /* For the quote icon */
    font-size: 1.1em;
    line-height: 1.7;
}

/* Add a quote icon */
.blog-post-content blockquote::before {
    content: """";
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: Georgia, serif;
    font-size: 4em;
    color: rgba(33, 37, 41, 0.2);
    line-height: 1;
}

/* Code Snippet */
.blog-post-content code {
    background-color: #e9ecef;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
    color: #212529;
}

/* Horizontal Rule */
.blog-post-content hr {
    border: none;
    height: 1px;
    background-color: #e9ecef;
    margin: 40px 0;
}

/* Footer section of the blog post - Enhanced */
.blog-post-footer {
    margin-top: 60px;
    padding-top: 30px;
    /* Use the double border effect again */
    border-top: 1px solid #dee2e6;
    position: relative;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    color: #6c757d;
}

.blog-post-footer::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #212529;
    border-radius: 2px;
}

/* Links in the footer - Enhanced */
.blog-post-footer a {
    color: #212529;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, border-bottom 0.2s ease;
    border-bottom: 1px dotted #6c757d;
}

.blog-post-footer a:hover {
    color: #000000;
    border-bottom: 1px solid #000000;
}

/* Responsive adjustments for Enhanced Individual Blog Post */
@media (max-width: 992px) {
    .blog-post-container {
        max-width: 90%;
        padding: 40px 30px;
        margin: 50px auto;
    }

    .blog-post-title {
        font-size: 2.3em;
    }

    .blog-post-content {
        font-size: 1.1em;
    }

    .blog-post-content h2 {
        font-size: 1.7em;
    }

    .blog-post-content h3 {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .blog-post-container {
        padding: 35px 25px;
        margin: 40px auto;
        border-radius: 12px;
    }

    .blog-post-container::before {
        border-radius: 12px 12px 0 0;
    }

    .blog-post-title {
        font-size: 2em;
    }

    .blog-post-date {
        font-size: 1em;
    }

    .blog-post-content {
        font-size: 1.05em;
    }

    .blog-post-content h2 {
        font-size: 1.5em;
        padding-left: 15px;
    }

    .blog-post-content h2::before {
        width: 3px;
    }

    .blog-post-content h3 {
        font-size: 1.3em;
    }

    .blog-post-container .back-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .blog-post-container .back-btn i {
        font-size: 14px;
    }

    .blog-post-content ul,
    .blog-post-content ol {
        padding-left: 25px;
    }

    .blog-post-content blockquote {
        padding: 20px 25px 20px 40px;
        margin: 30px 0;
    }

    .blog-post-content blockquote::before {
        font-size: 3em;
        top: 10px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .blog-post-container {
        padding: 30px 20px;
        margin: 30px auto;
        border-radius: 10px;
    }

    .blog-post-container::before {
        border-radius: 10px 10px 0 0;
    }

    .blog-post-title {
        font-size: 1.8em;
    }

    .blog-post-content {
        font-size: 1em;
    }

    .blog-post-content h2 {
        font-size: 1.4em;
    }

    .blog-post-content h3 {
        font-size: 1.2em;
    }

    .blog-post-header {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }

    .blog-post-footer {
        margin-top: 50px;
        padding-top: 25px;
    }

    .blog-post-image {
        margin: 30px 0;
        border-radius: 10px;
    }
}
/* --- End Improved Individual Blog Post Page Styles --- */