/* Education list: nested, smaller headings and subtle indentation */
.education-list {
    list-style: none;
    margin: 0.4rem 0 0;
    padding: 0;
}
.education-list .education-item {
    margin: 0.6rem 0;
    padding-left: 0.9rem;
    border-left: var(--line-thickness) solid rgba(0,0,0,0.06);
}
.education-item .edu-degree {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    color: var(--general-text);
}
.education-item .edu-degree {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    color: var(--general-text);
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}
.education-item .edu-degree .edu-dates {
    font-size: 0.9rem;
    color: var(--general-text);
    font-weight: 400;
    margin-left: 0.4rem;
    display: inline-block;
}
.education-item .edu-meta {
    display: block;
    font-size: 0.95rem;
    color: var(--general-text);
    margin-top: 0.18rem;
}
.edu-thesis {
    margin: 0.35rem 0 0;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text);
}
.edu-grade {
    margin: 0.2rem 0 0;
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 600;
}

/* ///////////////
// EXPERIENCE // 
/////////////// */

/* Experience list mirrors Education styling for consistency */
.experience-list {
    list-style: none;
    margin: 0.4rem 0 0;
    padding: 0;
}
.experience-list .experience-item {
    margin: 0.6rem 0;
    padding-left: 0.9rem;
    border-left: var(--line-thickness) solid rgba(0,0,0,0.06);
}
.experience-item .exp-title {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    color: var(--general-text);
}
.exp-meta { margin-top: 0.18rem; }
.exp-employer, .exp-location {
    display: inline-block;
    color: var(--general-text);
    font-weight: 400;
    font-size: 0.98rem;
    vertical-align: middle;
}
.exp-employer { margin-right: 0.6rem; }
.exp-dates {
    display: inline-block;
    margin-left: 0.6rem;
    margin-top: 0;
    font-size: 0.9rem;
    color: var(--general-text);
    font-weight: 400;
}

@media (max-width: 700px) {
    .exp-dates {
        display: block;
        margin-top: 0.18rem;
        margin-left: 0;
    }
    .exp-employer, .exp-location { display: block; margin-top: 0.12rem; }
}
.exp-bullets { margin: 0.35rem 0 0; padding-left: 1.1rem; }
.exp-bullets li { margin-bottom: 0.3rem; font-size: 0.95rem; color: var(--text); }

/* Teaching section uses similar styles to Experience */
.teaching-list {
    list-style: none;
    margin: 0.4rem 0 0;
    padding: 0;
}
.teaching-list .teaching-item {
    margin: 0.6rem 0;
    padding-left: 0.9rem;
    border-left: var(--line-thickness) solid rgba(0,0,0,0.06);
}
.teach-title {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    color: var(--general-text);
}
.teach-meta { margin-top: 0.18rem; }
.teach-employer, .teach-location {
    display: inline-block;
    color: var(--general-text);
    font-weight: 400;
    font-size: 0.98rem;
    vertical-align: middle;
}
.teach-employer { margin-right: 0.6rem; }
.teach-dates {
    display: inline-block;
    margin-left: 0.6rem;
    margin-top: 0;
    font-size: 0.9rem;
    color: var(--general-text);
    font-weight: 400;
}

@media (max-width: 700px) {
    .teach-employer, .teach-location { display: block; margin-top: 0.12rem; }
}
.teach-bullets { margin: 0.35rem 0 0; padding-left: 1.1rem; }
.teach-bullets li { margin-bottom: 0.3rem; font-size: 0.95rem; color: var(--text); }
