/* ===============================
  PROFILE PAGES - MODERN
================================*/
.profile-section,
.profile-edit-section {
    min-height: calc(100vh - var(--navbar-height));
    padding: calc(var(--navbar-height) + 2rem) 20px 3rem;
    background: linear-gradient(135deg, var(--primary-100), var(--background));
}

.profile-container,
.profile-edit-container {
    background: var(--surface);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.profile-left {
    text-align: center;
    padding-right: 2rem;
    border-right: 1px solid var(--border-color);
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-500);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.profile-role {
    color: var(--accent-600);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 4px 12px;
    background: var(--accent-200);
    border-radius: 20px;
    display: inline-block;
}

.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    padding: 1rem;
    background: var(--neutral-100);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-500);
}

.info-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.info-value {
    font-weight: 600;
    color: var(--text-color);
}

.profile-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
