/* Additional styles for resume page */

.resume {
    max-width: 800px !important;
}

.contact {
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.contact a {
    color: #666;
}

section {
    margin-bottom: 3rem;
}

.job,
.education,
.project {
    margin-bottom: 2rem;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.25rem;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.period {
    color: #666;
    font-size: 0.9rem;
    white-space: nowrap;
}

.company {
    color: #666;
    font-style: italic;
    margin-bottom: 0.75rem;
}

section ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

section li {
    margin-bottom: 0.5rem;
}

.skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.skill-category h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.skill-category p {
    color: #666;
    text-align: left;
    margin: 0;
}

@media (max-width: 768px) {
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .period {
        margin-top: 0.25rem;
        font-size: 0.85rem;
    }

    .skills {
        grid-template-columns: 1fr;
    }
}
