* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Geist Mono', 'SF Mono', 'Menlo', 'Monaco', monospace;
    line-height: 1.6;
    background: #ffffff;
    min-height: 100vh;
    color: #000000;
    font-size: 13px;
    font-weight: 400;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem 2rem;
    min-height: 100vh;
}

.top-nav {
    display: flex;
    justify-content: flex-end;
    height: 20px;
    align-items: flex-start;
}

.nav-link {
    color: #000000;
    text-decoration: underline;
    font-family: 'Geist Mono', 'SF Mono', 'Menlo', 'Monaco', monospace;
    font-size: 13px;
    font-weight: 400;
}

.nav-link:hover {
    color: #000000;
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    margin-top: 4rem;
}

.site-nav .brand,
.site-nav .site-label {
    font-family: 'Geist Mono', 'SF Mono', 'Menlo', 'Monaco', monospace;
    font-size: 13px;
    color: #000000;
}

.site-nav .brand {
    font-weight: 400;
}

.site-nav .site-label {
    font-weight: 400;
}

.header {
    text-align: left;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.name {
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.5rem;
    font-family: 'Geist Mono', 'SF Mono', 'Menlo', 'Monaco', monospace;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 13px;
    color: #000000;
    font-weight: 400;
    font-family: 'Geist Mono', 'SF Mono', 'Menlo', 'Monaco', monospace;
}

.main-content {
    background: #ffffff;
}

.accordion-section {
}

.accordion-header {
    width: 100%;
    padding: 1rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accordion-header h2 {
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    font-family: 'Geist Mono', 'SF Mono', 'Menlo', 'Monaco', monospace;
}

.accordion-icon {
    font-size: 0.8rem;
    color: #000000;
    width: 13px;
    display: inline-block;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out, padding 0.25s ease-out;
}

.accordion-content.expanded {
    max-height: 400px;
    padding-bottom: 1.5rem;
}

.accordion-content p {
    font-size: 13px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1rem;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.experience-list {
    list-style: none;
    padding: 0;
}

.experience-list li {
    font-size: 13px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1rem;
    padding-left: 1.2rem;
    position: relative;
}

.experience-list li:last-child {
    margin-bottom: 0;
}

.experience-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333333;
    font-weight: normal;
}

.experience-list li strong {
    color: #000000;
    font-weight: 400;
}

.company-tag {
    color: #000000;
    font-weight: 400;
    font-family: 'Geist Mono', 'SF Mono', 'Menlo', 'Monaco', monospace;
    text-decoration: underline;
}

.company-tag:hover {
    color: #555555;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-link {
    color: #000000;
    text-decoration: underline;
    font-weight: 400;
}

/* Writing list styles */
.writing-list {
    margin-top: 2rem;
}

.writing-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.writing-title,
.writing-date {
    font-family: 'Geist Mono', 'SF Mono', 'Menlo', 'Monaco', monospace;
    font-size: 13px;
    color: #000000;
    font-weight: 400;
}

/* Writing link behavior: no underline by default; underline on hover */
.writing-link {
    color: #000000;
    text-decoration: none;
    font-family: 'Geist Mono', 'SF Mono', 'Menlo', 'Monaco', monospace;
    font-size: 13px;
    font-weight: 400;
}

.writing-link:hover {
    text-decoration: underline;
}

