.resume-wrapper {
    min-height: 100vh;
    background: var(--gray-100);
}

.resume-preview {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.resume-header {
    background: linear-gradient(135deg, var(--sunder-green) 0%, var(--sunder-green-dark) 100%);
    color: #fff;
    padding: 2.5rem;
    text-align: center;
}

.resume-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.resume-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.resume-contact {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.825rem;
    opacity: 0.85;
}

.resume-contact span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.resume-section {
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.resume-section:last-child {
    border-bottom: none;
}

.resume-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--sunder-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--sunder-green-50);
}

.resume-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.resume-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.resume-skill-tag {
    padding: 0.375rem 0.75rem;
    background: var(--sunder-green-50);
    color: var(--sunder-green);
    border: 1px solid var(--sunder-green-200);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.resume-experience-item,
.resume-education-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--gray-200);
}

.resume-experience-item:last-child,
.resume-education-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.resume-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.resume-item-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-900);
}

.resume-item-period {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
}

.resume-item-subtitle {
    font-size: 0.825rem;
    color: var(--sunder-green);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.resume-item-desc {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 576px) {
    .resume-header,
    .resume-section {
        padding: 1.5rem 1.25rem;
    }
    .resume-header h1 {
        font-size: 1.5rem;
    }
    .resume-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
}