/* ═══════════════════════════════════════════
   About Me section styling
   ═══════════════════════════════════════════ */

.about {
    background: var(--bg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.about-intro h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-details {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    transition: transform var(--ease), box-shadow var(--ease);
}

.about-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 12px;
    font-size: 1.5rem;
}

.about-item h4 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.about-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.highlight-card {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    color: white;
    transition: transform var(--ease);
}

.highlight-card:hover {
    transform: scale(1.05);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-current {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.about-current h4 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-current h4 i {
    color: var(--primary);
}

.current-list {
    list-style: none;
    padding: 0;
}

.current-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    color: var(--text-muted);
    position: relative;
}

.current-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .about-intro h3 {
        font-size: 1.5rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-item {
        flex-direction: column;
        text-align: center;
    }
    
    .about-icon {
        margin: 0 auto;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
}