/* --- Import Lora Font --- */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

/* --- Apply Font Globally --- */
body,
h1, h2, h3, h4, h5, h6,
.post-title,
.post-description {
    font-family: 'Lora', serif;
}

/* --- Intro styles --- */
.intro h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- "Writing" header --- */
.writing-header {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

/* --- Post list styling --- */
.post-list {
    list-style: none;
    padding: 0;
    border-bottom: 1px solid #eee;
}


.post-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.post-title {
    font-size: 1.0rem;
    text-decoration: underline;
}

.post-description {
    margin-top: 0.2rem;
    font-size: 0.875rem;
    font-style: italic;
    padding-top: 0rem;
}

.post-date {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.9rem;
}

/* --- "View all" link --- */
.view-all-wrapper {
    margin-top: 2rem;
}

.view-all-link {
    font-size: 1rem;
    text-decoration: none;
}

/* --- Year Headers --- */
.year-header {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 500;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

/* --- Post List Item Styling --- */
.post-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: none;
    gap: 2rem;
}

.post-item:hover .post-title,
.post-item:hover .post-description,
.post-item:hover .post-date {
    color: crimson;
}

.post-title-link {
    text-decoration: none;
}

.post-title {
    font-weight: 500;
}

/* --- Archives Collapsible Section --- */
.archives-section {
    margin-top: 3rem;
    padding-top: 1rem;
}

.archives-section summary {
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
}

.archive-title {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 500;
    margin-left: 0.5rem;
}