/* Основные CSS-стили для темы */

/* ==== Base Styles ==== */

html {
    box-sizing: border-box;
}
*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

/* ==== Header ==== */

.site-header {
    background: #f9f9f9;
    padding: 2rem 0;
    border-bottom: 1px solid #eaeaea;
    text-align: center;
}

.site-title {
    margin: 0;
    font-size: 2rem;
}

.site-description {
    margin: 0.5rem 0 0;
    color: #666;
}

.site-nav {
    margin-top: 1rem;
}

.site-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.site-nav a {
    color: #333;
    font-weight: 500;
}

/* ==== Main ==== */

.post-title {
    margin-bottom: 0.5rem;
}

.post-meta {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 1rem;
}

.pagination {
    margin: 2rem 0;
    text-align: center;
}

.blog-title {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

/* ==== Footer ==== */

.site-footer {
    background: #f9f9f9;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #eaeaea;
    font-size: 0.875rem;
    color: #666;
}

/* ==== Share ==== */
.form-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    font-size: 18px;
    color: #777;
}

/* ==== Responsive ==== */

@media (min-width: 600px) {
    .site-title {
        font-size: 2.5rem;
    }
    .blog-title {
        font-size: 2rem;
    }
}
