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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

main {
    max-width: 740px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */

.resume-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 0;
}

.resume-header h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.resume-header .title {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
}

.contact-info {
    font-size: 0.9rem;
    color: #6b7280;
}

.contact-info .separator {
    margin: 0 0.4rem;
}

/* Sections */

section {
    padding: 1.75rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

section:nth-of-type(even) {
    background-color: #f8f9fa;
}

section:last-of-type {
    border-bottom: none;
}

h2 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #374151;
    margin-bottom: 1rem;
}

/* Summary */

.summary p {
    color: #374151;
}

/* Experience */

.role {
    margin-bottom: 1.75rem;
}

.role:last-child {
    margin-bottom: 0;
}

.role-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.role-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
}

.role-meta {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 0.1rem;
}

.role-title {
    font-size: 0.95rem;
    color: #4b5563;
    margin-top: 0.15rem;
}

.dates {
    font-size: 0.85rem;
    color: #9ca3af;
    white-space: nowrap;
    padding-top: 0.15rem;
}

.role ul {
    list-style: disc;
    padding-left: 1.25rem;
}

.role li {
    margin-bottom: 0.35rem;
    color: #374151;
    font-size: 0.95rem;
}

/* Projects */

.projects ul {
    list-style: none;
    padding-left: 0;
}

.projects li {
    margin-bottom: 0.6rem;
}

.projects li a {
    font-weight: 600;
}

.project-desc {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.1rem;
}

/* Education */

.education p {
    color: #374151;
}

/* Skills */

.skills p {
    color: #374151;
}

/* Responsive */

@media (max-width: 600px) {
    main {
        padding: 1.25rem 1rem;
    }

    .resume-header h1 {
        font-size: 1.6rem;
    }

    .contact-info {
        font-size: 0.8rem;
    }

    .contact-info .separator {
        display: none;
    }

    .contact-info a,
    .contact-info span:not(.separator) {
        display: block;
        margin-bottom: 0.15rem;
    }

    section {
        padding: 1.25rem 1rem;
    }

    .role-header {
        flex-direction: column;
    }

    .dates {
        margin-top: 0.25rem;
    }
}
