/* Blog header */
.notes-title {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.notes-description {
    color: #666;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8e8e8;
}

/* Blog post listing */
.blog-posts {
    margin-bottom: 1rem;
}

.blog-post {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #e8e8e8;
}

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

.post-title {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.post-title a {
    color: #333;
    text-decoration: none;
}

.post-title a:hover {
    color: #9c27b0;
    text-decoration: underline;
}

.post-meta {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.4rem;
}

.post-excerpt {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.read-more {
    color: #9c27b0;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    color: #7b1fa2;
    text-decoration: underline;
}

/*Post page header separator*/
header.header-container {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8e8e8;
}

/* Blog content (individual post pages) */
.blog-content {
    margin-bottom: 3rem;
    line-height: 1.7;
}

.blog-content h1 {
    margin-bottom: 0.75rem;
    font-size: 2rem;
    letter-spacing: -0.02em;
}

.blog-content .post-meta:first-of-type {
    font-weight: 600;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Post byline */
.post-byline {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8e8e8;
}

.post-author {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #333;
}

.post-date {
    display: block;
    font-size: 0.85rem;
    color: #999;
}

.blog-content p {
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.blog-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.blog-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.blog-content a {
    color: #9c27b0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-content a:hover {
    color: #7b1fa2;
    text-decoration: underline;
}

/* Code blocks */
.blog-content code {
    background-color: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: monospace;
}

.blog-content pre {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.blog-content pre code {
    background-color: transparent;
    padding: 0;
}

/* Lists */
.blog-content ul,
.blog-content ol {
    margin: 1rem 0 1.75rem 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

/* Images */
.blog-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 5px;
}

/* Blockquotes */
.blog-content blockquote {
    border-left: 4px solid #9c27b0;
    padding-left: 1rem;
    margin-left: 0;
    margin-bottom: 1.75rem;
    font-style: italic;
    color: #555;
}

/* Discuss link */
.discuss-link {
    margin-bottom: 1.5rem;
}

.discuss-link a {
    color: #9c27b0;
    text-decoration: none;
    font-weight: 600;
}

.discuss-link a:hover {
    color: #7b1fa2;
    text-decoration: underline;
}

/* Back link */
.back-link {
    margin-bottom: 1rem;
}

.back-link a {
    color: #9c27b0;
    text-decoration: none;
}

.back-link a:hover {
    color: #7b1fa2;
    text-decoration: underline;
}

/* Post header link */
.header-left a {
    color: #333;
    text-decoration: none;
}

.header-left a:hover {
    color: #7b1fa2;
    text-decoration: underline;
}