/* CV Page Styles */

/* Body background */
body {
    background: #ffffff;
}

/* Main content with proper spacing */
.main-content {
    margin-left: 280px;
    margin-right: 280px;
    padding: 88px 40px;
    min-height: 100vh;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .main-content {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
        padding: 80px 20px 40px;
    }
}

/* Medium-style article container */
.medium-article {
    max-width: 680px;
    margin: 0 auto;
}

/* Article Header */
.article-header {
    margin-bottom: 48px;
}

.article-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #1A1A1A;
    margin-bottom: 32px;
    text-align: left;
    letter-spacing: -0.02em;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
}

.publish-date {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #6B7280;
}

/* Article Content */
.article-content {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    text-align: left;
}

.article-content p,
.article-content li {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    text-align: left;
    line-height: 1.6;
    font-style: normal !important;
    color: #374151;
    margin-bottom: 16px;
}

.article-section {
    margin-bottom: 32px;
}

.article-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #1A1A1A;
    margin-top: 56px;
    margin-bottom: 32px;
    text-align: left;
    letter-spacing: -0.01em;
}

.article-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #1A1A1A;
    margin-top: 0;
    margin-bottom: 12px;
    text-align: left;
    letter-spacing: -0.005em;
}

.article-content p {
    margin-bottom: 16px;
}

/* Job item styling */
.job-item {
    margin-bottom: 64px;
}

.lead-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 32px;
    text-align: left;
    font-weight: 500;
}

.article-content a {
    color: #2563EB;
    text-decoration: none;
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.2s ease;
    font-weight: 500;
}

.article-content a:hover {
    border-bottom-color: #2563EB;
}

/* Strong elements styling */
.article-content strong {
    font-weight: 600;
    color: #1F2937;
}

/* Job item specific styling */
.job-item p:first-of-type {
    margin-bottom: 20px;
    font-weight: 500;
    color: #1F2937;
}

.job-item p:not(:first-of-type) {
    margin-bottom: 12px;
    color: #4B5563;
}

/* Dividers */
.divider-1, .divider-2, .divider-3, .divider-4, .divider-5, .divider-6, .divider-7, .divider-8 {
    height: 1px;
    background: #E5E7EB;
    margin: 40px 0;
    border: none;
}

/* Mobile responsiveness for article */
@media (max-width: 768px) {
    .article-title {
        font-size: 28px;
        margin-bottom: 24px;
        line-height: 1.3;
    }
    
    .article-content h2 {
        font-size: 24px;
        margin-top: 40px;
        margin-bottom: 24px;
    }
    
    .article-content h3 {
        font-size: 18px;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .article-content {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .article-content p,
    .article-content li {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    
    .lead-paragraph {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.5;
    }
    
    .job-item {
        margin-bottom: 48px;
    }
    
    .job-item p:first-of-type {
        margin-bottom: 16px;
    }
    
    .job-item p:not(:first-of-type) {
        margin-bottom: 10px;
    }
    
    /* Contact section mobile */
    #contact {
        margin-top: 24px;
    }
    
    #contact h2 {
        margin-top: 24px !important;
        margin-bottom: 12px !important;
    }
    
    #contact p {
        margin-bottom: 6px !important;
    }
    
    #contact p:first-of-type {
        margin-bottom: 12px !important;
    }
    
}

/* Contact section specific styling */
#contact {
    margin-top: 32px;
}

#contact h2 {
    margin-top: 32px !important;
    margin-bottom: 16px !important;
}

#contact p {
    margin-bottom: 8px !important;
}

#contact p:first-of-type {
    margin-bottom: 16px !important;
}

/* Skills section specific styling */
#skills p {
    color: #4B5563 !important;
}


