/* 
  About Page Styles - Matching Reference Design
  Clean, minimal layout with proper spacing
*/

/* Main container for about page */
.about-main {
    padding-top: 1rem;
}

/* Profile Header - Avatar + Name/Tagline */
.about-profile-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.about-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.about-profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.about-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Bio paragraph */
.about-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Section styling */
.about-section {
    margin-bottom: 1.5rem;
}

.about-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

/* Skills tags */
.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.about-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #374151;
    transition: all 0.2s ease;
}

.about-tag:hover {
    background-color: #e5e7eb;
}

/* Divider */
.about-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 1.5rem 0;
}

/* Experience List */
.about-experience-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0;
}

.about-experience-item {
    margin-bottom: 1.25rem;
    padding-left: 0.25rem;
}

.about-experience-item::marker {
    color: #7C3AED;
    font-size: 1rem;
}

.about-exp-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.about-exp-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.about-current-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background-color: #1f2937;
    color: white;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 4px;
    text-transform: capitalize;
}

.about-exp-company {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 0.5rem 0;
}

.about-exp-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Highlights List */
.about-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.about-highlights-list li i {
    color: #f59e0b;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .about-profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-profile-info {
        align-items: center;
    }

    .about-avatar {
        width: 100px;
        height: 100px;
    }

    .about-name {
        font-size: 1.35rem;
    }

    .about-bio {
        text-align: center;
    }
}
