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

body {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10pt;
    color: #000;
    background: #f6f6ef;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.site-header {
    background: #3c763d;
    padding: 4px 8px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header h1 {
    font-size: 10pt;
    font-weight: bold;
    margin: 0;
}

.site-header h1 a {
    color: #fff;
    text-decoration: none;
}

.primary-nav,
.secondary-nav {
    display: inline-block;
}

.primary-nav ul,
.secondary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
}

.primary-nav li,
.secondary-nav li {
    display: inline-block;
}

.primary-nav a,
.secondary-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 10pt;
    padding: 2px 4px;
}

.primary-nav a:hover,
.secondary-nav a:hover {
    text-decoration: underline;
}

main {
    padding: 8px;
}

.post-list {
    background: transparent;
}

.post-item {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.post-item:last-child {
    border-bottom: none;
}

.post-item h2 {
    font-size: 10pt;
    font-weight: normal;
    margin: 0 0 4px 0;
}

.post-item h2 a {
    color: #000;
    text-decoration: none;
}

.post-item h2 a:visited {
    color: #1a1a1a;
}

.post-item h2 a:hover {
    text-decoration: underline;
}

.post-meta {
    font-size: 8pt;
    color: #828282;
}

.post-meta a {
    color: #828282;
    text-decoration: none;
}

.post-meta a:hover {
    text-decoration: underline;
}

.post-date {
    font-size: 8pt;
    color: #828282;
    font-weight: normal;
}

.post-header {
    margin-bottom: 16px;
}

.post-header h1 {
    font-size: 14pt;
    font-weight: bold;
    margin-bottom: 8px;
}

.post-feature-image {
    margin: 0 0 16px 0;
}

.post-feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    line-height: 1.5;
}

.post-content p {
    margin-bottom: 12px;
}

.post-content a {
    color: #3c763d;
    text-decoration: none;
}

.post-content a:hover {
    text-decoration: underline;
}

.post-content pre {
    background: #f6f6ef;
    padding: 8px;
    overflow-x: auto;
    margin-bottom: 12px;
}

.post-content code {
    font-family: monospace;
    font-size: 9pt;
}

.post-content h2 {
    font-size: 12pt;
    font-weight: bold;
    margin: 20px 0 12px 0;
}

.post-content h3 {
    font-size: 11pt;
    font-weight: bold;
    margin: 16px 0 8px 0;
}

.post-content ul,
.post-content ol {
    margin-left: 24px;
    margin-bottom: 12px;
}

.post-content li {
    margin-bottom: 4px;
}

.post-content blockquote {
    margin-left: 24px;
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 2px solid #828282;
    color: #333;
}

.post-content figure {
    display: table;
    margin: 16px auto;
    max-width: 100%;
}

.post-content img {
    display: block;
    margin: 16px auto;
    max-width: 100%;
    height: auto;
}

.post-content figure img {
    margin: 0 auto;
}

.post-content figcaption {
    text-align: center;
    font-size: 9pt;
    color: #828282;
    margin-top: 8px;
}

.pagination {
    margin-top: 16px;
    padding: 8px 0;
}

.pagination a {
    color: #3c763d;
    text-decoration: none;
    font-size: 10pt;
}

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

/* Ghost content card width classes */
.kg-width-wide {
    position: relative;
    width: 85vw;
    min-width: 100%;
    margin: auto calc(50% - 50vw);
    transform: translateX(calc(50vw - 50%));
}

.kg-width-wide img {
    width: 100%;
}

.kg-width-full {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.kg-width-full img {
    width: 100%;
}

/* Email signup footer */
.site-footer {
    margin-top: 32px;
    padding: 12px 8px;
    border-top: 2px solid #3c763d;
}

.signup-box {
    font-size: 10pt;
    color: #000;
}

.signup-text {
    margin-right: 4px;
}

.signup-button {
    background: #3c763d;
    color: #fff;
    border: none;
    padding: 4px 12px;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10pt;
    cursor: pointer;
    text-decoration: none;
}

.signup-button:hover {
    background: #2d5a2e;
}

.signup-separator {
    margin: 0 8px;
    color: #828282;
}

.rss-link {
    color: #3c763d;
    text-decoration: none;
}

.rss-link:hover {
    text-decoration: underline;
}
