/*
F1nD_4ll_0f_tH3_
*/

:root {
    --bg: #f7f6f2;
    --surface: #ffffff;
    --text: #222;
    --muted: #6b7280;
    --accent: #1f7a5c;
    --line: #e6e7eb;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

header {
    background: linear-gradient(135deg, #24534a 0%, #173d35 100%);
    color: #fff;
    padding: 2.5rem 0;
    border-bottom: 4px solid #0f2a25;
}

.site-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: 0.02em;
}

.site-tagline {
    opacity: 0.9;
    margin-top: 0.4rem;
}

nav {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

nav a {
    color: #eaf8f3;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.18);
}

main {
    padding: 2rem 0 3rem;
}

.grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.post {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.4rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(20, 20, 20, 0.05);
}

.post h2 {
    margin-bottom: 0.35rem;
    font-size: 1.35rem;
}

.meta {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.7rem;
}

.read-more {
    margin-top: 0.9rem;
    display: inline-block;
    text-decoration: none;
    color: var(--accent);
    font-weight: 700;
}

aside {
    display: grid;
    gap: 1rem;
}

.widget {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem 1.1rem;
}

.widget h3 {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: #163f35;
}

.widget ul {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.widget a {
    color: #1c4f43;
    text-decoration: none;
}

.widget a:hover {
    text-decoration: underline;
}

footer {
    border-top: 1px solid var(--line);
    color: var(--muted);
    text-align: center;
    padding: 1.2rem 0 1.8rem;
    font-size: 0.95rem;
}

@media (max-width: 860px) {
    .grid {
        grid-template-columns: 1fr;
    }

    nav {
        gap: 0.5rem;
    }
}
