/*
Theme Name:   One Column Classic Child
Theme URI:    https://example.com
Description:  A custom child theme for the One Column Classic WordPress theme.
Author:       Your Name
Author URI:   https://example.com/
Template:     one-column-classic
Version:      1.0.0
Text Domain:  one-column-classic-child
*/

/* ==========================================================================
   Your Custom CSS Goes Below This Line
   ========================================================================== */

/* -----------------------------
   Reset / base
------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.6;
    color: black;
    background: red;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #1a4d8f;
    text-decoration: none;
}

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

/* -----------------------------
   Layout — single column, no sidebar
------------------------------ */
.site-wrap {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    padding: 40px 0 20px;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}

.site-title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

.site-title a {
    color: inherit;
}

.site-description {
    margin: 8px 0 0;
    font-size: 15px;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.main-navigation {
    margin-top: 16px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
}

.main-navigation ul ul {
    display: none; /* simple theme: no dropdown styling by default */
}

.site-content {
    padding: 40px 0;
}

article.post,
article.page {
    margin-bottom: 60px;
}

.entry-title {
    font-size: 28px;
    margin: 0 0 8px;
}

.entry-meta {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}

.entry-meta a {
    color: #888;
}

.entry-content p {
    margin: 0 0 1.4em;
}

.entry-content blockquote {
    margin: 1.5em 0;
    padding-left: 1em;
    border-left: 3px solid #ddd;
    color: #555;
    font-style: italic;
}

.entry-content pre {
    background: #f4f4f4;
    padding: 16px;
    overflow-x: auto;
    font-size: 14px;
}

.post-thumbnail {
    margin: 0 0 24px;
}

.pagination {
    display: flex;
    justify-content: space-between;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
    margin-top: 40px;
}

.site-footer {
    border-top: 1px solid #e5e5e5;
    padding: 30px 0 50px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13px;
    color: #888;
}

.comments-area {
    margin-top: 50px;
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list .comment-body {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
}

.search-form input[type="search"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
}

.search-form input[type="submit"] {
    margin-top: 8px;
    padding: 8px 16px;
    cursor: pointer;
}

/* -----------------------------
   Small screens
------------------------------ */
@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    .entry-title {
        font-size: 24px;
    }
}
