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

:root {
    --bg: #f7f4ef;
    --surface: #ffffff;
    --accent: #4a7c6f;
    --accent-dark: #2e5448;
    --text: #2c2c2c;
    --muted: #6b6b6b;
    --border: #ddd8ce;
    --max-w: 740px;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: var(--bg);
    color: var(--text);
    font-size: 17px;
    line-height: 1.75;
}

a { color: var(--accent-dark); }
a:hover { color: var(--accent); }

/* HEADER */
header.site-header {
    background: var(--surface);
    border-bottom: 2px solid var(--accent);
    padding: 22px 20px;
}
.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.site-title {
    font-size: 1.45rem;
    font-weight: normal;
    letter-spacing: 0.02em;
}
.site-title a { text-decoration: none; color: var(--accent-dark); }
.site-tagline {
    font-size: 0.82rem;
    color: var(--muted);
    font-style: italic;
}

nav.main-nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
nav.main-nav a {
    text-decoration: none;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s;
}
nav.main-nav a:hover,
nav.main-nav a.current { color: var(--accent-dark); }

/* MAIN */
main {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* HOMEPAGE LIST */
.intro-block {
    border-left: 3px solid var(--accent);
    padding-left: 18px;
    margin-bottom: 42px;
}
.intro-block p { margin-top: 12px; color: var(--muted); }

.articles-list h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 20px;
}
.article-card {
    border-top: 1px solid var(--border);
    padding: 20px 0;
}
.article-card:last-child { border-bottom: 1px solid var(--border); }
.article-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.article-card h3 a { text-decoration: none; }
.article-card h3 a:hover { text-decoration: underline; }
.article-card .meta {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 10px;
}
.article-card p { font-size: 0.95rem; color: var(--muted); }

/* ARTICLE PAGE */
article.single header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
article.single h1 {
    font-size: 1.7rem;
    line-height: 1.35;
    margin-bottom: 10px;
}
.article-meta { font-size: 0.82rem; color: var(--muted); }
.article-meta time { margin-right: 12px; }

article.single img {
    width: 100%;
    height: auto;
    display: block;
    margin: 24px 0;
    border-radius: 2px;
}

article.single h2 {
    font-size: 1.18rem;
    margin: 32px 0 12px;
    color: var(--accent-dark);
}

article.single p { margin-bottom: 18px; }

.back-link {
    display: inline-block;
    margin-top: 36px;
    font-size: 0.88rem;
    color: var(--muted);
    text-decoration: none;
}
.back-link:hover { color: var(--accent-dark); }

/* STATIC PAGES */
.page-content h1 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.page-content h2 {
    font-size: 1.1rem;
    margin: 28px 0 10px;
    color: var(--accent-dark);
}
.page-content p { margin-bottom: 16px; }

/* FOOTER */
footer.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 28px 20px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--muted);
}
footer.site-footer a { color: var(--muted); }
footer.site-footer a:hover { color: var(--accent-dark); }
footer.site-footer nav { margin-top: 8px; }
footer.site-footer nav a { margin: 0 10px; }

@media (max-width: 600px) {
    .header-inner { flex-direction: column; gap: 8px; }
    nav.main-nav ul { gap: 14px; }
    article.single h1 { font-size: 1.35rem; }
}

/* Profile: font-georgia, palette-cream-teal, layout-centered-narrow, header-minimal-text, footer-simple-centered */
