.profile-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: start;
}

.profile-sidebar {
    background: var(--color-bg);
    border: 2px solid var(--color-border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-height) + var(--nav-height) + 16px);
}

.profile-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px 16px;
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border-light);
}

.profile-avatar__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.profile-avatar__icon img { width: 34px; height: 34px; }
.profile-avatar__name { font-size: 15px; font-weight: 700; text-align: center; }
.profile-avatar__email { font-size: 12px; color: var(--color-text-muted); text-align: center; }

.profile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--color-text-secondary);
    transition: var(--transition);
    border-bottom: 1px solid var(--color-border-light);
}

.profile-nav a img { width: 18px; height: 18px; opacity: 0.5; }

.profile-nav a:hover,
.profile-nav a.is-active {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
}

.profile-nav a.is-active img { opacity: 1; }

.profile-block {
    background: var(--color-bg);
    border: 2px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
}

.profile-block__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-border-light);
}

@media (max-width: 900px) {
    .profile-layout { grid-template-columns: 1fr; }
    .profile-sidebar { position: static; }
}
