* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
        Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

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

.site-header {
    margin-bottom: 30px;
    background: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-title-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.site-logo {
    height: 28px;
    width: 28px;
    margin-top: 2px;
}

.site-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1;
}

.site-title-wrapper:hover .site-title {
    color: #007bff;
}

.breadcrumbs {
    margin-bottom: 20px;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 8px;
    color: #999;
}

.content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.2;
}

.featured-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 8px;
    margin-bottom: 32px;
}

h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.author-byline {
    font-size: 14px;
    color: #666;
    margin-top: -12px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.author-name {
    font-weight: 600;
}

p {
    margin-bottom: 16px;
}

ul,
ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

strong {
    font-weight: 600;
    color: #1a1a1a;
}

code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: "Monaco", "Courier New", monospace;
    font-size: 0.9em;
}

pre {
    background: #f4f4f4;
    padding: 16px;
    border-radius: 6px;
    overflow-x: auto;
    margin-bottom: 16px;
}

pre code {
    background: none;
    padding: 0;
}

.site-footer {
    margin-top: 40px;
    padding: 20px 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.copyright {
    margin: 0;
}

.footer-links a {
    color: #007bff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Mobile styles */
@media (max-width: 768px) {
    body {
        background: white;
    }

    .container {
        padding: 0;
    }

    .site-header {
        margin-bottom: 0;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #e5e5e5;
    }

    .breadcrumbs {
        margin-bottom: 0;
        border-radius: 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .content {
        padding: 20px 16px;
        border-radius: 0;
        box-shadow: none;
    }

    .site-footer {
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid #e5e5e5;
    }

    .footer-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }
}
