/* MultiMerch Static Site - Matching original brand */

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 3px solid #2997ab;
    padding: 15px 0;
}

.site-header .container {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Main content */
main {
    padding: 40px 0;
    min-height: 60vh;
}

/* Article styles */
.post h1 {
    font-size: 2em;
    color: #222;
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 700;
}

.post h2 {
    font-size: 1.5em;
    color: #222;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.post h3 {
    font-size: 1.25em;
    color: #333;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 600;
}

.post h4 {
    font-size: 1.1em;
    color: #444;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.post p {
    margin-bottom: 18px;
}

.post a {
    color: #2997ab;
    text-decoration: none;
}

.post a:hover {
    color: #55adbd;
    text-decoration: underline;
}

.post img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 4px;
}

.post ul, .post ol {
    margin: 15px 0 20px 30px;
}

.post li {
    margin-bottom: 8px;
}

.post blockquote {
    border-left: 4px solid #2997ab;
    padding: 15px 20px;
    margin: 20px 0;
    background: #f8f8f8;
    color: #555;
    font-style: italic;
}

.post table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.post th, .post td {
    padding: 10px 12px;
    border: 1px solid #e1e1e1;
    text-align: left;
}

.post th {
    background: #f8f8f8;
    font-weight: 600;
    color: #222;
}

.post strong {
    font-weight: 600;
}

.post hr {
    border: none;
    border-top: 1px solid #e1e1e1;
    margin: 30px 0;
}

/* Homepage */
.homepage h1 {
    font-size: 2em;
    color: #222;
    margin-bottom: 10px;
}

.homepage .intro {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.article-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-list li {
    padding: 20px 0;
    border-bottom: 1px solid #e1e1e1;
}

.article-list li:last-child {
    border-bottom: none;
}

.article-list a {
    color: #2997ab;
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: none;
}

.article-list a:hover {
    color: #55adbd;
    text-decoration: underline;
}

.article-list p {
    color: #666;
    margin-top: 6px;
    font-size: 0.95em;
    line-height: 1.5;
}

/* 404 page */
.not-found {
    text-align: center;
    padding: 80px 0;
}

.not-found h1 {
    font-size: 2.5em;
    color: #222;
    margin-bottom: 15px;
}

.not-found p {
    color: #666;
    font-size: 1.1em;
}

.not-found a {
    color: #2997ab;
}

.not-found a:hover {
    color: #55adbd;
}

/* Footer */
.site-footer {
    border-top: 1px solid #e1e1e1;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    color: #aaa;
    font-size: 0.85em;
}

/* Responsive */
@media (max-width: 600px) {
    .post h1 {
        font-size: 1.5em;
    }

    .post h2 {
        font-size: 1.25em;
    }

    .homepage h1 {
        font-size: 1.5em;
    }

    .container {
        padding: 0 15px;
    }

    main {
        padding: 25px 0;
    }
}
