/*
Theme Name: Verdict
Theme URI: https://example.com/verdict
Author: Your Name
Author URI: https://example.com
Description: Минималистичная тема для блога и статей
Version: 1.0
License: GPL v2 or later
Text Domain: verdict
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.6;
    padding: 2rem;
}

.container {
    max-width: 720px;
    margin: 0 auto;
}

/* Header */
.site-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 1.5rem;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.site-title a {
    text-decoration: none;
    color: #000;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
}

.main-nav a:hover {
    color: #000;
    text-decoration: underline;
}

/* Posts */
.post {
    margin-bottom: 3rem;
}

.post-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.post-title a {
    text-decoration: none;
    color: #000;
}

.post-meta {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.post-excerpt {
    margin-top: 0.5rem;
}

/* Single post & page */
.entry-content {
    margin-top: 1.5rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1.2rem;
}

/* Footer */
.site-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eaeaea;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}