/*
Theme Name: column
Theme URI: https://example.com/column
Author: Gemini Assistant
Author URI: https://example.com
Description: A minimalist, dark-themed custom theme for essays and dystopian literature. Inspired by the visual language of order and shadow.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: column
*/

/* Reset & Base Settings */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: #a1a1a1;
    font-family: 'Urbanist', 'Noto Serif JP', serif;
    font-size: 14px; /* Small, delicate font size as requested */
    line-height: 1.8;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #f5f5f5;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

/* Layout Strategy: Minimalist Single Column for Mobile and Desktop Optimization */
.site-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 24px;
}

header.site-header {
    margin-bottom: 100px;
}

header.site-header h1.site-title {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin: 0;
    text-align: left;
}

header.site-header h1.site-title a {
    color: #ffffff;
}

/* Main Content Area */
main.site-main {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

article.post {
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 60px;
}

article.post:last-child {
    border-bottom: none;
}

.post-header {
    margin-bottom: 24px;
}

/* Article title - adjusted to be smaller and elegant */
.post-title {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0 0 12px 0;
    color: #ffffff;
    line-height: 1.4;
}

.post-meta {
    font-size: 11px;
    color: #555555;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.post-content {
    font-size: 13.5px;
    color: #999999;
    text-align: justify;
}

.post-content p {
    margin: 0 0 24px 0;
}

.post-content p:last-child {
    margin-bottom: 0;
}

/* Like button - quiet, monochrome, in keeping with the dark theme */
.post-actions {
    margin-top: 48px;
    text-align: right;
}

.like-button {
    background: none;
    border: 1px solid #1a1a1a;
    border-radius: 999px;
    color: #555555;
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 8px 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.like-button:hover {
    color: #999999;
    border-color: #333333;
}

.like-button.is-liked {
    color: #c0c0c0;
    border-color: #333333;
    cursor: default;
}

.like-button .like-icon {
    font-size: 13px;
    line-height: 1;
}

/* Footer Section */
footer.site-footer {
    margin-top: 120px;
    border-top: 1px solid #1a1a1a;
    padding-top: 40px;
    text-align: center;
    font-size: 11px;
    color: #444444;
    letter-spacing: 0.1em;
}
