body {
    background-image: url('../images/background.jpg');
    /* Adjusted path for CSS file location */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-wrapper {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-banner-background {
    height: 50px;
    width: 100%;
}

.page-container {
    padding: 25px 95px;
}

@media (max-width: 760px) {
    .page-container {
        padding: 25px !important;
    }
}

/* .page-container styles are now handled by detail-page.css for consistency */

.article-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.article-title {
    font-size: 28px;
    font-weight: 600;
    color: #1c1c1c;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    font-size: 13px;
    color: #757575;
    margin-bottom: 15px;
}

.article-meta .meta-category,
.article-meta .meta-editor,
.article-meta .meta-date {
    margin-right: 12px;
}

.article-meta .meta-category a {
    color: #007bff;
    text-decoration: none;
}

.article-meta .meta-category a:hover {
    text-decoration: underline;
}

.article-lead {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 3px solid #007bff;
}

.article-main-image {
    margin-bottom: 25px;
}

.article-main-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.article-content p {
    margin-bottom: 1.2em;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 4px;
    display: block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    margin-top: 1.8em;
    margin-bottom: 0.8em;
    font-weight: 600;
    line-height: 1.4;
}

.article-content h2 {
    font-size: 1.8em;
}

.article-content h3 {
    font-size: 1.5em;
}

/* Comment form actions are now handled by detail-page.css */

footer {
    background-color: #111;
    color: #888;
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    width: 100%;
    margin-top: auto;
}

footer p {
    margin: 0;
}