/* --- General & Body Styles --- */
body {
    font-family: 'Lora', serif;
    line-height: 1.7;
    color: #333;
    background-color: #fdfdfd;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- Header & Footer --- */
header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
}

header h1 a {
    color: #333;
}

header .subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 5px;
}

footer {
    background-color: #343a40;
    color: #f8f9fa;
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
    font-size: 0.9rem;
}

/* --- Homepage Article Previews (`index.html`) --- */
.post-preview {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.post-preview:last-of-type {
    border-bottom: none;
}

.post-preview h3 a {
    color: #333;
}

.post-meta {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #868e96;
    margin-top: -10px;
}

.read-more {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
}

/* --- Full Article Page (`article.html`) --- */
.post-full .post-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.post-full .post-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    .post-full .post-title {
        font-size: 2.2rem;
    }
}
