/* ===== PROFILE PAGE ===== */
.profile-container {
    max-width: 800px;
    margin: 0 auto;
}

.profile-header-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 16px;
}

.profile-cover-photo-container {
    position: relative;
    height: 200px;
}

.profile-cover-photo {
    height: 200px;
    background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
}

.edit-cover-button {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.edit-cover-button:hover {
    background: #f3f2ef;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.profile-header-content {
    padding: 0 24px 24px;
    margin-top: -60px;
}

.profile-avatar-container {
    position: relative;
    width: 120px;
    margin-bottom: 16px;
}

.profile-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    background: #0A66C2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    font-weight: bold;
}

.edit-avatar-button {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.edit-avatar-button:hover {
    background: #f3f2ef;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.profile-name-large {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.profile-headline-large {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.profile-location {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.profile-actions {
    display: flex;
    gap: 12px;
}

.profile-stats-row {
    display: flex;
    gap: 24px;
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
}

.profile-stat-item {
    font-size: 14px;
}

.profile-stat-number {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 4px;
}

.profile-stat-label {
    color: var(--secondary-color);
}

/* Profile Sections */
.profile-section {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin-bottom: 16px;
}

.profile-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.profile-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.profile-section-edit {
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
}

.profile-about-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
}

/* Experience/Education Items */
.experience-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.experience-item:last-child {
    border-bottom: none;
}

.experience-icon {
    width: 48px;
    height: 48px;
    background: #f3f2ef;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.experience-content {
    flex: 1;
}

.experience-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.experience-company {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.experience-duration {
    font-size: 13px;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.experience-location {
    font-size: 13px;
    color: var(--secondary-color);
}

.experience-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-top: 8px;
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.skill-item {
    padding: 8px 12px;
    background: var(--bg-secondary);
    border-radius: 16px;
    font-size: 13px;
    color: var(--text-primary);
    text-align: center;
}

