.login-card-container {
    width: 100%;
    margin: clamp(20px, 5vw, 60px) auto;
    max-width: 480px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--border-light);
    box-shadow: var(--shadow-subtle);
    margin: 0 auto;
    display: block;
}

.profile-card-override .card {
    padding: 40px 32px;
}

.achiev-success {
    background: var(--color-success-bg);
    color: #059669;
    border-radius: 4px;
}

.achiev-primary {
    background-color: var(--accent-light);
    color: var(--accent-color);
}

.achiev-secondary {
    background-color: var(--hover-bg);
    color: var(--copy-muted);
    border: 1px solid var(--border-light);
}

.icon-verified.verified-yellow {
    color: #eab308 !important;
    fill: #eab308 !important;
}

.icon-verified.verified-blue {
    color: #2563eb !important;
    fill: #2563eb !important;
}

.icon-verified.verified-grey {
    color: #64748b !important;
    fill: #64748b !important;
}

@media (max-width: 768px) {
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
}

.progress-bar-container {
    background-color: var(--color-surface-elevated);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
}

.progress-bar-fill {
    height: 100%;
    transition: width 0.3s ease;
}

.profile-page-shell {
    padding: var(--spacing-medium) var(--spacing-small);
}

.profile-main-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.profile-sidebar-container {
    width: 100%;
}

.profile-content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .profile-main-layout {
        flex-direction: row;
        align-items: flex-start;
        max-width: 900px;
        gap: 32px;
    }

    .profile-sidebar-container {
        flex: 0 0 320px;
        position: sticky;
        top: 24px;
    }

    .profile-content-container {
        flex: 1;
        min-width: 0;
    }
}
