/* Pitechpedia Article Detail - Premium Intelligence Hub */

.article-detail-main { 
    padding: 120px 0 80px; 
    background: white; 
    min-height: 100vh; 
}

.container-medium { 
    max-width: 800px; 
    margin: 0 auto; 
}

.article-header { 
    border-bottom: 1px solid #eee; 
    padding-bottom: 40px; 
    margin-bottom: 40px; 
}

.startup-category { 
    color: #4285F4; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 16px; 
    font-size: 0.9rem; 
}

.startup-title { 
    font-size: clamp(2.5rem, 6vw, 3.5rem); 
    margin-bottom: 20px; 
    line-height: 1.1; 
    font-weight: 800; 
}

.startup-meta { 
    color: #888; 
    font-size: 1rem; 
    margin-bottom: 30px; 
}

.startup-summary { 
    font-size: 1.4rem; 
    color: #444; 
    line-height: 1.5; 
    font-weight: 500; 
    font-family: 'Outfit', sans-serif; 
    margin-bottom: 40px; 
    border-left: 4px solid #4285F4; 
    padding-left: 24px; 
}

.startup-actions { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
}

.funding-card { 
    background: #f8f9fa; 
    padding: 24px; 
    border-radius: 20px; 
    border: 1px solid #eee; 
    display: flex; 
    flex-direction: column; 
}

.funding-card .label { 
    font-size: 0.8rem; 
    color: #888; 
    text-transform: uppercase; 
    font-weight: 700; 
    margin-bottom: 8px; 
}

.funding-card .value { 
    font-size: 2rem; 
    color: #34A853; 
    font-weight: 800; 
    line-height: 1.2; 
}

.funding-card .sub-label { 
    font-size: 0.9rem; 
    color: #666; 
    font-weight: 600; 
    margin-top: 4px; 
}

.article-body { 
    font-size: 1.2rem; 
    line-height: 1.8; 
    color: #333; 
}

.article-body h2 { 
    margin: 40px 0 20px; 
    color: #202124; 
}

.article-body p { 
    margin-bottom: 24px; 
}

.article-footer { 
    margin-top: 60px; 
    padding-top: 40px; 
    border-top: 1px solid #eee; 
}

.share-buttons { 
    display: flex; gap: 12px; 
    margin-top: 20px; 
}

.share-btn { 
    padding: 10px 24px; 
    border-radius: 30px; 
    border: 1px solid #eee; 
    background: white; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-weight: 600; 
}

/* Code Repository Styles */
#code-repository {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

#code-repository:hover {
    transform: translateY(-5px);
}
