body {
    font-family: "Courier New", monospace;
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    line-height: 1.6;
    color: #111;
    background: #fff;
}

header {
    border-bottom: 2px solid #000;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin: 0;
    font-weight: normal;
}

h2 {
    font-size: 1.8em;
    font-weight: normal;
    letter-spacing: 2px;
}

h3 {
    font-size: 1.5em;
    font-weight: normal;
    margin: 0;
    letter-spacing: 2px;
}

h4 {
    font-weight: normal;
    margin: 0;
    letter-spacing: 2px;
}

a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
}

a:hover {
    background: #f0f0f0;
}

.meta {
    color: #666;
    font-size: 0.9em;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.back-link {
    margin-top: 3em;
}

.social-icons a {
    border-bottom: none;
}

.link-icons a {
    border-bottom: none;
    font-size: 0.75em;
}

@media (max-width: 600px) {
    body {
        margin: 20px auto;
    }
}

.social-icons a {
    text-decoration: none !important;
    margin-left: 15px;
    color: inherit;
}

.social-icons i {
    font-size: 1.2em;
}

.link-icons a {
    text-decoration: none !important;
}

.writing-preview {
    margin-bottom: 2em;
    padding: 1em 1em 2em 1em;
    border: 1px solid #eee;
    border-radius: 5px;
}

.writing-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5em;
}

.writings-intro {
    padding-bottom: 2rem;
}

.writing-header h2 {
    margin: 0.5em 0;
    font-size: 1.2em;
}

.writing-preview-title {
    margin: 0.5em 0;
    font-size: 1.75em;
}


.writing-date {
    color: #666;
    font-size: 0.9em;
}

.writing-content {
    margin-top: 1em;
    margin-bottom: 1em;
}

.writing-content.collapsed {
    max-height: 100px;
    overflow: hidden;
    position: relative;
}

.writing-content.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, white);
}

.expand-button {
    background: #f0f0f0;
    border: none;
    padding: 0.5em 1em;
    margin-top: 1em;
    cursor: pointer;
    border-radius: 3px;
}

.expand-button:hover {
    background: #e0e0e0;
}

.writing-content img {
    max-width: 100%;
    height: auto;
    margin: 1em 0;
}

.post-list {
    margin-top: 2em;
}

.post-list h2 {
    margin-bottom: 1em;
}

.post-list .writing-preview {
    margin-bottom: 2em;
    padding: 1em;
    border: 1px solid #eee;
    border-radius: 5px;
}

.post-list .writing-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5em;
}

.post-list h3 {
    margin: 0;
    font-size: 1.2em;
}

.post-list .writing-date {
    color: #666;
    font-size: 0.9em;
}

.post-list p {
    margin: 0;
    color: #444;
}

.post-list .writing-preview p {
    margin: 1em 0;
    line-height: 1.8;
    color: #444;
}

.post-list .writing-header {
    margin-bottom: 1.5em;
} 

.size-tag {
    font-size: 0.8em;
    padding: 2px 8px;
    border-radius: 12px;
    background-color: #f0f0f0;
    margin-left: 10px;
}

.meta-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Construction banner styles */
.construction-banner {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.construction-banner p {
    margin: 0;
    color: #333;
    font-size: 0.95em;
    line-height: 1.5;
}