/*
===========================================================================
File: credentials_story.css
Purpose: Styling for credentials/development experience display
Last Updated: 2026-01-17
===========================================================================
*/

.credentials-story {
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.credentials-story h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a365d;
}

.credentials-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.metric {
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-radius: 8px;
    color: white;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credentials-detail {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.credentials-detail p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.credentials-detail p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .credentials-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metric-number {
        font-size: 1.5rem;
    }
}
